/* ========================================
   VARIÁVEIS
======================================== */

:root {

    --cor-principal: #0B7285;
    --cor-secundaria: #063B46;
    --cor-fundo: #FFFFFF;
    --cor-fundo-site: #F7F8FA;
    --cor-fundo-alternativo: #FFFFFF;
    --cor-card: #FFFFFF;
    --cor-texto: #111111;
    --cor-texto-suave: #666666;

}


/* ========================================
   RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        var(--cor-fundo);

    color:
        var(--cor-texto);

    line-height: 1.6;

}


/* ========================================
   CONTAINER
======================================== */

.container {

    width: 100%;
    max-width: 1080px;

    margin: 0 auto;

    padding:
        0 20px;

}


/* ========================================
   HEADER
======================================== */

header {

    position: sticky;
    top: 0;

    z-index: 1000;

    background:
        rgba(10, 10, 10, 0.96);

    border-bottom:
        1px solid rgba(255,255,255,0.08);

    backdrop-filter:
        blur(10px);

}


.header-container {

    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


#logo {

    color: #ffffff;

    font-size: 21px;

    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;

}


#logo img {

    display: block;

}


/* ========================================
   MENU
======================================== */

.menu {

    display: flex;

    align-items: center;

    gap: 30px;

}


.menu a {

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition:
        color 0.3s ease;

}


.menu a:hover {

    color:
        var(--cor-principal);

}


/* ========================================
   BOTÃO WHATSAPP HEADER
======================================== */

.header-whatsapp {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        12px 20px;

    border-radius:
        7px;

    background:
        var(--cor-principal);

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform 0.3s ease,
        background 0.3s ease;

}


.header-whatsapp:hover {

    background:
        var(--cor-secundaria);

    transform:
        translateY(-2px);

}


/* ========================================
   HERO
======================================== */

.hero {

    min-height:
        605px;

    display: flex;

    align-items: center;

    position: relative;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,0.88) 0%,
            rgba(0,0,0,0.68) 50%,
            rgba(0,0,0,0.25) 100%
        ),

        url("imagens/hero.jpg");

    /* A imagem do hero pode ser exibida inteira sem recortes. */
    background-size:
        var(--hero-background-size, contain);

    background-position:
        var(--hero-background-position, center center);

    background-repeat:
        no-repeat;

    background-color:
        var(--hero-background-color, #071017);

    color: #ffffff;

}


.hero-content {

    max-width:
        650px;

}


.hero-tag {

    display: inline-block;

    padding:
        7px 13px;

    margin-bottom:
        22px;

    border:
        1px solid rgba(255,255,255,0.4);

    border-radius:
        30px;

    font-size:
        12px;

    font-weight:
        800;

    letter-spacing:
        1px;

}


.hero h1 {

    font-size:
        clamp(48px, 6vw, 72px);

    line-height:
        1.03;

    letter-spacing:
        -2px;

    margin-bottom:
        28px;

    color:
        #ffffff;

}


.hero p {

    max-width:
        600px;

    font-size:
        17px;

    color:
        rgba(255,255,255,0.82);

    margin-bottom:
        32px;

}


.hero-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;

}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height:
        48px;

    padding:
        0 24px;

    border-radius:
        7px;

    text-decoration: none;

    font-size:
        14px;

    font-weight:
        700;

    transition:
        all 0.3s ease;

}


.btn-primary {

    background:
        var(--cor-principal);

    color:
        #ffffff;

}


.btn-primary:hover {

    background:
        var(--cor-secundaria);

    transform:
        translateY(-2px);

}


.btn-secondary {

    background:
        transparent;

    border:
        1px solid rgba(255,255,255,0.45);

    color:
        #ffffff;

}


.btn-secondary:hover {

    background:
        rgba(255,255,255,0.1);

}


/* ========================================
   HERO DETALHE
======================================== */

.hero-bottom {

    margin-top:
        70px;

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        2px;

    color:
        rgba(255,255,255,0.75);

}


/* ========================================
   BENEFÍCIOS
======================================== */

.features {

    background:
        #0d0d0d;

    color:
        #ffffff;

}


.features-container {

    min-height:
        110px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        30px;

    align-items:
        center;

}


.feature {

    display: flex;

    align-items: center;

    gap:
        14px;

}


.feature-icon {

    width:
        40px;

    height:
        40px;

    flex-shrink:
        0;

    border-radius:
        50%;

    background:
        #ffffff;

    color:
        var(--cor-principal);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size:
        18px;

    font-weight:
        900;

}


.feature strong {

    display: block;

    font-size:
        14px;

    margin-bottom:
        2px;

}


.feature span {

    display: block;

    color:
        #a7a7a7;

    font-size:
        12px;

}


/* ========================================
   SEÇÕES
======================================== */

section {

    width:
        100%;

}


.section {

    padding:
        100px 0;

}


/* ========================================
   TÍTULOS DAS SEÇÕES
======================================== */

.section-label {

    text-align:
        center;

    color:
        var(--cor-principal);

    font-size:
        11px;

    font-weight:
        800;

    letter-spacing:
        2px;

    margin-bottom:
        12px;

}


.section-title {

    text-align:
        center;

    font-size:
        clamp(38px, 5vw, 52px);

    line-height:
        1.05;

    letter-spacing:
        -1.5px;

    margin-bottom:
        22px;

}


.section-description {

    text-align:
        center;

    max-width:
        700px;

    margin:
        0 auto 55px;

    color:
        #666666;

    font-size:
        16px;

}


/* ========================================
   SERVIÇOS
======================================== */

.services {

    background:
        #ffffff;

}


.services-grid {

    display:
        grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap:
        20px;

}


.service-card {

    min-height:
        250px;

    padding:
        28px;

    border:
        1px solid #e5e5e5;

    border-radius:
        15px;

    background:
        #ffffff;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}


.service-card:hover {

    transform:
        translateY(-5px);

    border-color:
        var(--cor-principal);

    box-shadow:
        0 15px 40px rgba(0,0,0,0.08);

}


.service-icon {

    width:
        48px;

    height:
        48px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        10px;

    background:
        #f1f3f3;

    margin-bottom:
        25px;

    font-size:
        24px;

}


.service-card h3 {

    font-size:
        19px;

    margin-bottom:
        12px;

}


.service-card p {

    color:
        #666666;

    font-size:
        14px;

}


/* ========================================
   SOBRE
======================================== */

.about {

    background:
        #f6f6f6;

}


.about-container {

    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        70px;

    align-items:
        center;

}


.about-image {

    /* Proporção padrão de segurança. O JavaScript ajusta automaticamente
       para a proporção real da imagem carregada. */
    aspect-ratio:
        4 / 3;

    width:
        100%;

    border-radius:
        18px;

    background:
        url("imagens/sobre.png");

    /* Mostra a imagem inteira, sem cortar logos, textos ou fachadas. */
    background-size:
        contain;

    background-repeat:
        no-repeat;

    background-position:
        center;

    background-color:
        #111111;

    box-shadow:
        0 20px 45px rgba(0,0,0,0.12);

}


.about-content .section-label {

    text-align:
        left;

}


.about-content h2 {

    font-size:
        clamp(38px, 5vw, 52px);

    line-height:
        1.05;

    letter-spacing:
        -1.5px;

    margin-bottom:
        25px;

}


.about-content p {

    color:
        #555555;

    margin-bottom:
        18px;

    font-size:
        15px;

}


.about-button {

    display:
        inline-flex;

    margin-top:
        12px;

}


/* ========================================
   COMO FUNCIONA
======================================== */

.process {

    background:
        #ffffff;

}


.process-grid {

    display:
        grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap:
        20px;

    margin-top:
        60px;

}


.process-item {

    border-top:
        2px solid #111111;

    padding-top:
        20px;

}


.process-number {

    color:
        var(--cor-principal);

    font-size:
        13px;

    font-weight:
        800;

    margin-bottom:
        15px;

}


.process-item h3 {

    font-size:
        16px;

    margin-bottom:
        12px;

}


.process-item p {

    color:
        #666666;

    font-size:
        14px;

}


/* ========================================
   CTA
======================================== */

.cta {

    background:
        #0d0d0d;

    color:
        #ffffff;

    padding:
        100px 0;

}


.cta-container {

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        50px;

}


.cta .section-label {

    text-align:
        left;

}


.cta h2 {

    max-width:
        750px;

    font-size:
        clamp(40px, 5vw, 58px);

    line-height:
        1.05;

    letter-spacing:
        -1.5px;

    margin-bottom:
        20px;

}


.cta p {

    color:
        #aaaaaa;

    font-size:
        15px;

}


.cta-button {

    flex-shrink:
        0;

}


/* ========================================
   FOOTER
======================================== */

footer {

    background:
        #050505;

    color:
        #ffffff;

}


.footer-main {

    padding:
        70px 0;

}


.footer-grid {

    display:
        grid;

    grid-template-columns:
        2fr 1fr 1fr 1.3fr;

    gap:
        50px;

}


.footer-column h3 {

    font-size:
        15px;

    margin-bottom:
        18px;

}


.footer-brand {

    font-size:
        21px;

    font-weight:
        800;

    margin-bottom:
        12px;

}


.footer-description {

    color:
        #777777;

    font-size:
        13px;

}


.footer-column a {

    display:
        block;

    color:
        #777777;

    text-decoration:
        none;

    font-size:
        13px;

    margin-bottom:
        10px;

    transition:
        color 0.3s ease;

}


.footer-column a:hover {

    color:
        var(--cor-principal);

}


.footer-contact {

    color:
        #777777;

    font-size:
        13px;

    line-height:
        1.9;

}


.footer-bottom {

    border-top:
        1px solid #1c1c1c;

    padding:
        22px 0;

    text-align:
        center;

    color:
        #666666;

    font-size:
        12px;

}


/* ========================================
   LINKS / WHATSAPP
======================================== */

a {

    transition:
        color 0.3s ease;

}


/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width: 900px) {


    .header-container {

        flex-wrap:
            wrap;

        padding-top:
            15px;

        padding-bottom:
            15px;

    }


    .menu {

        order:
            3;

        width:
            100%;

        justify-content:
            center;

        gap:
            18px;

        flex-wrap:
            wrap;

    }


    .header-whatsapp {

        margin-left:
            auto;

    }


    .hero {

        min-height:
            650px;

    }


    .features-container {

        grid-template-columns:
            1fr;

        padding:
            30px 20px;

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .about-container {

        grid-template-columns:
            1fr;

    }



    .process-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .cta-container {

        flex-direction:
            column;

        align-items:
            flex-start;

    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 600px) {


    .container {

        padding:
            0 18px;

    }


    .header-container {

        align-items:
            center;

    }


    #logo {

        font-size:
            18px;

    }


    .menu {

        justify-content:
            flex-start;

    }


    .menu a {

        font-size:
            13px;

    }


    .header-whatsapp {

        padding:
            10px 14px;

        font-size:
            12px;

    }


    .hero {

        min-height:
            620px;

        background-position:
            var(--hero-background-position, center center);

    }


    .hero h1 {

        font-size:
            43px;

        letter-spacing:
            -1px;

    }


    .hero p {

        font-size:
            15px;

    }


    .hero-bottom {

        margin-top:
            45px;

    }


    .section {

        padding:
            75px 0;

    }


    .section-title {

        font-size:
            36px;

    }


    .services-grid {

        grid-template-columns:
            1fr;

    }


    .service-card {

        min-height:
            auto;

    }


    .about-container {

        gap:
            40px;

    }



    .about-content h2 {

        font-size:
            36px;

    }


    .process-grid {

        grid-template-columns:
            1fr;

        gap:
            35px;

    }


    .cta {

        padding:
            75px 0;

    }


    .cta h2 {

        font-size:
            38px;

    }


    .footer-grid {

        grid-template-columns:
            1fr;

        gap:
            35px;

    }

}

/* ========================================
   MENU MOBILE PROFISSIONAL
   Adicionado sem alterar o layout desktop
======================================== */

.menu-toggle,
.mobile-whatsapp {
    display: none;
}

@media (max-width: 900px) {

    .header-container {
        min-height: 72px;
        flex-wrap: nowrap;
        padding-top: 0;
        padding-bottom: 0;
        position: relative;
    }

    #logo {
        position: relative;
        z-index: 1002;
        max-width: calc(100% - 70px);
    }

    #logo img {
        max-height: 42px !important;
        max-width: 190px !important;
    }

    .header-whatsapp {
        display: none;
    }

    .menu-toggle {
        display: flex;
        width: 46px;
        height: 46px;
        margin-left: auto;
        padding: 0;
        border: 1px solid rgba(255,255,255,0.16);
        border-radius: 9px;
        background: rgba(255,255,255,0.06);
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        position: relative;
        z-index: 1002;
    }

    .menu-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 2px;
        background: #ffffff;
        transition: transform .3s ease, opacity .3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        width: 100%;
        height: calc(100vh - 72px);
        padding: 28px 5% 40px;
        background: rgba(7,7,7,0.985);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        flex-wrap: nowrap;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform .32s ease, opacity .32s ease, visibility .32s ease;
        overflow-y: auto;
        z-index: 1001;
    }

    .menu.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .menu a {
        width: 100%;
        padding: 17px 4px;
        border-bottom: 1px solid rgba(255,255,255,0.09);
        color: #ffffff;
        font-size: 17px;
        font-weight: 700;
    }

    .menu .mobile-whatsapp {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        margin-top: 26px;
        padding: 0 22px;
        border: 0;
        border-radius: 8px;
        background: var(--cor-principal);
        color: #ffffff;
        text-align: center;
    }

    .menu .mobile-whatsapp:hover {
        color: #ffffff;
        background: var(--cor-secundaria);
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 600px) {
    .header-container {
        min-height: 68px;
    }

    .menu {
        top: 68px;
        height: calc(100vh - 68px);
    }

    #logo img {
        max-height: 38px !important;
        max-width: 165px !important;
    }
}


/* ========================================
   WHATSAPP FLUTUANTE
======================================== */

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 950;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 18px 0 15px;
    border-radius: 999px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .1px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .24);
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}

.whatsapp-float:hover {
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .30);
    filter: brightness(.96);
}

.whatsapp-float-icon {
    width: 27px;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.whatsapp-float-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.whatsapp-float-text {
    white-space: nowrap;
}

@media (max-width: 600px) {
    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        width: 58px;
        height: 58px;
        min-height: 58px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .whatsapp-float-icon {
        width: 30px;
        height: 30px;
    }

    .whatsapp-float-text {
        display: none;
    }
}


/* ========================================
   GALERIA DE TRABALHOS
======================================== */

.gallery { background: #f7f8fa; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.gallery-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.gallery-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #eceff1;
}

.gallery-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.gallery-card:hover .gallery-media img { transform: scale(1.04); }

.gallery-fallback {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: #e9ecef;
    color: #61666b;
    text-align: center;
}

.gallery-fallback span { font-size: 34px; }

.gallery-content { padding: 20px; }

.gallery-content h3 {
    margin: 0 0 8px;
    color: #111111;
    font-size: 19px;
}

.gallery-content p {
    margin: 0;
    color: #666666;
    line-height: 1.65;
}

/* ========================================
   DEPOIMENTOS
======================================== */

.testimonials { background: #ffffff; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.testimonial-card {
    position: relative;
    padding: 28px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.testimonial-stars {
    margin-bottom: 18px;
    color: #f4b400;
    font-size: 18px;
    letter-spacing: 3px;
}

.testimonial-text {
    min-height: 82px;
    margin: 0 0 22px;
    color: #4d4d4d;
    font-size: 16px;
    line-height: 1.75;
}

.testimonial-name {
    display: block;
    color: #111111;
    font-size: 15px;
}

@media (max-width: 900px) {
    .gallery-grid, .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .gallery-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .gallery-content, .testimonial-card { padding: 20px; }
    .testimonial-text { min-height: auto; }
}


/* ========================================
   LOCALIZAÇÃO
======================================== */

.location {
    background: #f7f8fa;
}

.location-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
    gap: 28px;
    align-items: stretch;
}

.location-map {
    min-height: 420px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    background: #e9ecef;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .07);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    display: block;
    border: 0;
}

.location-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .07);
}

.location-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
}

.location-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 0, 0, .05);
    font-size: 20px;
}

.location-item strong {
    display: block;
    margin-bottom: 5px;
    color: #111111;
    font-size: 15px;
}

.location-item p,
.location-item a {
    margin: 0;
    color: #666666;
    line-height: 1.6;
    text-decoration: none;
}

.location-item a:hover {
    color: var(--cor-principal);
}

.location-button {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

@media (max-width: 900px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-map,
    .location-map iframe {
        min-height: 360px;
    }
}

@media (max-width: 600px) {
    .location-card {
        padding: 22px;
    }

    .location-map,
    .location-map iframe {
        min-height: 300px;
    }
}


/* ========================================
   ACABAMENTO FINAL DO TEMPLATE
======================================== */

/* Botão do Google Maps segue a identidade visual do cliente. */
.location-button {
    min-height: 50px;
    border: 0;
    background: var(--cor-principal);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.location-button:hover {
    background: var(--cor-secundaria);
    color: #ffffff;
    transform: translateY(-2px);
}

.location-button:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible,
.whatsapp-float:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(11, 114, 133, .35);
    outline-offset: 3px;
}

/* Evita que âncoras fiquem escondidas atrás do cabeçalho fixo. */
section[id] {
    scroll-margin-top: 88px;
}

/* Ajustes de acabamento em tablets e celulares. */
@media (max-width: 900px) {
    .gallery-card,
    .testimonial-card,
    .location-card,
    .location-map {
        box-shadow: 0 8px 24px rgba(0, 0, 0, .07);
    }
}

@media (max-width: 600px) {
    section[id] {
        scroll-margin-top: 76px;
    }

    .section {
        padding: 62px 0;
    }

    .section-title {
        font-size: clamp(30px, 9vw, 36px);
        line-height: 1.12;
    }

    .gallery-grid,
    .testimonials-grid,
    .location-grid {
        gap: 18px;
    }

    .gallery-card,
    .testimonial-card,
    .location-card,
    .location-map {
        border-radius: 12px;
    }

    .location-button {
        min-height: 52px;
    }

    .location-item {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 12px;
    }

    .location-item a,
    .location-item p {
        overflow-wrap: anywhere;
    }

    .whatsapp-float {
        z-index: 1050;
    }
}

/* ========================================
   CTA + ANIMAÇÕES + VOLTAR AO TOPO
======================================== */

.cta {
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    right: -120px;
    top: -170px;
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 1;
}

.cta-container h2 {
    max-width: 720px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.08;
}

.cta-container p {
    max-width: 680px;
    font-size: 17px;
}

.cta-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 700;
}

.cta-button {
    min-width: 220px;
    min-height: 54px;
    justify-content: center;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 96px;
    z-index: 1040;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(0,0,0,.20);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .cta-container {
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .cta-trust {
        flex-direction: column;
        gap: 8px;
    }

    .cta-button {
        width: 100%;
    }

    .back-to-top {
        right: 18px;
        bottom: 88px;
        width: 44px;
        height: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .reveal,
    .reveal.reveal-visible {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ========================================
   FUNDO CONFIGURÁVEL + ACABAMENTO GLOBAL
======================================== */

body {
    background: var(--cor-fundo-site);
}

.services,
.process,
.testimonials {
    background: var(--cor-fundo-site);
}

.gallery,
.about,
.location {
    background: var(--cor-fundo-alternativo);
}

.service-card,
.gallery-card,
.testimonial-card,
.location-card {
    background: var(--cor-card);
}

.section-title,
.section-header h2,
.about-content h2,
.process-item h3 {
    color: var(--cor-texto);
}

.section-description,
.section-header p,
.about-content p,
.process-item p,
.gallery-content p,
.testimonial-card p,
.location-item p,
.location-item a {
    color: var(--cor-texto-suave);
}

/* ========================================
   COMO FUNCIONA — VERSÃO PROFISSIONAL
======================================== */

.process {
    position: relative;
    overflow: hidden;
    padding-top: 112px;
    padding-bottom: 112px;
}

.process::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -230px;
    top: -210px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--cor-principal) 8%, transparent);
    pointer-events: none;
}

.process-heading {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    align-items: end;
    gap: 54px;
    margin-bottom: 54px;
}

.process-heading .section-label,
.process-heading .section-title {
    text-align: left;
}

.process-heading .section-title {
    max-width: 720px;
    margin-bottom: 0;
}

.process-intro {
    max-width: 430px;
    margin: 0 0 7px auto;
    color: var(--cor-texto-suave);
    font-size: 15px;
    line-height: 1.75;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 0;
}

.process-item {
    position: relative;
    min-height: 300px;
    padding: 28px 26px 26px;
    border: 1px solid rgba(0,0,0,.08);
    border-top: none;
    border-radius: 18px;
    background: var(--cor-card);
    box-shadow: 0 16px 42px rgba(0,0,0,.06);
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.process-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--cor-principal);
}

.process-item:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--cor-principal) 30%, transparent);
    box-shadow: 0 24px 55px rgba(0,0,0,.10);
}

.process-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.process-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: color-mix(in srgb, var(--cor-principal) 11%, var(--cor-card));
    color: var(--cor-principal);
}

.process-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.process-number {
    margin: 0;
    color: var(--cor-principal);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.7px;
}

.process-item h3 {
    margin-bottom: 13px;
    font-size: 19px;
    line-height: 1.25;
}

.process-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 1000px) {
    .process-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .process-intro {
        max-width: 620px;
        margin: 0;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .process {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .process-heading {
        margin-bottom: 34px;
    }

    .process-heading .section-title {
        font-size: clamp(34px, 10vw, 44px);
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .process-item {
        min-height: auto;
        padding: 24px;
    }

    .process-topline {
        margin-bottom: 24px;
    }
}
