/* ==========================================================================
   ANGELA NEVES · Landing Page (versão final)
   Paleta extraída do logotipo: sage green + brown/terracota + cream + gold
   Botão de referência: verde-escuro com texto dourado
   ========================================================================== */

:root {
    /* -------- Paleta extraída do logo -------- */
    --cream-50:  #FBF6EE;    /* Bege claríssimo (fundo principal) */
    --cream-100: #F5EDE0;    /* Bege do logo (cards, seções alt) */
    --cream-200: #EEDFC9;    /* Bege quente / hover cards */
    --cream-300: #E4CFB0;    /* Bege médio */

    --brown-900: #2E1E13;    /* Marrom escuro (texto principal) */
    --brown-800: #4A2E1D;    /* Marrom do contorno do logo */
    --brown-700: #5C3A25;    /* Marrom raízes */
    --brown-500: #7B4F35;    /* Marrom tronco */
    --brown-400: #A97455;    /* Marrom claro */

    --terra-500: #C08574;    /* Terracota da pele do logo */
    --terra-400: #D4A18F;    /* Terracota claro */
    --terra-300: #E8CBBD;    /* Terracota bem claro (bg suave) */

    --sage-700: #4A5A3A;     /* Verde escuro sage (botões — como no logo) */
    --sage-600: #5D7048;     /* Verde sage médio */
    --sage-500: #7A8B6C;     /* Verde sage das folhas */
    --sage-400: #94A48C;     /* Sage claro */
    --sage-200: #C7D0BB;     /* Sage muito claro */

    --gold-500: #C9A15C;     /* Dourado (detalhes) */
    --gold-400: #D9B77A;     /* Dourado claro */

    --white:    #FFFFFF;
    --gray-500: #7A6A5C;
    --gray-300: #C8BCB0;

    /* -------- Tipografia -------- */
    --f-display: 'DM Serif Display', 'Times New Roman', serif;
    --f-serif:   'Fraunces', Georgia, serif;
    --f-sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* -------- Layout -------- */
    --container: 1200px;
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 32px;

    --shadow-sm: 0 2px 12px rgba(74, 46, 29, 0.05);
    --shadow-md: 0 12px 30px rgba(74, 46, 29, 0.1);
    --shadow-lg: 0 30px 70px rgba(74, 46, 29, 0.15);

    --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--f-sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    color: var(--brown-900);
    background: var(--cream-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .3s var(--ease), color .3s var(--ease); }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

.visually-hidden {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

/* -------- Tipografia base -------- */
.display, .section-title, h1, h2, h3, h4 {
    font-family: var(--f-display);
    font-weight: 400;
    color: var(--brown-800);
    letter-spacing: -0.01em;
    line-height: 1.05;
}
.display {
    font-size: clamp(3rem, 7.5vw, 6rem);
    font-weight: 400;
}
.display em, .section-title em {
    font-family: var(--f-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--terra-500);
}
.display.light { color: var(--white); }
.display.light em { color: var(--gold-400); }

.section-title {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 20px;
}
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 20px;
}
.section-eyebrow::before, .section-eyebrow::after {
    content: '';
    width: 24px; height: 1px;
    background: var(--gold-500);
}
.section-eyebrow::before { display: none; }
.section-eyebrow.light { color: var(--gold-400); }
.section-eyebrow.light::after { background: var(--gold-400); }

.section-lead {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    color: var(--brown-700);
    line-height: 1.6;
    max-width: 640px;
    margin: 20px auto 0;
    text-align: center;
}

.mini-title {
    font-family: var(--f-display);
    font-size: clamp(1.5rem, 2.4vw, 2.1rem);
    color: var(--brown-800);
    margin-bottom: 20px;
    line-height: 1.15;
}
.mini-title.accent {
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--terra-500);
    font-weight: 400;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--brown-700);
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--cream-200);
    border-radius: 999px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
}
.eyebrow-plus {
    color: var(--gold-500);
    font-family: var(--f-serif);
    font-size: 1.2em;
    line-height: 0;
}

/* -------- Botões -------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    font-family: var(--f-sans);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: all .35s var(--ease);
    cursor: pointer;
    white-space: nowrap;
    line-height: 1;
}
.btn i { font-size: 1.15em; text-transform: none; }

/* Primary = verde escuro do logo com texto dourado (referência da Angela) */
.btn-primary {
    background: var(--sage-700);
    color: var(--gold-400);
    box-shadow: 0 12px 26px rgba(74, 90, 58, 0.28);
}
.btn-primary:hover {
    background: var(--sage-600);
    color: var(--gold-500);
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(74, 90, 58, 0.36);
}
.btn-primary i { color: var(--gold-400); transition: color .3s var(--ease); }
.btn-primary:hover i { color: var(--gold-500); }

.btn-ghost {
    background: transparent;
    color: var(--brown-800);
    border: 1px solid var(--brown-500);
}
.btn-ghost:hover {
    background: var(--brown-800);
    color: var(--cream-50);
    border-color: var(--brown-800);
}

.btn-sm { padding: 12px 22px; font-size: 0.78rem; }
.btn-large { padding: 22px 42px; font-size: 0.95rem; }

/* ==========================================================================
   DECORATIVE MARKS
   ========================================================================== */
.deco-mark {
    position: absolute;
    color: var(--gold-500);
    font-family: var(--f-serif);
    pointer-events: none;
    user-select: none;
    z-index: 1;
}
.deco-plus { font-size: 1.6rem; font-weight: 300; }
.deco-sparkle { font-size: 1.3rem; }
.deco-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terra-500); }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 0;
    background: rgba(251, 246, 238, 0);
    transition: all .45s var(--ease);
}
.navbar.scrolled {
    background: rgba(251, 246, 238, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 10px 0;
    box-shadow: 0 1px 0 rgba(74, 46, 29, 0.06);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.brand-logo {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--cream-100);
    padding: 4px;
    box-shadow: 0 2px 10px rgba(74, 46, 29, 0.1);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-family: var(--f-display);
    font-size: 1.25rem;
    color: var(--brown-800);
    letter-spacing: 0.01em;
}
.brand-role {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 0.75rem;
    color: var(--terra-500);
    letter-spacing: 0.02em;
}

.nav-links { display: flex; gap: 26px; }
.nav-links a {
    font-size: 0.85rem;
    color: var(--brown-800);
    font-weight: 400;
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold-500);
    transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--brown-700); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px; padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--brown-800);
    border-radius: 2px;
    transition: all .3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: 320px; max-width: 88vw;
    height: 100vh;
    background: var(--cream-50);
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    transform: translateX(100%);
    transition: transform .5s var(--ease);
    box-shadow: -20px 0 60px rgba(74, 46, 29, 0.12);
    z-index: 90;
    overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
    font-family: var(--f-display);
    font-size: 1.15rem;
    color: var(--brown-800);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    padding: 160px 0 60px;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(192, 133, 116, 0.14), transparent 55%),
        radial-gradient(ellipse at 85% 70%, rgba(122, 139, 108, 0.12), transparent 55%),
        var(--cream-50);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-copy .display {
    margin-bottom: 8px;
    position: relative;
}
.hero-copy em {
    display: inline-block;
    color: var(--terra-500);
}
.swash {
    display: block;
    margin-top: 6px;
    width: min(260px, 60%);
    height: 20px;
    color: var(--gold-500);
}
.hero-sub {
    font-family: var(--f-serif);
    font-size: clamp(1.15rem, 1.6vw, 1.4rem);
    color: var(--brown-800);
    max-width: 480px;
    margin-top: 28px;
    line-height: 1.4;
    font-weight: 500;
}
.hero-slogan {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 1.15rem;
    color: var(--terra-500);
    margin-top: 14px;
    line-height: 1.4;
}
.hero-cta {
    margin-top: 40px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* -------- Foto do hero -------- */
.hero-visual {
    position: relative;
    aspect-ratio: 4 / 5;
    max-width: 480px;
    width: 100%;
    justify-self: center;
}
.hero-photo-frame {
    position: relative;
    width: 100%;
    height: 100%;
    /* Formato orgânico blob */
    border-radius: 44% 56% 46% 54% / 50% 44% 56% 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--terra-300), var(--cream-200));
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.hero-photo-frame::after {
    content: '';
    position: absolute;
    inset: -18px;
    border: 1px solid var(--gold-500);
    border-radius: inherit;
    opacity: 0.35;
    z-index: -1;
    transform: translate(14px, 14px);
    pointer-events: none;
}
.hero-photo-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 1.2s var(--ease);
}
.hero-visual:hover .hero-photo-frame img { transform: scale(1.04); }

.hero-logo-badge {
    position: absolute;
    bottom: -8px; right: 8px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--white);
    padding: 8px;
    box-shadow: var(--shadow-md);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.tape {
    position: absolute;
    width: 50px; height: 14px;
    background: var(--cream-200);
    z-index: 3;
    opacity: 0.9;
}
.tape-1 { top: 24px; left: 30%; transform: rotate(-8deg); background: var(--cream-300); }
.tape-2 { top: 10px; right: 24%; transform: rotate(12deg); background: var(--terra-300); }
.tape-3 { top: 40px; right: 8%; transform: rotate(-5deg); background: var(--cream-200); }

.photo-deco { z-index: 4; font-size: 1.5rem; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* -------- Marquee -------- */
.hero-marquee {
    margin-top: 80px;
    padding: 22px 0;
    border-top: 1px solid var(--cream-200);
    border-bottom: 1px solid var(--cream-200);
    overflow: hidden;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}
.marquee-track {
    display: flex;
    gap: 46px;
    animation: marquee 32s linear infinite;
    white-space: nowrap;
    width: max-content;
}
.marquee-track span {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 1.5rem;
    color: var(--brown-700);
    letter-spacing: 0.01em;
}
.mq-sep { color: var(--gold-500); font-style: normal !important; }
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   SECTIONS BASE
   ========================================================================== */
.section {
    padding: 110px 0;
    position: relative;
}
.section-alt {
    background:
        radial-gradient(ellipse at top, rgba(238, 223, 201, 0.5), transparent 60%),
        var(--cream-100);
}
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.section-head .section-eyebrow::after {
    display: none;
}
.section-head .section-eyebrow::before {
    display: block;
    width: 24px; height: 1px;
    background: var(--gold-500);
}

/* ==========================================================================
   SOBRE
   ========================================================================== */
.section-sobre { padding-top: 90px; }
.sobre-band {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: end;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--cream-200);
    margin-bottom: 48px;
}
.sobre-loc {
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--brown-700);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
}
.sobre-loc i { color: var(--gold-500); font-size: 1.3rem; font-style: normal; }
.sobre-loc strong { color: var(--brown-800); font-style: normal; font-weight: 500; }

.sobre-explain h3 { margin-bottom: 28px; text-align: center; }
.sobre-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    max-width: 1000px;
    margin: 0 auto;
}
.sobre-columns p {
    color: var(--brown-700);
    font-size: 1rem;
    line-height: 1.75;
}
.sobre-columns em {
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--brown-800);
    font-weight: 400;
}

/* ==========================================================================
   QUEM SOU
   ========================================================================== */
.quem-sou { padding: 120px 0; }
.quem-sou-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.15fr;
    gap: 80px;
    align-items: start;
}
.quem-sou-photo {
    position: relative;
    aspect-ratio: 4/5;
}
.qs-frame {
    width: 100%; height: 100%;
    border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
    overflow: hidden;
    background: var(--terra-300);
    box-shadow: var(--shadow-lg);
}
.qs-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
}
.qs-badge {
    position: absolute;
    bottom: 24px; left: -20px;
    background: var(--white);
    padding: 12px 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 0.95rem;
    color: var(--brown-800);
    box-shadow: var(--shadow-md);
}
.qs-badge i { color: var(--terra-500); font-size: 1.2rem; }

.quem-sou-copy .section-title { margin-bottom: 32px; }

.rich-text p {
    margin-bottom: 20px;
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--brown-700);
}
.rich-text em {
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--brown-800);
}
.rich-text strong { color: var(--brown-900); font-weight: 500; }

.drop-cap {
    float: left;
    font-family: var(--f-display);
    font-size: 4.5rem;
    line-height: 0.85;
    padding-right: 12px;
    padding-top: 6px;
    color: var(--terra-500);
}

.pullquote {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 1.3rem !important;
    line-height: 1.5 !important;
    color: var(--terra-500) !important;
    padding: 20px 0 20px 24px;
    border-left: 2px solid var(--gold-500);
    margin: 24px 0;
}
.pullquote em { color: var(--brown-800); font-weight: 500; }

.signature {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    color: var(--gold-500);
}
.signature svg { width: 180px; }
.signature small {
    color: var(--brown-500);
    font-family: var(--f-serif);
    font-style: italic;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   GALLERY (Nosso Espaço)
   ========================================================================== */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 18px;
}
.g-item {
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    background: var(--cream-200);
}
.g-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.1s var(--ease), filter .6s var(--ease);
}
.g-item:hover img { transform: scale(1.06); filter: brightness(1.05); }
.g-large { grid-column: span 2; grid-row: span 2; }
.g-wide  { grid-column: span 2; }

/* ==========================================================================
   ABORDAGEM + VÍDEO
   ========================================================================== */
.abordagem {
    background:
        radial-gradient(ellipse at 90% 20%, rgba(199, 208, 187, 0.35), transparent 55%),
        var(--cream-50);
}
.abordagem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.abord-copy p {
    margin-bottom: 16px;
    font-size: 1.02rem;
    color: var(--brown-700);
    line-height: 1.75;
}
.abord-copy em {
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--brown-800);
}

/* Card do vídeo */
.video-card { position: relative; }
.video-launch {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--brown-800);
    transition: transform .5s var(--ease);
}
.video-launch:hover { transform: translateY(-6px) scale(1.01); }

.video-cover {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease), filter .5s var(--ease);
    filter: brightness(0.75) saturate(0.95);
}
.video-launch:hover .video-cover { transform: scale(1.05); filter: brightness(0.65); }

.video-play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 92px; height: 92px;
    border-radius: 50%;
    background: var(--sage-700);
    color: var(--gold-400);
    display: grid; place-items: center;
    font-size: 2.4rem;
    box-shadow: 0 20px 40px rgba(74, 90, 58, 0.5);
    transition: transform .4s var(--ease), background .4s var(--ease);
}
.video-play::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.4);
    animation: pulseRing 2.2s ease-out infinite;
}
.video-launch:hover .video-play {
    transform: translate(-50%, -50%) scale(1.08);
    background: var(--sage-600);
}
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

.video-label {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: var(--white);
    text-align: left;
}
.video-label small {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold-400);
    font-weight: 500;
}
.video-label strong {
    font-family: var(--f-display);
    font-size: 1.35rem;
    line-height: 1.15;
    font-weight: 400;
}

.reich-quote {
    margin-top: 32px;
    padding: 26px 28px;
    background: var(--white);
    border-left: 3px solid var(--gold-500);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.reich-quote p {
    font-family: var(--f-serif);
    font-size: 1.25rem;
    line-height: 1.4;
    color: var(--brown-800);
    margin-bottom: 8px;
    font-style: italic;
}
.reich-quote footer {
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-500);
    font-weight: 500;
}

/* ==========================================================================
   MOMENTO (Quando procurar)
   ========================================================================== */
.momento-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}
.momento-intro p {
    color: var(--brown-700);
    margin-bottom: 16px;
    font-size: 1.02rem;
    line-height: 1.75;
}
.momento-quote {
    font-family: var(--f-serif) !important;
    font-style: italic;
    font-size: 1.4rem !important;
    color: var(--terra-500) !important;
    margin-top: 28px !important;
    line-height: 1.4;
}

.momento-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.momento-list li {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    padding: 24px 4px;
    border-bottom: 1px solid var(--cream-200);
    align-items: start;
    transition: padding .35s var(--ease);
}
.momento-list li:hover { padding-left: 16px; }
.momento-list li:last-child { border-bottom: none; }

.m-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, var(--terra-300), var(--cream-200));
    color: var(--brown-800);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.momento-list strong {
    display: block;
    font-family: var(--f-display);
    font-size: 1.25rem;
    color: var(--brown-800);
    margin-bottom: 4px;
    font-weight: 400;
}
.momento-list p {
    color: var(--brown-700);
    font-size: 0.95rem;
    line-height: 1.65;
}

.momento-footnote {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 60px;
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--brown-500);
    font-size: 1rem;
}

/* ==========================================================================
   PILLARS (Cuidado)
   ========================================================================== */
.pillars {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.pillar {
    padding: 40px 28px;
    background: var(--cream-100);
    border-radius: var(--radius-md);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all .5s var(--ease);
    border: 1px solid transparent;
}
.pillar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-500), var(--terra-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .55s var(--ease);
}
.pillar:hover {
    transform: translateY(-6px);
    background: var(--white);
    border-color: var(--cream-200);
    box-shadow: var(--shadow-md);
}
.pillar:hover::before { transform: scaleX(1); }

.pillar-num {
    display: block;
    font-family: var(--f-serif);
    font-style: italic;
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--gold-500);
    line-height: 1;
    margin-bottom: 20px;
}
.pillar h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--brown-800);
}
.pillar p {
    color: var(--brown-700);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ==========================================================================
   MODALIDADES
   ========================================================================== */
.mod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.mod-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .5s var(--ease);
    border: 1px solid var(--cream-200);
}
.mod-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.mod-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}
.mod-body { padding: 32px 36px 36px; }
.mod-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--sage-700);
    font-weight: 600;
    margin-bottom: 14px;
}
.mod-tag i { font-size: 1.1rem; }
.mod-card h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.mod-card p {
    color: var(--brown-700);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 10px;
}
.mod-loc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--gold-500);
    margin-top: 6px;
}

/* ==========================================================================
   SERVIÇOS
   ========================================================================== */
.serv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.serv-card {
    padding: 44px 40px;
    background: var(--cream-100);
    border-radius: var(--radius-md);
    transition: all .5s var(--ease);
    border: 1px solid transparent;
}
.serv-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: var(--cream-200);
    transform: translateY(-4px);
}
.serv-icon {
    width: 60px; height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--sage-500), var(--sage-700));
    color: var(--gold-400);
    display: grid; place-items: center;
    font-size: 1.7rem;
    margin-bottom: 24px;
}
.serv-card h3 { font-size: 1.6rem; margin-bottom: 14px; }
.serv-card p {
    color: var(--brown-700);
    line-height: 1.75;
}
.serv-cta { text-align: center; margin-top: 44px; }

/* ==========================================================================
   TIMELINE (Como começar)
   ========================================================================== */
.section-timeline {
    background:
        radial-gradient(ellipse at 50% 30%, rgba(232, 203, 189, 0.3), transparent 55%),
        var(--cream-50);
}
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 30px; bottom: 30px;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-400), var(--terra-500), var(--brown-500));
    transform: translateX(-50%);
    border-radius: 2px;
}
.tl-item {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 60px 1fr;
    align-items: center;
    margin-bottom: 40px;
    min-height: 60px;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
    grid-column: 2;
    width: 44px; height: 44px;
    justify-self: center;
    background: var(--sage-700);
    color: var(--gold-400);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 1.2rem;
    box-shadow: 0 10px 24px rgba(74, 90, 58, 0.35);
    z-index: 2;
    position: relative;
}
.tl-dot::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid var(--gold-400);
    opacity: 0.4;
}
.tl-card {
    background: var(--white);
    border: 1px solid var(--cream-200);
    padding: 24px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all .4s var(--ease);
    position: relative;
}
.tl-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold-400);
}
.tl-right .tl-card { grid-column: 3; }
.tl-left .tl-card { grid-column: 1; text-align: right; }

.tl-num {
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--gold-500);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 6px;
}
.tl-card h3 {
    font-size: 1.5rem;
    color: var(--brown-800);
    margin-bottom: 8px;
}
.tl-card p {
    color: var(--brown-700);
    font-size: 0.95rem;
    line-height: 1.6;
}

.tl-cta { text-align: center; margin-top: 60px; }

/* ==========================================================================
   ATENDIMENTOS
   ========================================================================== */
.atend-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.atend-card {
    background: var(--white);
    padding: 36px 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--cream-200);
    transition: all .5s var(--ease);
    position: relative;
    overflow: hidden;
}
.atend-card::after {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--terra-300), transparent 70%);
    opacity: 0.5;
    transition: transform .8s var(--ease);
}
.atend-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--terra-400);
}
.atend-card:hover::after { transform: scale(1.3); }

.atend-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--terra-300);
    color: var(--brown-800);
    display: grid; place-items: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
    transition: background .4s var(--ease);
}
.atend-card:hover .atend-icon {
    background: var(--sage-700);
    color: var(--gold-400);
}
.atend-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}
.atend-card p {
    color: var(--brown-700);
    font-size: 0.95rem;
    line-height: 1.65;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   AVALIAÇÕES
   ========================================================================== */
.google-rating { display: flex; justify-content: center; margin-top: 22px; }
.g-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 14px 22px;
    background: var(--white);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.g-logo {
    width: 44px; height: 44px;
    background: var(--cream-50);
    border-radius: 50%;
    display: grid; place-items: center;
}
.g-title {
    display: block;
    font-size: 0.7rem;
    color: var(--brown-500);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 500;
}
.g-stars {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}
.g-stars strong {
    font-family: var(--f-display);
    font-size: 1.5rem;
    color: var(--brown-800);
}
.g-stars .stars { color: var(--gold-500); font-size: 0.95rem; }
.g-stars small { color: var(--brown-500); font-size: 0.82rem; }
.stars { display: inline-flex; gap: 2px; color: var(--gold-500); }

.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 20px;
}
.review {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--cream-200);
    transition: all .4s var(--ease);
}
.review:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.r-head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    color: var(--white);
    font-family: var(--f-display);
    font-size: 1.2rem;
    display: grid; place-items: center;
}
.r-head strong {
    display: block;
    font-family: var(--f-display);
    font-size: 1.05rem;
    color: var(--brown-800);
}
.r-head small { color: var(--brown-500); font-size: 0.78rem; }
.r-google {
    width: 26px; height: 26px;
    background: var(--cream-50);
    border-radius: 50%;
    display: grid; place-items: center;
}
.review > .stars { margin: 8px 0 14px; }
.review p {
    font-family: var(--f-serif);
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--brown-800);
    font-style: italic;
}
.reviews-cta { text-align: center; margin-top: 48px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
.faq-intro { position: sticky; top: 120px; }
.faq-intro p { color: var(--brown-700); margin: 20px 0 28px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-md);
    padding: 4px 28px;
    transition: all .35s var(--ease);
    overflow: hidden;
}
.faq-item[open] {
    border-color: var(--sage-500);
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--f-display);
    font-size: 1.2rem;
    color: var(--brown-800);
    gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-toggle {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--cream-100);
    color: var(--sage-700);
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: all .35s var(--ease);
}
.faq-item[open] .faq-toggle {
    background: var(--sage-700);
    color: var(--gold-400);
    transform: rotate(45deg);
}
.faq-item p {
    padding: 0 0 24px;
    color: var(--brown-700);
    line-height: 1.7;
    font-size: 0.98rem;
}

/* ==========================================================================
   CTA FINAL
   ========================================================================== */
.cta-final {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    color: var(--white);
}
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(46, 30, 19, 0.85), rgba(74, 90, 58, 0.82));
}
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}
.cta-lede {
    font-family: var(--f-serif);
    font-style: italic;
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    color: rgba(255,255,255,0.85);
    margin: 20px 0 40px;
    line-height: 1.5;
}
.cta-tag {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    font-weight: 500;
}
.cta-diamond { color: var(--gold-400); }

/* ==========================================================================
   CONTATO
   ========================================================================== */
.contact-section { background: var(--cream-50); padding-top: 100px; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: start;
}
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin: 32px 0 36px;
}
.contact-list li {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    align-items: start;
}
.c-icon {
    width: 52px; height: 52px;
    background: var(--cream-100);
    color: var(--sage-700);
    border-radius: 14px;
    display: grid; place-items: center;
    font-size: 1.4rem;
}
.contact-list strong {
    display: block;
    font-family: var(--f-display);
    font-size: 1.15rem;
    color: var(--brown-800);
    margin-bottom: 4px;
}
.contact-list p, .contact-list a {
    color: var(--brown-700);
    font-size: 0.96rem;
    line-height: 1.6;
}
.contact-list a { color: var(--sage-700); font-weight: 500; }
.contact-list a:hover { color: var(--brown-800); }
.hours {
    width: 100%; border-collapse: collapse;
    font-size: 0.9rem; margin-top: 4px;
}
.hours td { padding: 3px 0; color: var(--brown-700); }
.hours td:last-child { text-align: right; color: var(--brown-800); font-weight: 500; }

.contact-map {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contact-map iframe {
    width: 100%;
    aspect-ratio: 4/3;
    border: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    filter: grayscale(0.1) contrast(0.98);
}
.contact-photo {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 16/9;
}
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--brown-900);
    color: rgba(255,255,255,0.72);
    padding: 80px 0 24px;
}
.footer .brand { color: var(--white); margin-bottom: 20px; }
.footer .brand-name { color: var(--white); }
.footer .brand-role { color: var(--gold-400); }
.footer .brand-logo {
    background: var(--cream-100);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-slogan {
    font-family: var(--f-serif);
    font-style: italic;
    color: var(--gold-400);
    line-height: 1.4;
    margin-bottom: 10px;
}
.footer-crp {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.05em;
}
.footer h4 {
    font-family: var(--f-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
}
.footer ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer ul li i { color: var(--gold-400); }
.footer ul li a { color: rgba(255,255,255,0.72); }
.footer ul li a:hover { color: var(--gold-400); }

.social { display: flex; gap: 12px; }
.social li { margin: 0; }
.social a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: var(--white) !important;
    font-size: 1.1rem;
    transition: all .3s var(--ease);
}
.social a:hover {
    background: var(--gold-500);
    color: var(--brown-900) !important;
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 8px;
}

/* ==========================================================================
   WHATSAPP FLOAT
   ========================================================================== */
.whatsapp-float {
    position: fixed;
    right: 24px; bottom: 24px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: grid; place-items: center;
    font-size: 1.8rem;
    z-index: 50;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: all .3s var(--ease);
    animation: pulseWa 2.5s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.55);
}
@keyframes pulseWa {
    0%   { box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.45); }
    70%  { box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 18px rgba(37,211,102,0); }
    100% { box-shadow: 0 10px 30px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* ==========================================================================
   VIDEO MODAL
   ========================================================================== */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s var(--ease);
}
.video-modal.open {
    opacity: 1;
    pointer-events: auto;
}
.video-modal[hidden] { display: none !important; }

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(30, 15, 8, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-modal-card {
    position: relative;
    z-index: 2;
    width: min(1000px, 100%);
    max-height: 90vh;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
    transform: scale(0.94);
    transition: transform .4s var(--ease);
}
.video-modal.open .video-modal-card { transform: scale(1); }

.video-modal-close {
    position: absolute;
    top: 12px; right: 12px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    color: var(--white);
    display: grid; place-items: center;
    font-size: 1.3rem;
    z-index: 3;
    transition: background .3s var(--ease);
}
.video-modal-close:hover { background: rgba(255,255,255,0.28); }

.video-modal video {
    width: 100%;
    max-height: 88vh;
    display: block;
    background: #000;
}

/* body lock while modal open */
body.modal-open { overflow: hidden; }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ==========================================================================
   RESPONSIVE — refactor completo, 3 breakpoints
   ========================================================================== */

/* Anti-overflow global — 3 camadas: hidden no root + max-width + clip */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}
img, iframe, video { max-width: 100%; height: auto; }

/* Overflow: clip nas sections principais (garante que absolutos filhos não estourem) */
.hero, .section, .cta-final, .footer, .navbar { overflow-x: clip; }

/* Fix crítico: filhos de grid/flex precisam min-width:0 pra respeitar 1fr.
   Sem isso, texto/imagem longos empurram o grid e causam scroll horizontal. */
.hero-grid > *,
.quem-sou-grid > *,
.abordagem-grid > *,
.momento-grid > *,
.faq-grid > *,
.contact-grid > *,
.sobre-band > *,
.sobre-columns > *,
.pillars > *,
.areas-grid > *,
.atend-grid > *,
.reviews > *,
.mod-grid > *,
.serv-grid > *,
.footer-grid > * { min-width: 0; }

/* Títulos grandes: quebra suave se palavra for muito longa */
.display, .section-title, .hero-copy .display, .cta-content .display {
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

/* ---------- Tablet + Mobile grande (até 1024px) ---------- */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }

    /* Navbar: esconde links + botão CTA, mostra hamburguer */
    .nav-links,
    .nav-inner > .btn-primary { display: none; }
    .nav-toggle { display: flex; }
    .nav-inner { gap: 16px; }

    /* Grids em coluna única */
    .hero-grid,
    .quem-sou-grid,
    .abordagem-grid,
    .momento-grid,
    .faq-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }

    .hero-visual { max-width: 420px; margin: 0 auto; }
    .hero-logo-badge { width: 80px; height: 80px; }

    .sobre-band { grid-template-columns: 1fr; gap: 24px; align-items: start; }
    .sobre-columns { grid-template-columns: 1fr; gap: 24px; }

    .pillars { grid-template-columns: repeat(2, 1fr); }
    .mod-grid,
    .serv-grid { grid-template-columns: 1fr; }
    .atend-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews { grid-template-columns: 1fr; max-width: 640px; margin: 20px auto 0; }
    .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .g-large, .g-wide { grid-column: span 2; }

    .faq-intro { position: static; }

    /* Timeline: dot à esquerda, cards à direita */
    .timeline::before { left: 22px; }
    .tl-item { grid-template-columns: 44px 1fr; gap: 20px; }
    .tl-dot { grid-column: 1; justify-self: start; }
    .tl-right .tl-card, .tl-left .tl-card { grid-column: 2; text-align: left; }
}

/* ---------- Mobile (até 720px) ---------- */
@media (max-width: 720px) {
    .container { padding: 0 20px; }
    .section { padding: 72px 0; }

    /* Marca da navbar mais compacta */
    .brand-logo { width: 40px; height: 40px; }
    .brand-name { font-size: 1rem; }
    .brand-role { font-size: 0.68rem; }

    /* Hero */
    .hero { padding: 120px 0 40px; }
    .display { font-size: clamp(2.6rem, 12vw, 3.6rem); line-height: 1; }
    .hero-sub {
        font-size: 1.05rem;
        max-width: 100%;
        margin-top: 22px;
        line-height: 1.45;
    }
    .hero-slogan { font-size: 1rem; }
    .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-visual { max-width: 340px; }
    .hero-logo-badge { width: 70px; height: 70px; right: 4px; bottom: -4px; }
    /* Esconde marcas decorativas soltas que estouram o layout */
    .hero > .deco-mark { display: none; }
    .photo-deco { display: none; }
    .tape { display: none; }

    /* Marquee mais leve */
    .marquee-track { gap: 30px; }
    .marquee-track span { font-size: 1.05rem; }
    .hero-marquee { margin-top: 48px; padding: 16px 0; }

    /* Section titles + text */
    .section-title { font-size: clamp(1.7rem, 6vw, 2.4rem); }
    .section-head { margin-bottom: 44px; }
    .mini-title { font-size: 1.35rem; }

    /* Sobre */
    .sobre-band { padding-bottom: 28px; margin-bottom: 32px; }
    .sobre-loc { font-size: 0.95rem; }

    /* Quem sou */
    .quem-sou-photo { aspect-ratio: 5/6; }
    .qs-badge {
        left: 0; right: auto; bottom: 12px;
        font-size: 0.85rem; padding: 10px 16px;
    }
    .drop-cap { font-size: 3rem; padding-right: 8px; padding-top: 4px; }
    .pullquote { font-size: 1.1rem !important; padding: 14px 0 14px 18px; }

    /* Pillars + atendimentos em coluna única */
    .pillars,
    .atend-grid { grid-template-columns: 1fr; }
    .pillar, .atend-card { padding: 32px 24px; }
    .pillar h3, .atend-card h3 { font-size: 1.35rem; }

    /* Modalidades */
    .mod-body { padding: 24px 24px 28px; }
    .mod-card h3 { font-size: 1.5rem; }

    /* Serviços */
    .serv-card { padding: 32px 24px; }
    .serv-card h3 { font-size: 1.35rem; }

    /* Momento (lista com ícone) */
    .momento-list li {
        grid-template-columns: 48px 1fr;
        gap: 14px; padding: 20px 4px;
    }
    .m-icon { width: 44px; height: 44px; font-size: 1.25rem; }
    .momento-list strong { font-size: 1.1rem; }
    .momento-quote { font-size: 1.2rem !important; }

    /* Timeline mais compacta */
    .tl-item { grid-template-columns: 36px 1fr; gap: 14px; }
    .timeline::before { left: 18px; }
    .tl-dot { width: 36px; height: 36px; font-size: 1rem; }
    .tl-card { padding: 20px 22px; }
    .tl-card h3 { font-size: 1.25rem; }

    /* Galeria */
    .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: 12px; }
    .g-large, .g-wide { grid-column: auto; grid-row: auto; }

    /* Vídeo */
    .video-launch { aspect-ratio: 3/4; }
    .video-play { width: 68px; height: 68px; font-size: 1.7rem; }
    .video-label { bottom: 18px; left: 18px; right: 18px; }
    .video-label strong { font-size: 1.1rem; }
    .reich-quote { padding: 20px 22px; }
    .reich-quote p { font-size: 1.1rem; }

    /* FAQ */
    .faq-item { padding: 4px 20px; }
    .faq-item summary { font-size: 1.05rem; padding: 18px 0; }

    /* Avaliações */
    .review { padding: 24px 22px; }
    .review p { font-size: 1rem; }
    .g-badge { padding: 12px 16px; gap: 12px; }
    .g-stars strong { font-size: 1.3rem; }

    /* CTA final */
    .cta-final { padding: 100px 0; }
    .cta-lede { font-size: 1.05rem; }
    .cta-tag { gap: 8px; font-size: 0.6rem; letter-spacing: 0.2em; }

    /* Contato */
    .contact-list li { grid-template-columns: 44px 1fr; gap: 14px; }
    .c-icon { width: 44px; height: 44px; font-size: 1.15rem; }

    /* Footer */
    .footer { padding: 60px 0 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; padding: 24px 0 0; }

    /* WhatsApp flutuante */
    .whatsapp-float {
        width: 54px; height: 54px; font-size: 1.55rem;
        right: 16px; bottom: 16px;
    }

    /* Menu mobile ocupa quase tudo */
    .mobile-menu { width: 100%; max-width: 100%; padding-top: 90px; }
}

/* ---------- Mobile pequeno (até 480px) ---------- */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .brand-role { display: none; }
    .brand-logo { width: 38px; height: 38px; }
    .brand-name { font-size: 0.95rem; }

    .hero { padding: 110px 0 32px; }
    .display { font-size: clamp(2.4rem, 13vw, 3rem); }
    .eyebrow { font-size: 0.75rem; padding: 6px 14px; }

    .section-title { font-size: clamp(1.6rem, 8vw, 2.1rem); }
    .section-eyebrow { font-size: 0.68rem; letter-spacing: 0.22em; }

    /* Botões em mobile pequeno */
    .btn { padding: 14px 24px; font-size: 0.82rem; letter-spacing: 0.05em; }
    .btn-large { padding: 18px 28px; font-size: 0.88rem; }

    /* Galeria menor pra caber mais rápido */
    .gallery { grid-auto-rows: 190px; }

    /* Video */
    .video-label small { font-size: 0.65rem; letter-spacing: 0.2em; }
    .video-label strong { font-size: 1rem; }

    /* CTA tag: cada palavra em linha própria fica mais legível */
    .cta-tag { flex-direction: column; gap: 6px; }
    .cta-diamond { display: none; }
}

/* ---------- Preferência reduzida de movimento ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}
