/* ===== VARIÁVEIS CSS ===== */
:root {
    /* Cores baseadas na logo */
    --primary-color: #2E4175;
    --secondary-color: #8BC34A;
    --accent-color: #00BCD4;
    --dark-color: #1a2744;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --gray-color: #6c757d;
    --gray-light: #e9ecef;
    
    /* Tipografia */
    --body-font: 'Poppins', sans-serif;
    --h1-font-size: 3rem;
    --h2-font-size: 2.25rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    
    /* Font Weight */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;
    --font-extra-bold: 800;
    
    /* Espaçamentos */
    --header-height: 80px;
    
    /* Z-index */
    --z-tooltip: 10;
    --z-fixed: 100;
    
    /* Transições */
    --transition: all 0.3s ease;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--light-color);
}

h1, h2, h3, h4 {
    font-weight: var(--font-bold);
    line-height: 1.2;
    color: var(--dark-color);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== CLASSES REUTILIZÁVEIS ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: var(--font-semi-bold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-size: var(--small-font-size);
}

.section__title {
    font-size: var(--h2-font-size);
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section__description {
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BOTÕES ===== */
.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: var(--font-semi-bold);
    transition: var(--transition);
    font-size: var(--normal-font-size);
}

.button-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white-color);
    box-shadow: var(--shadow-md);
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.button-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.button-secondary:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.button-full {
    width: 100%;
    justify-content: center;
}

.button-link {
    color: var(--accent-color);
    font-weight: var(--font-medium);
    transition: var(--transition);
}

.button-link:hover {
    color: var(--primary-color);
}

/* ===== HEADER & NAVEGAÇÃO ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white-color);
    box-shadow: var(--shadow-sm);
    z-index: var(--z-fixed);
    transition: var(--transition);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo img {
    height: 60px;
    width: auto;
}

.nav__list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav__link {
    color: var(--dark-color);
    font-weight: var(--font-medium);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

.nav__link:hover,
.nav__link.active-link {
    color: var(--primary-color);
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* ===== HOME / HERO ===== */
.home {
    padding-top: calc(var(--header-height) + 3rem);
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    position: relative;
    overflow: hidden;
}

.home__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
    min-height: calc(100vh - var(--header-height) - 6rem);
}

.home__data {
    z-index: 1;
}

.home__title {
    font-size: var(--h1-font-size);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.home__title-accent {
    color: var(--secondary-color);
    display: block;
}

.home__description {
    color: var(--gray-color);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.home__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.home__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.stat-item h3 {
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: var(--small-font-size);
    color: var(--gray-color);
}

.home__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home__image-bg {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.home__image-bg i {
    font-size: 150px;
    color: rgba(255, 255, 255, 0.3);
}

.home__logo-float {
    width: 70%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.home__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.home__wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.home__wave path {
    fill: var(--white-color);
}

/* ===== SERVIÇOS ===== */
.services {
    background-color: var(--white-color);
}

.services__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media screen and (max-width: 1400px) {
    .services__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    .services__container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service__card {
    background: var(--white-color);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.service__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.service__card--featured,
.service__card--emergency {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white-color);
}

.service__card--featured .service__title,
.service__card--featured .service__description,
.service__card--featured .service__features li,
.service__card--emergency .service__title,
.service__card--emergency .service__description,
.service__card--emergency .service__features li {
    color: var(--white-color);
}

.service__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--secondary-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: var(--small-font-size);
    font-weight: var(--font-bold);
}

.service__icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-shrink: 0;
}

.service__card--featured .service__icon,
.service__card--emergency .service__icon {
    background: var(--white-color);
}

.service__icon i {
    font-size: 1.75rem;
    color: var(--white-color);
}

.service__card--featured .service__icon i,
.service__card--emergency .service__icon i {
    color: var(--primary-color);
}

.service__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    line-height: 1.3;
}

.service__description {
    color: var(--gray-color);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service__features {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.service__features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.service__features i {
    color: var(--secondary-color);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.service__card--featured .service__features i,
.service__card--emergency .service__features i {
    color: var(--secondary-color);
}

/* ===== GALERIA DE TRABALHOS ===== */
.gallery {
    background-color: var(--white-color);
}

.gallery__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

@media screen and (max-width: 768px) {
    .gallery__container {
        grid-template-columns: 1fr;
    }
}

.gallery__card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery__image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.gallery__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery__card:hover .gallery__image img {
    transform: scale(1.1);
}

.gallery__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(46, 65, 117, 0.95) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery__card:hover .gallery__overlay {
    opacity: 1;
}

.gallery__info h3 {
    color: var(--white-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery__info p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ===== SOBRE ===== */
.about {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
}

.about__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    align-items: center;
}

.about__image {
    position: relative;
    height: 500px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%232E4175;stop-opacity:1" /><stop offset="100%" style="stop-color:%2300BCD4;stop-opacity:1" /></linearGradient></defs><rect width="800" height="600" fill="url(%23grad)"/><circle cx="400" cy="300" r="150" fill="white" opacity="0.1"/><circle cx="200" cy="150" r="80" fill="white" opacity="0.1"/><circle cx="600" cy="450" r="100" fill="white" opacity="0.1"/></svg>') center/cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about__image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.about__features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 500px;
}

.about__feature {
    background: var(--white-color);
    padding: 1.25rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.about__feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about__feature i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.about__feature span {
    font-weight: var(--font-bold);
    color: var(--dark-color);
    font-size: 0.95rem;
    line-height: 1.3;
}

.about__content {
    padding: 2rem 0;
}

.about__description {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about__feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.about__feature-item i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.about__feature-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.about__feature-item p {
    color: var(--gray-color);
    font-size: var(--small-font-size);
}

/* ===== VANTAGENS ===== */
.benefits {
    background-color: var(--white-color);
}

.benefits__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 1200px) {
    .benefits__container {
        grid-template-columns: repeat(3, 1fr);
        max-width: 900px;
    }
}

@media screen and (max-width: 900px) {
    .benefits__container {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
    }
}

.benefit__card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
}

.benefit__card:hover {
    background: var(--white-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.benefit__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit__icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.benefit__card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.benefit__card p {
    color: var(--gray-color);
    line-height: 1.6;
}

/* ===== CONTATO ===== */
.contact {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white-color);
}

.contact .section__subtitle {
    color: var(--secondary-color);
}

.contact .section__title,
.contact .section__description {
    color: var(--white-color);
}

.contact__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.contact__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.contact__card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact__card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact__card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact__card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: var(--white-color);
}

.contact__card a {
    color: var(--white-color);
    font-weight: var(--font-semi-bold);
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.contact__card a:hover {
    color: var(--secondary-color);
}

.contact__card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--small-font-size);
}

.contact__form-container {
    background: var(--white-color);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form__group {
    display: flex;
    flex-direction: column;
}

.form__group label {
    color: var(--dark-color);
    font-weight: var(--font-medium);
    margin-bottom: 0.5rem;
}

.form__group input,
.form__group select,
.form__group textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: inherit;
    font-size: var(--normal-font-size);
    color: var(--dark-color);
    transition: var(--transition);
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form__group textarea {
    resize: vertical;
    min-height: 120px;
}

.form__note {
    text-align: center;
    color: var(--gray-color);
    font-size: var(--small-font-size);
    margin-top: 1rem;
}

.form__note i {
    color: var(--accent-color);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: var(--white-color);
    padding: 4rem 0 2rem;
}

.footer__container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer__logo img {
    height: 80px;
    margin-bottom: 1rem;
}

.footer__logo p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer__links h3,
.footer__services h3,
.footer__contact h3 {
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-size: 1.125rem;
}

.footer__links ul,
.footer__services ul,
.footer__contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a,
.footer__services a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__links a:hover,
.footer__services a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact i {
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer__contact a:hover {
    color: var(--secondary-color);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.footer__tagline {
    margin-top: 0.5rem;
    font-size: var(--small-font-size);
}

.footer__tagline strong {
    color: var(--secondary-color);
}

/* ===== WHATSAPP FLUTUANTE ===== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: var(--z-fixed);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

/* ===== SCROLL TOP ===== */
.scrolltop {
    position: fixed;
    right: 30px;
    bottom: 100px;
    background-color: var(--primary-color);
    color: var(--white-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: var(--z-tooltip);
}

.scrolltop.show {
    opacity: 1;
    visibility: visible;
}

.scrolltop:hover {
    background-color: var(--dark-color);
}

/* ===== RESPONSIVO ===== */
@media screen and (max-width: 968px) {
    :root {
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.75rem;
        --h3-font-size: 1.25rem;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white-color);
        box-shadow: var(--shadow-lg);
        padding: 4rem 2rem;
        transition: var(--transition);
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 2rem;
    }
    
    .nav__toggle,
    .nav__close {
        display: block;
    }
    
    .nav__close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .home__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .home__image {
        order: -1;
    }
    
    .home__image-bg {
        width: 300px;
        height: 300px;
    }
    
    .home__image-bg i {
        font-size: 100px;
    }
    
    .gallery__container {
        grid-template-columns: 1fr;
    }
    
    .gallery__image {
        height: 350px;
    }
    
    .home__buttons {
        justify-content: center;
        width: 100%;
    }
    
    .home__buttons .button {
        width: 100%;
        justify-content: center;
    }
    
    .home__stats {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .home__title {
        font-size: 2rem;
    }
    
    .home__description {
        font-size: 1rem;
    }
    
    .about__container,
    .contact__container {
        grid-template-columns: 1fr;
    }
    
    .about__image {
        order: -1;
        height: 400px;
    }
    
    .about__features-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .about__feature {
        padding: 1rem;
    }
    
    .about__feature i {
        font-size: 2rem;
    }
    
    .about__feature span {
        font-size: 1rem;
    }
    
    .contact__info {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__contact li {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --h1-font-size: 1.75rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section__header {
        margin-bottom: 2rem;
    }
    
    .home__buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }
    
    .home__buttons .button {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .home__title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .home__description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .home__image-bg {
        width: 250px;
        height: 250px;
    }
    
    .service__card {
        padding: 2rem 1.5rem;
    }
    
    .services__container,
    .gallery__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .gallery__image {
        height: 300px;
    }
    
    .contact__info {
        gap: 1rem;
    }
    
    .contact__card {
        padding: 1.5rem 1rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
    
    .scrolltop {
        right: 20px;
        bottom: 80px;
        width: 40px;
        height: 40px;
    }
    
    .nav__logo img {
        height: 50px;
    }
}

