/* ======================================================================
   BLOCO 1 - VARIÁVEIS GERAIS
   ====================================================================== */

:root
{
    --verde-900: #163f29;
    --verde-800: #1d5132;
    --verde-700: #245f38;
    --verde-600: #2f7244;
    --verde-500: #4d8b5d;
    --verde-300: #a8c7ad;
    --verde-200: #d9e8da;
    --verde-100: #edf5ed;

    --creme-100: #f8f7f1;
    --creme-200: #f1efe6;
    --branco: #ffffff;

    --texto: #243229;
    --texto-suave: #5b675f;
    --borda: #dfe6df;

    --sombra: 0 18px 45px rgba(22, 63, 41, 0.10);
    --sombra-leve: 0 10px 28px rgba(22, 63, 41, 0.07);

    --raio: 22px;
    --raio-menor: 14px;

    --container: 1180px;
    --header-height: 86px;
}

/* ======================================================================
   BLOCO 2 - RESET E BASE
   ====================================================================== */

*
{
    box-sizing: border-box;
}

html
{
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 16px);
}

body
{
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--texto);
    background: var(--branco);
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
}

body.modal-open
{
    overflow: hidden;
}

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

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

button,
input,
textarea,
select
{
    font: inherit;
}

button
{
    cursor: pointer;
}

h1,
h2,
h3,
p
{
    margin-top: 0;
}

h1,
h2
{
    font-family: Georgia, 'Times New Roman', serif;
    color: var(--verde-900);
    line-height: 1.08;
}

h1
{
    margin-bottom: 24px;
    font-size: clamp(3rem, 6vw, 5.6rem);
    font-weight: 500;
    letter-spacing: -0.045em;
}

h2
{
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 500;
    letter-spacing: -0.035em;
}

h3
{
    color: var(--verde-900);
    line-height: 1.28;
}

p
{
    margin-bottom: 16px;
}

.container
{
    width: min(var(--container), calc(100% - 48px));
    margin: 0 auto;
}

.section
{
    padding: 78px 0;
}

.section-compact
{
    padding-top: 36px;
    padding-bottom: 76px;
}

.section-soft
{
    background:
        radial-gradient(circle at 8% 20%, rgba(168, 199, 173, 0.16), transparent 28%),
        radial-gradient(circle at 92% 70%, rgba(168, 199, 173, 0.12), transparent 26%),
        var(--creme-100);
}

.section-anchor
{
    scroll-margin-top: calc(var(--header-height) + 10px);
}

.section-heading
{
    max-width: 780px;
    margin-bottom: 38px;
}

.section-heading.center
{
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.section-heading p
{
    color: var(--texto-suave);
    font-size: 1.05rem;
}

.section-kicker,
.eyebrow
{
    display: inline-block;
    margin-bottom: 10px;
    color: var(--verde-600);
    font-size: 0.79rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-kicker.light
{
    color: #d7ebdb;
}

.section-note
{
    max-width: 860px;
    margin: 28px auto 0;
    color: var(--verde-800);
    text-align: center;
    font-size: 0.94rem;
    font-weight: 600;
}

.important-text
{
    color: var(--verde-800);
    font-weight: 700;
}

/* ======================================================================
   BLOCO 3 - BOTÕES
   ====================================================================== */

.btn
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1.2;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover
{
    transform: translateY(-2px);
}

.btn-icon
{
    font-size: 1.15rem;
}

.btn-primary
{
    color: var(--branco);
    background: linear-gradient(135deg, var(--verde-700), var(--verde-900));
    box-shadow: 0 12px 28px rgba(36, 95, 56, 0.23);
}

.btn-primary:hover
{
    box-shadow: 0 16px 34px rgba(36, 95, 56, 0.30);
}

.btn-secondary
{
    color: var(--branco);
    background: var(--verde-700);
}

.btn-light
{
    color: var(--verde-900);
    background: var(--branco);
    box-shadow: var(--sombra-leve);
}

.btn-large
{
    min-height: 56px;
    padding-right: 30px;
    padding-left: 30px;
}

.text-button
{
    padding: 0;
    border: 0;
    color: var(--verde-700);
    background: transparent;
    font-weight: 700;
}

.text-button:hover
{
    color: var(--verde-900);
    text-decoration: underline;
}

/* ======================================================================
   BLOCO 4 - HEADER
   ====================================================================== */

.site-header
{
    position: sticky;
    z-index: 1000;
    top: 0;
    min-height: var(--header-height);
    border-bottom: 1px solid rgba(36, 95, 56, 0.08);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
}

.site-header.is-scrolled
{
    box-shadow: 0 8px 30px rgba(22, 63, 41, 0.08);
}

.header-inner
{
    display: grid;
    grid-template-columns: 130px 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: var(--header-height);
}

.brand
{
    display: inline-flex;
    align-items: center;
    width: 112px;
}

.brand img
{
    width: 112px;
    height: 72px;
    object-fit: contain;
}

.main-nav
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2vw, 32px);
}

.main-nav a
{
    position: relative;
    color: #2d3b31;
    font-size: 0.93rem;
    font-weight: 600;
    white-space: nowrap;
}

.main-nav a::after
{
    position: absolute;
    right: 0;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 2px;
    margin: auto;
    content: '';
    background: var(--verde-600);
    transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after
{
    width: 100%;
}

.btn-header
{
    min-height: 46px;
    padding: 11px 19px;
    color: var(--branco);
    background: var(--verde-700);
    box-shadow: 0 8px 18px rgba(36, 95, 56, 0.18);
    white-space: nowrap;
}

.menu-toggle
{
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 0;
    border-radius: 12px;
    background: var(--verde-100);
}

.menu-toggle span
{
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--verde-900);
}

/* ======================================================================
   BLOCO 5 - HERO
   ====================================================================== */

.hero
{
    position: relative;
    overflow: hidden;
    padding: 58px 0 44px;
    background:
        radial-gradient(circle at 84% 18%, rgba(168, 199, 173, 0.22), transparent 28%),
        linear-gradient(120deg, #ffffff 0%, #fbfbf7 55%, #f2f5ed 100%);
}

.hero::after
{
    position: absolute;
    right: -110px;
    bottom: -170px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(47, 114, 68, 0.10);
    border-radius: 50%;
    content: '';
}

.hero-grid
{
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    align-items: center;
    gap: 66px;
}

.hero-content
{
    position: relative;
    z-index: 2;
    max-width: 660px;
}

.hero-content > p
{
    max-width: 620px;
}

.hero-mobile-photo,
.hero-mobile-only
{
    display: none !important;
}

.hero-desktop-only
{
    display: block !important;
}

.hero-lead
{
    margin-bottom: 14px;
    font-size: 1.18rem;
}

.hero-highlight
{
    margin: 22px 0 26px;
    color: var(--verde-800);
    font-weight: 700;
}

.hero-features
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin-top: 23px;
    color: var(--texto-suave);
    font-size: 0.93rem;
}

.hero-features span
{
    white-space: nowrap;
}

.hero-photo
{
    position: relative;
    z-index: 2;
    width: min(100%, 430px);
    justify-self: end;
}

.hero-photo-frame
{
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    max-height: 520px;
    border: 10px solid rgba(255, 255, 255, 0.76);
    border-radius: 36px 36px 140px 36px;
    background: var(--creme-200);
    box-shadow: var(--sombra);
}

.hero-photo-frame img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
}

.hero-photo-badge
{
    position: absolute;
    right: -18px;
    bottom: 26px;
    display: flex;
    flex-direction: column;
    min-width: 205px;
    padding: 14px 18px;
    border: 1px solid rgba(36, 95, 56, 0.10);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--sombra-leve);
}

.hero-photo-badge strong
{
    color: var(--verde-800);
    font-size: 0.95rem;
}

.hero-photo-badge span
{
    color: var(--texto-suave);
    font-size: 0.82rem;
}

/* ======================================================================
   BLOCO 6 - CARDS DE IDENTIFICAÇÃO
   ====================================================================== */

.signal-grid
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.signal-card
{
    display: grid;
    grid-template-columns: 14px 1fr;
    align-items: start;
    gap: 10px;
    min-height: 0;
    padding: 16px 16px;
    border: 1px solid var(--borda);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 6px 18px rgba(22, 63, 41, 0.04);
}

.signal-dot
{
    width: 8px;
    height: 8px;
    margin-top: 6px;
    border-radius: 50%;
    background: var(--verde-600);
    box-shadow: 0 0 0 4px var(--verde-100);
}

.signal-content h3
{
    margin: 0 0 5px;
    font-size: 0.98rem;
    line-height: 1.26;
}

.signal-content p
{
    margin: 0;
    color: var(--texto-suave);
    font-size: 0.86rem;
    line-height: 1.42;
}

/* ======================================================================
   BLOCO 7 - TRG
   ====================================================================== */

.trg-panel
{
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 58px;
    padding: 54px;
    border: 1px solid var(--borda);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(237, 245, 237, 0.68), rgba(255, 255, 255, 0.96)),
        var(--branco);
    box-shadow: var(--sombra-leve);
}

.trg-main
{
    padding-right: 16px;
}

.trg-main h2
{
    margin-bottom: 22px;
}

.trg-points
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.trg-points article
{
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--borda);
}

.trg-points article:last-child
{
    border-bottom: 0;
}

.trg-points h3
{
    margin-bottom: 6px;
    font-size: 1rem;
}

.trg-points p
{
    margin: 0;
    color: var(--texto-suave);
    font-size: 0.9rem;
}

.round-icon
{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--branco);
    background: var(--verde-700);
    font-size: 0.8rem;
    font-weight: 700;
}

/* ======================================================================
   BLOCO 8 - COLUNAS DE INFORMAÇÃO
   ====================================================================== */

.info-columns
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    gap: 18px;
}

.info-card
{
    padding: 30px 28px;
    border: 1px solid var(--borda);
    border-radius: var(--raio);
    background: var(--branco);
    box-shadow: 0 8px 22px rgba(22, 63, 41, 0.04);
}

.info-card h2
{
    min-height: 88px;
    margin-bottom: 22px;
    font-size: 1.75rem;
}

.check-list,
.icon-list
{
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.check-list li,
.icon-list li
{
    position: relative;
    margin-bottom: 12px;
    padding-left: 25px;
    color: var(--texto-suave);
    font-size: 0.92rem;
}

.check-list li::before,
.icon-list li::before
{
    position: absolute;
    top: 0;
    left: 0;
    color: var(--verde-600);
    content: '✓';
    font-weight: 700;
}

.expand-panel[hidden]
{
    display: none;
}

.attention-box
{
    margin: 22px 0;
    padding: 18px;
    border-left: 4px solid var(--verde-600);
    border-radius: 0 14px 14px 0;
    background: var(--verde-100);
}

.attention-box strong
{
    color: var(--verde-900);
}

.attention-box p
{
    margin: 6px 0 0;
    font-size: 0.92rem;
}

/* ======================================================================
   BLOCO 9 - SOBRE ANA
   ====================================================================== */

.about-grid
{
    display: grid;
    grid-template-columns: 230px 1fr;
    align-items: center;
    gap: 44px;
}

.about-photo
{
    width: 230px;
    margin: 0 auto;
}

.about-photo img
{
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 24px;
    object-fit: contain;
    box-shadow: var(--sombra-leve);
}

.about-content
{
    max-width: 800px;
}

.credential-list
{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px;
}

.credential-list p
{
    margin: 0;
    padding: 9px 13px;
    border: 1px solid var(--verde-200);
    border-radius: 999px;
    color: var(--verde-800);
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
}

.about-content blockquote
{
    margin: 26px 0;
    padding: 22px 24px;
    border: 0;
    border-left: 4px solid var(--verde-600);
    border-radius: 0 16px 16px 0;
    color: var(--verde-800);
    background: rgba(255, 255, 255, 0.72);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.06rem;
    font-style: italic;
}

.instagram-link
{
    color: var(--verde-700);
}

/* ======================================================================
   BLOCO 10 - DEPOIMENTOS
   ====================================================================== */

.testimonial-slider
{
    position: relative;
}

.testimonial-viewport
{
    overflow: hidden;
    margin: 0 56px;
}

.testimonial-track
{
    display: flex;
    gap: 18px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.testimonial-card
{
    flex: 0 0 calc((100% - 36px) / 3);
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 30px 26px;
    border: 1px solid var(--borda);
    border-radius: var(--raio);
    background: var(--creme-100);
}

.quote-mark
{
    height: 40px;
    color: var(--verde-300);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 3.5rem;
    line-height: 1;
}

.testimonial-text
{
    flex: 1;
    color: #36443a;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1rem;
    line-height: 1.65;
}

.testimonial-author
{
    display: flex;
    flex-direction: column;
    margin: 10px 0 16px;
}

.testimonial-author strong
{
    color: var(--verde-900);
}

.testimonial-author span
{
    color: var(--texto-suave);
    font-size: 0.82rem;
}

.slider-arrow
{
    position: absolute;
    z-index: 10;
    top: 50%;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: var(--branco);
    background: var(--verde-700);
    box-shadow: var(--sombra-leve);
    font-size: 2rem;
    line-height: 1;
    transform: translateY(-50%);
}

.slider-prev
{
    left: 0;
}

.slider-next
{
    right: 0;
}

.slider-arrow:disabled
{
    opacity: 0.35;
    cursor: default;
}

.slider-dots
{
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.slider-dot
{
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--verde-200);
}

.slider-dot.active
{
    background: var(--verde-700);
}

.testimonial-disclaimer
{
    max-width: 860px;
    margin: 26px auto 0;
    color: var(--texto-suave);
    text-align: center;
    font-size: 0.82rem;
}

/* ======================================================================
   BLOCO 11 - FAQ
   ====================================================================== */

.faq-container
{
    max-width: 980px;
}

.faq-list
{
    display: grid;
    gap: 10px;
}

.faq-item
{
    overflow: hidden;
    border: 1px solid var(--borda);
    border-radius: 14px;
    background: var(--branco);
}

.faq-question
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 18px 22px;
    border: 0;
    color: var(--verde-900);
    background: transparent;
    text-align: left;
    font-weight: 700;
}

.faq-plus
{
    flex: 0 0 auto;
    color: var(--verde-600);
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-plus
{
    transform: rotate(45deg);
}

.faq-answer
{
    padding: 0 22px 20px;
}

.faq-answer p
{
    margin: 0;
    color: var(--texto-suave);
}

/* ======================================================================
   BLOCO 12 - CTA FINAL
   ====================================================================== */

.final-cta
{
    padding: 54px 0;
    color: var(--branco);
    background:
        radial-gradient(circle at 12% 120%, rgba(255, 255, 255, 0.10), transparent 30%),
        linear-gradient(135deg, var(--verde-700), var(--verde-900));
}

.final-cta-inner
{
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
}

.final-cta h2
{
    max-width: 700px;
    margin-bottom: 12px;
    color: var(--branco);
}

.final-cta p
{
    margin: 0;
    color: #e8f1e9;
}

.final-cta-action
{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* ======================================================================
   BLOCO 13 - RODAPÉ
   ====================================================================== */

.site-footer
{
    padding: 46px 0 18px;
    color: #d9e6dc;
    background: #102f1e;
}

.footer-grid
{
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
    gap: 34px;
}

.footer-brand img
{
    width: 120px;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.site-footer h3
{
    margin-bottom: 14px;
    color: var(--branco);
    font-size: 0.95rem;
}

.site-footer p,
.site-footer a
{
    display: block;
    margin-bottom: 8px;
    color: #c8d7cc;
    font-size: 0.86rem;
}

.site-footer a:hover
{
    color: var(--branco);
}

.footer-bottom
{
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #aebfb3;
    font-size: 0.78rem;
}

.footer-bottom div
{
    display: flex;
    gap: 8px;
}

.footer-bottom a
{
    display: inline;
    margin: 0;
    font-size: inherit;
}

/* ======================================================================
   BLOCO 14 - BOTÕES FLUTUANTES
   ====================================================================== */

.floating-whatsapp
{
    position: fixed;
    z-index: 900;
    right: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 15px;
    border: 2px solid var(--branco);
    border-radius: 999px;
    color: var(--branco);
    background: #218b45;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.floating-whatsapp span
{
    font-size: 1.25rem;
}

.floating-whatsapp small
{
    font-size: 0.78rem;
    font-weight: 700;
}

.floating-testimonials
{
    position: fixed;
    z-index: 880;
    right: 22px;
    bottom: 82px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 13px;
    border: 1px solid var(--verde-200);
    border-radius: 999px;
    color: var(--verde-800);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--sombra-leve);
    font-size: 0.76rem;
    font-weight: 700;
}

/* ======================================================================
   BLOCO 15 - MODAL
   ====================================================================== */

.modal
{
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal.is-open
{
    display: flex;
}

.modal-backdrop
{
    position: absolute;
    inset: 0;
    background: rgba(8, 24, 14, 0.72);
    backdrop-filter: blur(4px);
}

.modal-dialog
{
    position: relative;
    z-index: 2;
    width: min(680px, 100%);
    max-height: min(760px, calc(100vh - 48px));
    padding: 38px;
    overflow-y: auto;
    border-radius: 24px;
    background: var(--branco);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.modal-close
{
    position: absolute;
    top: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    color: var(--verde-900);
    background: var(--verde-100);
    font-size: 1.5rem;
}

.modal-quote
{
    height: 42px;
    color: var(--verde-300);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 4rem;
    line-height: 1;
}

.modal-dialog h2
{
    margin-bottom: 6px;
    font-size: 2rem;
}

.modal-location
{
    margin-bottom: 22px;
    color: var(--verde-600);
    font-weight: 700;
}

.modal-text
{
    color: #35453a;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.04rem;
    line-height: 1.75;
}

.modal-disclaimer
{
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--borda);
    color: var(--texto-suave);
    font-size: 0.78rem;
}

/* ======================================================================
   BLOCO 16 - RESPONSIVIDADE TABLET
   ====================================================================== */

@media (max-width: 1080px)
{
    :root
    {
        --header-height: 76px;
    }

    .header-inner
    {
        grid-template-columns: 100px 1fr auto;
        gap: 14px;
    }

    .brand
    {
        width: 88px;
    }

    .brand img
    {
        width: 88px;
        height: 60px;
    }

    .main-nav
    {
        gap: 15px;
    }

    .main-nav a
    {
        font-size: 0.82rem;
    }

    .btn-header
    {
        padding: 10px 14px;
        font-size: 0.84rem;
    }

    .hero-grid
    {
        grid-template-columns: 1fr 0.82fr;
        gap: 36px;
    }

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

    .trg-panel
    {
        gap: 34px;
        padding: 42px;
    }

    .info-columns
    {
        grid-template-columns: 1fr;
    }

    .info-card h2
    {
        min-height: auto;
    }

    .testimonial-card
    {
        flex-basis: calc((100% - 18px) / 2);
    }
}

/* ======================================================================
   BLOCO 17 - RESPONSIVIDADE MOBILE
   ====================================================================== */

@media (max-width: 820px)
{

    /* ------------------------------------------------------------------
       SUBBLOCO 17.X - SOBRE ANA NO MOBILE
       ------------------------------------------------------------------ */

    .about-grid
    {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-photo
    {
        width: 160px;
        max-width: none;
        margin: 0 auto 16px auto;
    }

    .about-photo img
    {
        display: block;
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 18px;
        object-fit: contain;
        box-shadow: var(--sombra-leve);
    }

    :root
    {
        --header-height: 68px;
    }

    .container
    {
        width: min(100% - 32px, var(--container));
    }

    .section
    {
        padding: 58px 0;
    }

    .header-inner
    {
        position: relative;
        grid-template-columns: 1fr auto auto;
        min-height: var(--header-height);
    }

    .brand
    {
        width: 62px;
    }

    .brand img
    {
        width: 62px;
        height: 42px;
    }

    .menu-toggle
    {
        display: block;
        grid-column: 2;
    }

    .btn-header
    {
        grid-column: 3;
        min-height: 42px;
        padding: 9px 12px;
        font-size: 0;
    }

    .btn-header .btn-icon
    {
        font-size: 1.2rem;
    }

    .main-nav
    {
        position: absolute;
        top: calc(100% + 1px);
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px 16px 18px;
        border: 1px solid var(--borda);
        border-top: 0;
        border-radius: 0 0 18px 18px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--sombra-leve);
    }

    .main-nav.is-open
    {
        display: flex;
    }

    .main-nav a
    {
        padding: 12px 8px;
        font-size: 0.94rem;
    }

    .main-nav a::after
    {
        display: none;
    }

    .hero
    {
        padding: 36px 0 34px;
    }

    .hero-grid
    {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-content
    {
        max-width: 100%;
        padding-right: 0;
    }

    .hero-mobile-photo,
    .hero-mobile-only
    {
        display: block !important;
        width: 164px;
        max-width: 48%;
        margin: 6px 0 16px;
    }

    .hero-mobile-photo img,
    .hero-mobile-only img
    {
        display: block;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        border: 4px solid rgba(255, 255, 255, 0.86);
        border-radius: 18px;
        object-fit: cover;
        object-position: center 18%;
        box-shadow: var(--sombra-leve);
    }

    .hero h1
    {
        margin-bottom: 12px;
        font-size: clamp(1.18rem, 4.9vw, 1.62rem);
        line-height: 1.18;
        letter-spacing: -0.01em;
        white-space: nowrap;
    }

    .hero-lead
    {
        font-size: 1.05rem;
    }

    .hero-highlight
    {
        margin: 18px 0 22px;
    }

    .btn-large
    {
        width: 100%;
        min-height: 54px;
        padding: 13px 18px;
    }

    .hero-features
    {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 18px;
    }

    .hero-features span
    {
        padding: 8px 6px;
        border-radius: 10px;
        background: var(--verde-100);
        text-align: center;
        white-space: normal;
        font-size: 0.74rem;
    }

    .hero-photo,
    .hero-desktop-only
    {
        display: none !important;
    }

    .signal-grid
    {
        grid-template-columns: 1fr;
    }

    .signal-card
    {
        min-height: 0;
        padding: 14px 14px;
    }

    .trg-panel
    {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 30px 24px;
    }

    .trg-main
    {
        padding-right: 0;
    }

    .about-grid
    {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .testimonial-viewport
    {
        margin: 0 42px;
    }

    .testimonial-card
    {
        flex-basis: 100%;
        min-height: 320px;
    }

    .slider-arrow
    {
        width: 36px;
        height: 36px;
    }

    .final-cta-inner
    {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-grid
    {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom
    {
        flex-direction: column;
        align-items: flex-start;
    }

    .floating-testimonials
    {
        display: none;
    }

    .floating-whatsapp
    {
        right: 16px;
        bottom: 16px;
        padding: 12px 14px;
    }

    .floating-whatsapp small
    {
        display: none;
    }
}

/* ======================================================================
   BLOCO 18 - RESPONSIVIDADE MOBILE PEQUENO
   ====================================================================== */

@media (max-width: 520px)
{

    /* ------------------------------------------------------------------
       SUBBLOCO 18.X - SOBRE ANA EM CELULAR PEQUENO
       ------------------------------------------------------------------ */

    .about-photo
    {
        width: 145px;
        max-width: none;
        margin: 0 auto 14px auto;
    }

    .about-photo img
    {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 16px;
        object-fit: contain;
    }

    .container
    {
        width: min(100% - 24px, var(--container));
    }

    .section
    {
        padding: 48px 0;
    }

    h2
    {
        font-size: 1.62rem;
        line-height: 1.18;
    }

    .hero
    {
        padding-top: 26px;
    }

    .hero h1
    {
        font-size: clamp(1.12rem, 4.8vw, 1.44rem);
    }

    .hero-mobile-photo,
    .hero-mobile-only
    {
        width: 150px;
        max-width: 46%;
        margin-bottom: 14px;
    }

    .hero-content p
    {
        font-size: 0.92rem;
        line-height: 1.48;
    }

    .hero-lead
    {
        margin-bottom: 10px;
        font-size: 0.98rem;
    }

    .hero-highlight
    {
        margin: 12px 0 12px;
        font-size: 0.92rem;
    }

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

    .hero-photo
    {
        width: min(82%, 300px);
    }

    .hero-photo-frame
    {
        max-height: 315px;
    }

    .hero-photo-badge
    {
        position: static;
        margin: -14px auto 0;
        text-align: center;
    }

    .signal-card,
    .info-card
    {
        padding: 24px 20px;
    }

    .trg-panel
    {
        padding: 26px 20px;
        border-radius: 22px;
    }

    .trg-points article
    {
        grid-template-columns: 40px 1fr;
    }

    .round-icon
    {
        width: 40px;
        height: 40px;
    }

    .credential-list
    {
        display: grid;
    }

    .credential-list p
    {
        border-radius: 12px;
    }

    .testimonial-viewport
    {
        margin: 0 34px;
    }

    .testimonial-card
    {
        padding: 26px 22px;
    }

    .modal
    {
        padding: 12px;
    }

    .modal-dialog
    {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .footer-grid
    {
        grid-template-columns: 1fr;
    }

    .footer-bottom div
    {
        flex-wrap: wrap;
    }
}

/* ======================================================================
   BLOCO 19 - ACESSIBILIDADE / REDUÇÃO DE MOVIMENTO
   ====================================================================== */

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

    *,
    *::before,
    *::after
    {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


