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

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--altura-aviso) + var(--altura-nav) + 12px);
    overflow-x: hidden;
}

body {
    font-family: var(--font-corpo);
    background: var(--background);
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 18px;
    padding-top: calc(var(--altura-aviso) + var(--altura-nav));
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

section {
    position: relative;
}

button {
    font: inherit;
    cursor: pointer;
}


/* =========================================================
   ACESSIBILIDADE / MOVIMENTO
========================================================= */

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

    * {
        animation-duration: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

.dark-section :focus-visible,
footer :focus-visible {
    outline-color: var(--accent-light);
}


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

:root {
    --altura-aviso: 36px;
    --altura-nav: 76px;

    /* Cores */
    --primary: #6B1F3A;
    --primary-dark: #3D1220;
    --secondary: #3B2160;
    --accent: #9C7A2E;
    --accent-light: #D8B463;

    --background: #FAF5F0;
    --background-2: #F1E6DC;
    --surface: #FFFFFF;

    --text: #241A20;
    --text-muted: #6B5C64;

    --border: rgba(107, 31, 58, 0.16);

    /* WhatsApp */
    --whats: #25D366;
    --whats-escuro: #128C7E;

    /* Sombras */
    --sombra: 0 12px 28px rgba(61, 18, 32, 0.14);
    --sombra-forte: 0 18px 36px rgba(61, 18, 32, 0.26);

    /* Bordas */
    --radius: 18px;
    --radius-btn: 14px;

    /* Tipografia */
    --font-titulo:
        'Cormorant Garamond Variable',
        Georgia,
        'Times New Roman',
        serif;

    --font-corpo:
        'Manrope Variable',
        system-ui,
        -apple-system,
        'Segoe UI',
        sans-serif;
}


/* =========================================================
   FONTES
========================================================= */

@font-face {
    font-family: 'Cormorant Garamond Variable';
    font-style: normal;
    font-display: swap;
    font-weight: 300 700;

    src: url('../fonts/cormorant-garamond-latin-normal.woff2')
        format('woff2-variations');

    unicode-range:
        U+0000-00FF,
        U+0131,
        U+0152-0153,
        U+02BB-02BC,
        U+02C6,
        U+02DA,
        U+02DC,
        U+2000-206F,
        U+20AC,
        U+2122,
        U+2191,
        U+2193,
        U+2212,
        U+2215,
        U+FEFF,
        U+FFFD;
}

@font-face {
    font-family: 'Manrope Variable';
    font-style: normal;
    font-display: swap;
    font-weight: 200 800;

    src: url('../fonts/manrope-latin-normal.woff2')
        format('woff2-variations');

    unicode-range:
        U+0000-00FF,
        U+0131,
        U+0152-0153,
        U+02BB-02BC,
        U+02C6,
        U+02DA,
        U+02DC,
        U+2000-206F,
        U+20AC,
        U+2122,
        U+2191,
        U+2193,
        U+2212,
        U+2215,
        U+FEFF,
        U+FFFD;
}


/* =========================================================
   TIPOGRAFIA
========================================================= */

h1,
h2,
h3,
h4 {
    font-family: var(--font-titulo);
    color: var(--primary);
    font-weight: 700;
    line-height: 1.18;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding-inline: clamp(16px, 6vw, 48px);
}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--primary);
    margin-bottom: 14px;
}

.eyebrow svg {
    width: 16px;
    height: 16px;
}

.eyebrow-clara {
    color: var(--accent-light);
}

.eyebrow-centro {
    width: 100%;
    justify-content: center;
}


/* =========================================================
   AVISO SUPERIOR
========================================================= */

.aviso-topo {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    z-index: 101;

    background: var(--primary-dark);
    color: var(--background-2);

    min-height: var(--altura-aviso);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    font-size: 0.92rem;
    font-weight: 600;

    padding: 7px 16px;

    letter-spacing: 0.02em;
}


/* =========================================================
   HEADER / NAVEGAÇÃO
========================================================= */

header {
    position: fixed;
    top: var(--altura-aviso);
    left: 0;
    right: 0;

    z-index: 100;

    background: rgba(250, 245, 240, 0.98);

    border-bottom: 1px solid var(--border);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: var(--altura-nav);
    padding: 12px clamp(16px, 6vw, 48px);
    gap: 4vw;

    max-width: 1180px;
    margin: 0 auto;
}


/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 9px;

    font-family: var(--font-titulo);
    font-weight: 700;
    font-size: 1.5rem;

    color: var(--primary);

    white-space: nowrap;
}

.logo svg {
    width: 26px;
    height: 26px;
    color: var(--accent);
}


/* Links */

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2.2vw, 26px);
}

.nav-links a:not(.btn) {
    position: relative;

    font-size: 1.02rem;
    font-weight: 600;

    color: var(--text);

    padding-bottom: 4px;

    white-space: nowrap;
}

.nav-links a:not(.btn)::after {
    content: '';

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--accent);

    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

.nav-links .btn {
    padding: 10px 20px;
    font-size: 0.98rem;

    flex-shrink: 0;
    white-space: nowrap;
}


/* Botão menu mobile */

.menu-toggle {
    display: none;

    flex-direction: column;
    gap: 5px;

    background: transparent;
    border: none;

    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;

    background: var(--primary);

    border-radius: 2px;

    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


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

.hero {
    padding: clamp(42px, 6vw, 70px) 0;

    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';

    position: absolute;
    top: -160px;
    right: -12vw;

    width: 640px;
    height: 640px;

    background:
        radial-gradient(
            circle,
            rgba(156, 122, 46, 0.16),
            transparent 68%
        );

    border-radius: 50%;

    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    gap: clamp(32px, 6vw, 72px);

    align-items: center;

    position: relative;
    z-index: 1;
}


/* Badge */

.badge-disponivel {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    background: var(--surface);
    border: 1px solid var(--border);

    color: var(--primary);

    font-weight: 700;
    font-size: 0.92rem;

    padding: 8px 16px;

    border-radius: 100px;

    box-shadow: var(--sombra);

    margin-bottom: 20px;
}

.badge-disponivel::before {
    content: '';

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: var(--whats);
}


/* Conteúdo */

.hero h1 {
    font-size: clamp(2.6rem, 5.4vw, 4rem);
    margin-bottom: 16px;
}

.hero .tagline {
    font-weight: 600;
    color: var(--text);

    font-size: clamp(1.2rem, 2.1vw, 1.45rem);

    margin-bottom: 18px;
}

.hero .desc {
    max-width: 560px;

    margin-bottom: 26px;

    font-size: 1.1rem;
}


/* Provas / estatísticas */

.hero-prova {
    display: flex;
    flex-wrap: wrap;

    gap: 26px;

    margin-bottom: 30px;
}

.hero-prova .stat-numero {
    display: block;

    font-family: var(--font-titulo);

    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 700;

    color: var(--primary);

    line-height: 1;
}

.hero-prova .stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.dark-section .hero-prova .stat-numero {
    color: var(--accent-light);
}

.dark-section .hero-prova .stat-label {
    color: rgba(250, 245, 240, 0.75);
}


/* CTAs */

.hero-ctas {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}

.hero-info {
    margin-top: 18px;
    font-size: 0.96rem;
}

.hero-prova-pos-cta {
    margin-top: 28px;
    margin-bottom: 0;
}


/* Foto */

.hero-foto {
    position: relative;
    z-index: 1;
}

.hero-foto .moldura {
    aspect-ratio: 3 / 4;

    border-radius: var(--radius);
    overflow: hidden;

    box-shadow: var(--sombra-forte);

    border: 6px solid var(--surface);
    outline: 1px solid var(--border);
}

.hero-foto .moldura img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


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

.secao {
    padding: clamp(56px, 7vw, 84px) 0;
    content-visibility: auto;
    contain-intrinsic-size: auto 760px;
}

.secao-clara {
    background: var(--background);
}

.secao-alt {
    background: var(--background-2);
}

.secao-branca {
    background: var(--surface);
}


/* Seção escura */

.dark-section {
    background:
        linear-gradient(
            160deg,
            var(--primary-dark),
            var(--secondary)
        );

    color: rgba(250, 245, 240, 0.88);
}

.dark-section h2,
.dark-section h3 {
    color: var(--surface);
}

.dark-section .eyebrow {
    color: var(--accent-light);
}

.dark-section p {
    color: rgba(250, 245, 240, 0.82);
}


/* =========================================================
   SEÇÃO COM TEXTURA
========================================================= */

.secao-textura {
    position: relative;
    overflow: hidden;
}

.secao-textura .textura-bg {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    opacity: 0.1;

    pointer-events: none;
}

.secao-textura.dark-section .textura-bg {
    opacity: 0.16;
}

.secao-textura > .container {
    position: relative;
    z-index: 1;
}


/* =========================================================
   CABEÇALHO DAS SEÇÕES
========================================================= */

.secao-head {
    max-width: 720px;

    margin: 0 auto 46px;

    text-align: center;
}

.secao-head h2 {
    font-size: clamp(2rem, 3.8vw, 2.8rem);
}

.secao-head p {
    margin-top: 12px;
    font-size: 1.14rem;
}


/* =========================================================
   CONTEÚDO DE SEÇÃO
========================================================= */

.secao-conteudo {
    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 6vw;

    align-items: center;
}

.secao-conteudo.inverso {
    grid-template-columns: 0.9fr 1.1fr;
}

.secao-conteudo.inverso .secao-foto {
    order: -1;
}


/* Texto */

.secao-texto h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);

    margin-bottom: 14px;
}

.secao-texto > p {
    font-size: 1.08rem;
    margin-bottom: 18px;
}


/* Foto */

.secao-foto {
    aspect-ratio: 4 / 5;

    border-radius: var(--radius);
    overflow: hidden;

    box-shadow: var(--sombra);

    border: 4px solid var(--surface);
    outline: 1px solid var(--border);
}

.secao-foto img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================================================
   AVISO CARD
========================================================= */

.aviso-card {
    background: var(--surface);

    border: 1px solid var(--border);
    border-left: 4px solid var(--accent);

    border-radius: var(--radius);

    padding: 26px 28px;

    box-shadow: var(--sombra);

    margin-bottom: 46px;
}

.aviso-card h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.aviso-card p {
    font-size: 1.02rem;
}

.aviso-card .selo-video {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 14px;

    font-size: 0.95rem;
    font-weight: 600;

    color: var(--primary);
}

.aviso-card .selo-video svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;
}


/* =========================================================
   LISTA DE SERVIÇOS
========================================================= */

.grid-servicos-lista {
    display: grid;

    grid-template-columns:
        repeat(auto-fill, minmax(230px, 1fr));

    gap: 12px;
}

.servico-chip {
    display: flex;
    align-items: center;
    gap: 12px;

    background: var(--surface);

    border: 1px solid var(--border);
    border-radius: 12px;

    padding: 14px 16px;

    font-size: 0.98rem;
    font-weight: 600;

    color: var(--text);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.servico-chip:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra);
}

.servico-chip svg {
    width: 20px;
    height: 20px;

    flex-shrink: 0;

    color: var(--accent);
}


/* =========================================================
   DIFERENCIAIS
========================================================= */

.grid-diferenciais {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(180px, 1fr));

    gap: 16px;

    margin: 30px 0;
}

.diferencial-item {
    background: rgba(255, 255, 255, 0.08);

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

    border-radius: 14px;

    padding: 20px;

    text-align: center;
}

.dark-section .diferencial-item {
    background: rgba(255, 255, 255, 0.07);
}

.secao:not(.dark-section) .diferencial-item {
    background: var(--surface);

    border-color: var(--border);

    box-shadow: var(--sombra);
}

.diferencial-item svg {
    width: 30px;
    height: 30px;

    color: var(--accent-light);

    margin-bottom: 10px;
}

.secao:not(.dark-section) .diferencial-item svg {
    color: var(--accent);
}

.diferencial-item p {
    font-weight: 600;
    font-size: 0.98rem;

    margin: 0;

    color: inherit;
}


/* =========================================================
   CITAÇÃO DESTAQUE
========================================================= */

.citacao-destaque {
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color: var(--surface);

    padding: 26px 30px;

    border-radius: var(--radius);

    margin: 28px 0;

    text-align: center;

    font-weight: 700;
    font-size: 1.2rem;
}


/* =========================================================
   GALERIA
========================================================= */

.grid-galeria-secao {
    display: grid;

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

    gap: 16px;

    margin-top: 40px;
}

.foto-unica,
.grid-galeria-secao .foto-item {
    aspect-ratio: 4 / 5;

    border-radius: var(--radius);
    overflow: hidden;

    box-shadow: var(--sombra);

    border: 3px solid var(--surface);
    outline: 1px solid var(--border);
}

.foto-unica img,
.grid-galeria-secao .foto-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.grid-galeria-secao .foto-item:hover img {
    transform: scale(1.06);
}


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

.depoimento {
    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 3px solid var(--accent-light);

    border-radius: 14px;

    padding: 22px 24px;

    margin: 26px 0;
}

.secao:not(.dark-section) .depoimento {
    background: var(--background-2);

    border-color: var(--border);
    border-left-color: var(--accent);
}

.depoimento-texto {
    font-family: var(--font-titulo);
    font-style: italic;

    font-size: 1.2rem;
    line-height: 1.55;

    margin-bottom: 12px;
}

.depoimento-autor {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;
    flex-wrap: wrap;
}

.depoimento-nome {
    font-weight: 700;
    font-size: 0.96rem;
}

.stars {
    color: var(--accent-light);
    letter-spacing: 2px;
}

.secao:not(.dark-section) .stars {
    color: var(--accent);
}


/* =========================================================
   BOTÕES
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 30px;

    border-radius: var(--radius-btn);

    font-weight: 700;
    font-size: 1.06rem;

    border: 2px solid transparent;

    min-height: 48px;

    transition:
        transform 0.2s ease,
        box-shadow 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}

.btn:active {
    transform: scale(0.97);
}

.btn svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;
}


/* Botão fantasma */

.btn-fantasma {
    border-color: var(--primary);

    color: var(--primary);

    background: transparent;
}

.btn-fantasma:hover {
    background: var(--primary);
    color: var(--surface);
}


/* Botão claro */

.btn-outline-claro {
    border-color: var(--accent-light);

    color: var(--surface);

    background: rgba(255, 255, 255, 0.06);
}

.btn-outline-claro:hover {
    background: var(--accent-light);
    color: var(--primary-dark);
}


/* Botão WhatsApp */

.btn-primario {
    background:
        linear-gradient(
            120deg,
            var(--whats-escuro),
            var(--whats)
        );

    color: var(--surface);

    box-shadow:
        0 10px 22px rgba(18, 140, 126, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primario:hover {
    transform: translateY(-3px);

    box-shadow:
        0 16px 30px rgba(18, 140, 126, 0.4);
}


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

.whats-flutuante {
    position: fixed;

    right: calc(16px + env(safe-area-inset-right));
    bottom: calc(22px + env(safe-area-inset-bottom));

    z-index: 200;

    width: 58px;
    height: 58px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--whats-escuro),
            var(--whats)
        );

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 8px 22px rgba(18, 140, 126, 0.4);
}

.whats-flutuante:active {
    transform: scale(0.93);
}

.whats-flutuante svg {
    width: 27px;
    height: 27px;

    color: var(--surface);
}

.cta-central {
    margin-top: 44px;
    text-align: center;
}

.contato-container {
    max-width: 720px;
    text-align: center;
}

.contato-prova {
    justify-content: center;
    margin: 30px 0;
}

.cta-destaque {
    margin-top: 10px;
    font-size: 1.15rem;
}

.info-clara {
    color: rgba(250, 245, 240, 0.75);
    margin-top: 16px;
}

.aviso-transparencia {
    font-size: 1.08rem;
    line-height: 1.55;
}


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

footer {
    background: var(--primary-dark);

    color: rgba(250, 245, 240, 0.78);

    padding: 44px 0 24px;
}

.footer-selos {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 28px;

    padding-bottom: 30px;
    margin-bottom: 24px;

    border-bottom:
        1px solid rgba(216, 180, 99, 0.18);
}

.footer-selo {
    display: flex;
    align-items: center;
    gap: 8px;

    font-weight: 700;
    font-size: 0.96rem;

    color: var(--accent-light);
}

.footer-selo svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;
}

.footer-aviso {
    font-size: 0.86rem;
    line-height: 1.7;
    color: rgba(250, 245, 240, 0.55);
    margin-bottom: 18px;
    text-align: center;
}

.footer-baixo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-size: 0.92rem;
    text-align: center;
}

.footer-baixo a {
    color: var(--accent-light);
    font-weight: 600;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}


/* =========================================================
   ANIMAÇÕES / REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(24px);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}

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


/* =========================================================
   RESPONSIVIDADE — ATÉ 980px
========================================================= */

@media (max-width: 980px) {

    .secao-conteudo,
    .secao-conteudo.inverso {
        grid-template-columns: 1fr;
    }

    .secao-conteudo .secao-foto,
    .secao-conteudo.inverso .secao-foto {
        order: -1;

        max-width: 420px;

        margin: 0 auto 8px;
    }

    .grid-galeria-secao {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* =========================================================
   RESPONSIVIDADE — MENU MOBILE
========================================================= */

@media (max-width: 900px) {

    body.menu-aberto {
        overflow: hidden;
    }


    /* Overlay */

    .nav-overlay {
        position: fixed;
        inset: 0;

        z-index: 99;

        background: rgba(36, 26, 32, 0.5);

        opacity: 0;
        visibility: hidden;

        transition:
            opacity 0.3s ease;
    }

    .nav-overlay.ativo {
        opacity: 1;
        visibility: visible;
    }


    /* Menu lateral */

    .nav-links {
        position: fixed;

        top: 0;
        right: 0;

        width: min(320px, 84vw);
        height: 100vh;
        height: 100dvh;

        z-index: 100;

        background: var(--surface);

        flex-direction: column;
        align-items: flex-start;

        gap: 0;

        padding: 90px 28px 26px;

        transform: translateX(100%);

        transition:
            transform 0.35s ease;

        box-shadow:
            -12px 0 40px rgba(61, 18, 32, 0.18);

        overflow-y: auto;
    }

    .nav-links.aberto {
        transform: translateX(0);
    }


    /* Links mobile */

    .nav-links a:not(.btn) {
        width: 100%;
        min-height: 48px;

        display: flex;
        align-items: center;

        padding: 15px 0;

        border-bottom: 1px solid var(--border);

        font-size: 1.14rem;
    }

    .nav-links a.btn {
        width: 100%;
        min-height: 48px;

        margin-top: 18px;

        justify-content: center;
    }

    .menu-toggle {
        display: flex;
    }
}


/* =========================================================
   RESPONSIVIDADE — ATÉ 860px
========================================================= */

@media (max-width: 860px) {

    .hero-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-texto {
        display: flex;

        flex-direction: column;
        align-items: center;
    }

    .hero-prova {
        justify-content: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-foto {
        max-width: 300px;

        margin: 8px auto 0;
    }

   .footer-baixo {
    flex-direction: column;
    align-items: center;
    text-align: center;
}
}


/* =========================================================
   RESPONSIVIDADE — ATÉ 640px
========================================================= */

@media (max-width: 640px) {

    .grid-galeria-secao {
        grid-template-columns: 1fr 1fr;
    }

    .secao {
        padding:
            clamp(3.5rem, 10vw, 5rem)
            0;
    }
}


/* =========================================================
   RESPONSIVIDADE — ATÉ 480px
========================================================= */

@media (max-width: 480px) {

    .aviso-topo {
        font-size: 0.82rem;
        letter-spacing: 0;
    }

    .hero-ctas .btn,
    .secao-texto > .btn,
    .cta-central .btn,
    .contato-container > .btn {
        width: 100%;
        max-width: 420px;
    }

    .btn {
        font-size: 1rem;
        padding: 14px 22px;
    }

    .citacao-destaque {
        font-size: 1.06rem;
        padding: 22px;
    }
}

@media (max-width: 360px) {
    .logo {
        font-size: 1.3rem;
    }

    .logo svg {
        width: 23px;
        height: 23px;
    }

    .hero-prova {
        gap: 16px;
    }

    .grid-servicos-lista {
        grid-template-columns: 1fr;
    }

    .depoimento,
    .aviso-card {
        padding: 20px;
    }
}
