*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --rose: #7D2E3E;
    --rose-lt: #F2C4CE;
    --cream: #F9F0EB;
    --dark: #2B2B2B;
    --serif: 'Playfair Display', serif;
    --sans: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--sans);
    color: var(--dark);
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.titulo-secao {
    font-family: var(--serif);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    text-align: center;
    color: var(--dark);
    margin-bottom: 4rem;
}

.subtitulo-secao {
    text-align: center;
    max-width: 620px;
    margin: -3rem auto 3.5rem;
    font-size: 1.05rem;
    color: rgba(43, 43, 43, .65);
}

.botao-primario {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--rose);
    color: #fff;
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}

.botao-primario:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(125, 46, 62, .35);
}

/* NAVBAR */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background .3s, box-shadow .3s;
}

#navbar.nav-rolada {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 2px 20px rgba(43, 43, 43, .08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-interno {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 68px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-marca {
    font-family: var(--serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
    flex-shrink: 0;
    transition: color .2s;
}

.nav-marca:hover {
    color: var(--rose);
}

#nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin-left: auto;
    align-items: center;
}

#nav-links li a {
    font-size: .88rem;
    font-weight: 600;
    color: var(--dark);
    position: relative;
    padding-bottom: 3px;
    transition: color .2s;
}

#nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose);
    border-radius: 1px;
    transition: width .25s ease;
}

#nav-links li a:hover,
#nav-links li a.ativo {
    color: var(--rose);
}

#nav-links li a:hover::after,
#nav-links li a.ativo::after {
    width: 100%;
}

.li-cta-mobile {
    display: none;
}

.nav-cta-desktop {
    display: inline-flex;
    align-items: center;
    background: var(--rose);
    color: #fff;
    font-weight: 600;
    font-size: .88rem;
    padding: .55rem 1.4rem;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: transform .2s, box-shadow .2s;
}

.nav-cta-desktop:hover {
    transform: scale(1.04);
    box-shadow: 0 6px 18px rgba(125, 46, 62, .3);
}

#nav-hamburguer {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-left: auto;
}

#nav-hamburguer span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease;
    transform-origin: center;
}

#nav-hamburguer.aberto span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
#nav-hamburguer.aberto span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
#nav-hamburguer.aberto span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* scroll-margin para seções não ficarem escondidas atrás do menu fixo */
section[id] {
    scroll-margin-top: 68px;
}

@media (max-width: 860px) {
    #nav-hamburguer {
        display: flex;
    }

    .nav-cta-desktop {
        display: none;
    }

    #nav-links {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, .97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        margin-left: 0;
        align-items: stretch;
        box-shadow: 0 8px 24px rgba(43, 43, 43, .1);
        border-top: 1px solid rgba(125, 46, 62, .1);
        transform: translateY(calc(-100% - 70px));
        visibility: hidden;
        transition: transform .35s cubic-bezier(.4, 0, .2, 1), visibility .35s;
    }

    #nav-links.aberto {
        transform: translateY(0);
        visibility: visible;
    }

    #nav-links li {
        border-bottom: 1px solid rgba(43, 43, 43, .05);
    }

    #nav-links li a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    #nav-links li a::after {
        display: none;
    }

    .li-cta-mobile {
        display: block;
        padding: 1rem 1.5rem;
        border-bottom: none !important;
    }

    .li-cta-mobile a {
        display: inline-flex !important;
        padding: .7rem 1.75rem !important;
        background: var(--rose);
        color: #fff !important;
        border-radius: 999px;
        font-size: .95rem !important;
    }

    .li-cta-mobile a:hover::after,
    .li-cta-mobile a::after {
        display: none !important;
    }
}

/* HERO */
#hero {
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 1.5rem 5rem;
    background: linear-gradient(135deg, #F2C4CE 0%, #F9F0EB 100%);
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(125, 46, 62, .08) 0%, transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(125, 46, 62, .06) 0%, transparent 50%);
    pointer-events: none;
}

#hero .hero-interno {
    max-width: 860px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp .9s .1s forwards;
}

#hero .hero-slogan {
    display: inline-block;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 1.25rem;
}

#hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 6.5vw, 4.5rem);
    font-weight: 700;
    color: var(--dark);
    line-height: 1.18;
    margin-bottom: 1.5rem;
}

#hero p {
    font-size: 1.15rem;
    color: rgba(43, 43, 43, .75);
    margin-bottom: 2.5rem;
}

#hero .hero-divisor {
    width: 8rem;
    height: 2px;
    background: var(--rose);
    margin: 3rem auto 0;
    opacity: .4;
    border-radius: 1px;
}

/* SERVIÇOS */
#servicos {
    padding: 6rem 1.5rem;
    background: #fff;
}

#servicos .grade-servicos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 900px) {
    #servicos .grade-servicos {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

#servicos .cartao-servico {
    background: var(--cream);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: transform .25s, box-shadow .25s;
}

#servicos .cartao-servico:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(43, 43, 43, .1);
}

#servicos .icone-servico {
    width: 56px;
    height: 56px;
    stroke: var(--rose);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#servicos .cartao-servico h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
}

#servicos .cartao-servico p {
    font-size: .95rem;
    color: rgba(43, 43, 43, .7);
}

#servicos .lista-servicos {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin-top: .25rem;
}

#servicos .lista-servicos li {
    position: relative;
    padding-left: 1.4rem;
    font-size: .95rem;
    color: rgba(43, 43, 43, .75);
    text-align: left;
}

#servicos .lista-servicos li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .55em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--rose);
    opacity: .55;
}

/* SOBRE */
#sobre {
    padding: 6rem 1.5rem;
    background: var(--cream);
}

#sobre .grade-sobre {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 720px) {
    #sobre .grade-sobre {
        grid-template-columns: 1fr;
    }
}

#sobre .avatar-sobre {
    width: min(300px, 100%);
    height: min(300px, 100%);
    border-radius: 50%;
    background: var(--rose-lt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

#sobre .avatar-sobre img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#sobre .avatar-sobre svg {
    width: 120px;
    height: 120px;
    stroke: rgba(125, 46, 62, .25);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#sobre .texto-sobre h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--dark);
    position: relative;
    display: inline-block;
    margin-bottom: 1.75rem;
}

#sobre .texto-sobre h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 6rem;
    height: 3px;
    background: var(--rose);
    border-radius: 2px;
}

#sobre .texto-sobre p {
    font-size: 1.05rem;
    color: rgba(43, 43, 43, .8);
    line-height: 1.8;
}

/* EQUIPE */
#equipe {
    padding: 6rem 1.5rem;
    background: #fff;
}

#equipe .grade-equipe {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem 1.75rem;
}

#equipe .cartao-equipe {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#equipe .foto-equipe {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: var(--rose-lt);
    box-shadow: 0 10px 28px rgba(125, 46, 62, .14);
    border: 4px solid #fff;
    outline: 2px solid var(--rose-lt);
    transition: transform .25s;
}

#equipe .cartao-equipe:hover .foto-equipe {
    transform: translateY(-5px);
}

#equipe .foto-equipe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#equipe .foto-monograma {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--mono, var(--rose)) 0%, var(--rose) 100%);
}

#equipe .foto-monograma span {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .04em;
}

#equipe .cartao-equipe h3 {
    font-family: var(--serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

#equipe .cargo-equipe {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--rose);
    margin: .35rem 0 .75rem;
}

#equipe .cartao-equipe p {
    font-size: .92rem;
    color: rgba(43, 43, 43, .7);
    line-height: 1.65;
    max-width: 240px;
}

/* PORTFOLIO */
#portfolio {
    padding: 6rem 1.5rem;
    background: #fff;
}

#portfolio .grade-portfolio {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 600px) {
    #portfolio .grade-portfolio {
        grid-template-columns: repeat(2, 1fr);
    }
}

#portfolio .item-portfolio {
    aspect-ratio: 1;
    background: var(--rose-lt);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform .25s;
}

#portfolio .item-portfolio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#portfolio .item-portfolio:hover {
    transform: scale(1.03);
}

#portfolio .item-portfolio svg {
    width: 48px;
    height: 48px;
    stroke: rgba(255, 255, 255, .45);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* GALERIA */
#galeria {
    padding: 6rem 1.5rem;
    background: var(--cream);
}

#galeria .grade-galeria {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 860px) {
    #galeria .grade-galeria {
        grid-template-columns: repeat(2, 1fr);
    }
}

#galeria .item-galeria {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 1rem;
    overflow: hidden;
    margin: 0;
    background: var(--rose-lt);
}

#galeria .item-galeria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

#galeria .item-galeria:hover img {
    transform: scale(1.06);
}

#galeria .item-galeria figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem .9rem .9rem;
    font-family: var(--sans);
    font-weight: 600;
    font-size: .92rem;
    color: #fff;
    background: linear-gradient(to top, rgba(43, 43, 43, .78) 0%, transparent 100%);
}

/* ESTATÍSTICAS */
#estatisticas {
    padding: 6rem 1.5rem;
    background: var(--rose-lt);
}

#estatisticas .grade-estatisticas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

#estatisticas .cartao-estatistica {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

#estatisticas .numero-estatistica {
    font-family: var(--serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--rose);
    line-height: 1;
    margin-bottom: .5rem;
}

#estatisticas .rotulo-estatistica {
    font-size: .9rem;
    color: rgba(43, 43, 43, .65);
}

/* DEPOIMENTOS */
#depoimentos {
    padding: 6rem 1.5rem;
    background: #fff;
    overflow: hidden;
}

#depoimentos .swiper-depoimentos {
    width: 100%;
    padding-bottom: 3rem !important;
    overflow: hidden;
}

#depoimentos .swiper-slide {
    height: auto;
}

#depoimentos .cartao-depoimento {
    background: var(--cream);
    border-radius: 1.25rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    height: 100%;
    box-sizing: border-box;
    transition: box-shadow .25s;
}

#depoimentos .cartao-depoimento:hover {
    box-shadow: 0 12px 32px rgba(125, 46, 62, .1);
}

#depoimentos .dep-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cor, var(--rose)) 0%, var(--rose) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .03em;
    flex-shrink: 0;
}

#depoimentos .dep-corpo {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    flex: 1;
}

#depoimentos .estrelas {
    display: flex;
    gap: .2rem;
}

#depoimentos .estrela {
    width: 16px;
    height: 16px;
    fill: #FFD700;
    stroke: #FFD700;
}

#depoimentos .cartao-depoimento blockquote {
    font-style: italic;
    color: rgba(43, 43, 43, .78);
    font-size: .94rem;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

#depoimentos .cartao-depoimento cite {
    font-style: normal;
    font-weight: 600;
    font-size: .9rem;
    color: var(--rose);
    margin-top: auto;
}

/* Swiper custom */
#depoimentos .swiper-pagination-bullet {
    background: var(--rose);
    opacity: .35;
}

#depoimentos .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.25);
}

#depoimentos .swiper-button-prev,
#depoimentos .swiper-button-next {
    color: var(--rose);
    width: 40px;
    height: 40px;
}

#depoimentos .swiper-button-prev::after,
#depoimentos .swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: 700;
}

/* FAQ */
#faq {
    padding: 6rem 1.5rem;
    background: var(--cream);
}

#faq .lista-faq {
    max-width: 760px;
    margin: 0 auto;
}

#faq .item-faq {
    border-bottom: 1px solid rgba(43, 43, 43, .1);
}

#faq .gatilho-faq {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 1rem;
}

#faq .gatilho-faq span {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
    transition: color .2s;
}

#faq .gatilho-faq:hover span {
    color: var(--rose);
}

#faq .icone-faq {
    width: 24px;
    height: 24px;
    stroke: var(--rose);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    flex-shrink: 0;
    transition: transform .3s;
}

#faq .item-faq.aberto .icone-faq {
    transform: rotate(45deg);
}

#faq .corpo-faq {
    overflow: hidden;
    max-height: 0;
    transition: max-height .35s ease, padding .35s;
}

#faq .item-faq.aberto .corpo-faq {
    max-height: 200px;
}

#faq .corpo-faq p {
    padding-bottom: 1.5rem;
    color: rgba(43, 43, 43, .7);
    font-size: .97rem;
    line-height: 1.75;
}

/* LOCALIZAÇÃO */
#localizacao {
    padding: 6rem 1.5rem;
    background: #fff;
}

#localizacao .grade-localizacao {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

@media (max-width: 720px) {
    #localizacao .grade-localizacao {
        grid-template-columns: 1fr;
    }
}

#localizacao .placeholder-mapa {
    background: var(--cream);
    border-radius: 1.25rem;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#localizacao .placeholder-mapa svg {
    width: 72px;
    height: 72px;
    stroke: var(--rose);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#localizacao .info-localizacao h2 {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

#localizacao .info-localizacao p {
    font-size: 1.05rem;
    color: rgba(43, 43, 43, .78);
    margin-bottom: 2rem;
}

#localizacao .link-instagram {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--rose);
    font-weight: 600;
    font-size: .97rem;
}

#localizacao .link-instagram:hover {
    text-decoration: underline;
}

#localizacao .link-instagram svg {
    width: 20px;
    height: 20px;
    stroke: var(--rose);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* RODAPÉ */
footer {
    background: var(--rose);
    color: #fff;
    padding: 3.5rem 1.5rem;
    text-align: center;
}

footer .divisor-rodape {
    width: 8rem;
    height: 1px;
    background: rgba(255, 255, 255, .3);
    margin: 0 auto 1.5rem;
}

footer h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

footer .redes-sociais {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

footer .redes-sociais a {
    opacity: .85;
    transition: opacity .2s;
}

footer .redes-sociais a:hover {
    opacity: 1;
}

footer .redes-sociais svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

footer small {
    font-size: .85rem;
    opacity: .75;
    display: block;
}

footer .credito-emalhe {
    margin-top: .5rem;
    opacity: .5;
    font-size: .78rem;
    letter-spacing: .04em;
}

/* BOTÃO FLUTUANTE WHATSAPP */
#wa-flutuante {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: transform .2s;
}

#wa-flutuante:hover {
    transform: scale(1.12);
}

#wa-flutuante svg {
    width: 70px;
    height: 70px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ===== SEÇÕES: containment de overflow ===== */
#servicos,
#sobre,
#equipe,
#portfolio,
#galeria,
#estatisticas,
#depoimentos,
#faq,
#localizacao {
    position: relative;
    overflow: hidden;
}

/* ===== ONDAS DIVISÓRIAS ===== */
.onda-sec {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
    z-index: 2;
}

.onda-sec svg {
    display: block;
    width: 100%;
    height: 70px;
}

/* ===== HERO DECORAÇÕES ===== */
.hero-ramo {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 280px;
    height: 360px;
    pointer-events: none;
    opacity: .13;
}

.hero-pontos {
    position: absolute;
    bottom: 90px;
    left: 0;
    width: 160px;
    height: 140px;
    pointer-events: none;
    opacity: .4;
}

/* ===== SOBRE: anel decorativo ===== */
#sobre::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 40px solid rgba(242, 196, 206, .28);
    pointer-events: none;
    z-index: 0;
}

#sobre .container {
    position: relative;
    z-index: 1;
}

/* ===== EQUIPE: padrão de pontos ===== */
#equipe::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(125, 46, 62, .06) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
}

#equipe .container {
    position: relative;
    z-index: 1;
}

/* ===== ESTATÍSTICAS: anel fundo ===== */
#estatisticas::before {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(125, 46, 62, .06);
    pointer-events: none;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 640px) {

    /* Padding uniforme para todas as seções no mobile */
    #servicos,
    #sobre,
    #equipe,
    #portfolio,
    #galeria,
    #estatisticas,
    #depoimentos,
    #faq,
    #localizacao {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    /* Cards de serviço menores em 2 colunas */
    #servicos .cartao-servico {
        padding: 1.5rem 1rem;
        gap: .65rem;
    }

    #servicos .cartao-servico h3 {
        font-size: 1.1rem;
    }

    #servicos .icone-servico {
        width: 40px;
        height: 40px;
    }

    #servicos .lista-servicos li {
        font-size: .85rem;
    }

    /* Título e subtítulo de seção menores */
    .titulo-secao {
        margin-bottom: 2.5rem;
    }

    .subtitulo-secao {
        margin: -2rem auto 2.5rem;
        font-size: .95rem;
    }

    #depoimentos .swiper-button-prev,
    #depoimentos .swiper-button-next {
        display: none;
    }

    .onda-sec svg {
        height: 40px;
    }

    .hero-ramo {
        width: 180px;
        height: 240px;
        opacity: .09;
    }

    .hero-pontos {
        width: 110px;
        height: 100px;
    }
}

@media (max-width: 490px) {
    #servicos .grade-servicos {
        grid-template-columns: repeat(1, 1fr);
    }

    .container {
        padding: 0;
    }

    #hero {
    min-height: unset;
    }
}

@media (max-width: 400px) {
    .botao-primario {
        font-size: .97rem;
        padding: .85rem 1.5rem;
        max-width: 100%;
        justify-content: center;
    }

    .hero-ramo {
        display: none;
    }

    #hero h1 {
        font-size: 2rem;
    }

    /* Cards de serviço ainda mais compactos em telas muito pequenas */
    #servicos .cartao-servico {
        padding: 1.25rem .75rem;
    }

    #servicos .cartao-servico h3 {
        font-size: 1rem;
    }
}

/* LIGHTBOX */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(20, 10, 12, .92);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

#lightbox.ativo {
    display: flex;
    animation: lbFade .22s ease;
}

#lightbox img {
    max-width: min(90vw, 900px);
    max-height: 88svh;
    object-fit: contain;
    border-radius: .75rem;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .6);
    display: block;
    animation: lbZoom .25s ease;
}

#lb-fechar {
    position: fixed;
    top: 1.25rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, .12);
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

#lb-fechar:hover {
    background: rgba(255, 255, 255, .25);
}

#lb-fechar svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
}

.lb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .12);
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.lb-nav:hover {
    background: rgba(255, 255, 255, .25);
}

.lb-nav svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#lb-prev {
    left: 1rem;
}

#lb-next {
    right: 1rem;
}

#lb-legenda {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .75);
    font-size: .88rem;
    font-family: var(--sans);
    font-weight: 600;
    letter-spacing: .04em;
    background: rgba(0, 0, 0, .35);
    padding: .35rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
}

#galeria .item-galeria {
    cursor: zoom-in;
}

@keyframes lbFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes lbZoom {
    from {
        transform: scale(.92);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animações */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.revelar {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.revelar.visivel {
    opacity: 1;
    transform: translateY(0);
}