/* ============================================================
   DRA. ADRIANA DO RIO BRANCO — DESIGN EDITORIAL PREMIUM
   Paleta: #7D1F1F | #C4826A | #E8B5A0 | #FDF8F5
============================================================ */

:root {
    --burgundy:      #7D1F1F;
    --burgundy-dark: #5C1616;
    --salmon:        #C4826A;
    --rose:          #E8B5A0;
    --cream:         #FDF8F5;
    --cream-2:       #F5EBE4;
    --cream-3:       #EDD9CF;
    --dark:          #1A0E0A;
    --mid:           #4A2518;
    --light:         #9C6B56;
    --white:         #FFFFFF;
    --border:        rgba(125,31,31,0.12);
    --border-light:  rgba(255,255,255,0.15);
    --shadow:        0 2px 24px rgba(26,14,10,0.08);
    --shadow-md:     0 8px 40px rgba(26,14,10,0.12);
    --r:             4px;
    --t:             all 0.3s ease;
}

/* ====== BASE ====== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ====== TIPOGRAFIA ====== */
h1, h2, h3, h4, em {
    font-family: 'Cormorant Garamond', serif;
}
h1 {
    font-size: clamp(3.2rem, 5.5vw, 5.5rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.02em;
}
h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--rose);
}
h2 {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--burgundy);
}
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--burgundy);
    margin-bottom: 14px;
    line-height: 1.25;
}
.lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--mid);
    margin-bottom: 20px;
}
p {
    font-size: 0.97rem;
    line-height: 1.8;
    color: var(--mid);
    margin-bottom: 16px;
}
p:last-child { margin-bottom: 0; }

/* ====== LABELS ====== */
.label-line {
    width: 36px;
    height: 1px;
    background: var(--salmon);
    margin-bottom: 12px;
}
.label-line.light { background: rgba(232,181,160,0.6); }
.label-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--salmon);
    margin-bottom: 20px !important;
}
.label-text.light { color: var(--rose); opacity: 0.8; }

/* ====== CONTAINER ====== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ====== BOTÕES ====== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--burgundy);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: background 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.06);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.btn-primary:hover {
    background: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(92,22,22,0.35);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: translateY(0); }
.btn-primary.btn-large {
    padding: 16px 36px;
    font-size: 0.95rem;
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    color: rgba(255,255,255,0.75);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    transition: var(--t);
}
.btn-ghost:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 400;
    padding: 14px 30px;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 2px;
    transition: var(--t);
    letter-spacing: 0.3px;
}
.btn-outline:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.6);
}

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(61, 12, 12, 0.97);
    height: 76px;
    transition: height 0.4s cubic-bezier(0.4,0,0.2,1),
                background 0.4s ease,
                box-shadow 0.4s ease;
    will-change: height;
}
#navbar.scrolled {
    height: 62px;
    background: rgba(35, 7, 7, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 8px 32px rgba(0,0,0,0.35);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-links a {
    font-size: 0.83rem;
    font-weight: 400;
    color: rgba(255,255,255,0.72);
    letter-spacing: 0.4px;
    transition: color 0.25s ease, opacity 0.25s ease;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 1px;
    background: var(--rose);
    transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta::after { display: none; }
.nav-cta {
    background: rgba(196,130,106,0.18) !important;
    color: var(--rose) !important;
    padding: 9px 20px !important;
    border: 1px solid rgba(196,130,106,0.35) !important;
    border-radius: 2px !important;
    font-weight: 500 !important;
    transition: var(--t) !important;
}
.nav-cta:hover {
    background: rgba(196,130,106,0.3) !important;
    color: var(--white) !important;
    border-color: rgba(196,130,106,0.6) !important;
}
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.menu-btn span {
    display: block;
    width: 22px; height: 1.5px;
    background: rgba(255,255,255,0.8);
    border-radius: 1px;
    transition: var(--t);
}
.menu-btn.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================
   HERO — SPLIT LAYOUT
============================================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 76px;
}
.hero-left {
    background: var(--burgundy);
    display: flex;
    align-items: center;
    padding: 80px 64px 80px 0;
    position: relative;
    overflow: hidden;
}
.hero-left::before {
    content: '';
    position: absolute;
    top: -20%; right: -30%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(196,130,106,0.1) 0%, transparent 60%);
    pointer-events: none;
}
.hero-left-inner {
    max-width: 560px;
    margin-left: auto;
    padding-left: 40px;
    position: relative;
    z-index: 1;
}
/* ====== LOGO NO HERO ====== */
.hero-logo {
    display: inline-block;
    margin-bottom: 40px;
}
.hero-logo img {
    height: 145px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: brightness(1.25) contrast(1.05) drop-shadow(0 2px 16px rgba(0,0,0,0.45));
}

.eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(232,181,160,0.7);
    margin-bottom: 24px;
}
.hero-left-inner h1 {
    color: var(--white);
    margin-bottom: 28px;
}
.hero-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.75;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.hero-numbers {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.num-item { text-align: left; }
.num-item strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}
.num-item span {
    font-size: 0.75rem;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}
.num-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
}

/* Hero — foto */
.hero-right {
    position: relative;
    overflow: hidden;
    background: var(--cream-2);
}
.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.hero-photo-label {
    position: absolute;
    bottom: 32px;
    left: 32px;
    background: rgba(26,14,10,0.65);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 14px 20px;
    border-radius: 2px;
}
.hero-photo-label span {
    display: block;
    font-size: 0.88rem;
    color: var(--white);
    font-weight: 500;
    letter-spacing: 0.3px;
}
.label-sub {
    font-size: 0.75rem !important;
    color: rgba(255,255,255,0.55) !important;
    margin-top: 2px;
}

/* ============================================================
   SOBRE
============================================================ */
.sobre {
    padding: 120px 0;
    background: var(--cream);
}
.sobre-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 80px;
    align-items: start;
}
.sobre-label {
    padding-top: 8px;
}
.sobre-label p {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--salmon);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    margin-bottom: 0;
}
.sobre-body h2 { margin-bottom: 28px; }
.sobre-body .btn-primary { margin-top: 36px; }

/* ============================================================
   FAIXA TICKER
============================================================ */
.faixa {
    background: var(--burgundy);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faixa-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    width: max-content;
    animation: ticker 28s linear infinite;
}
.faixa-inner span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(232,181,160,0.75);
    letter-spacing: 0.5px;
}
.faixa-dot {
    width: 4px !important;
    height: 4px !important;
    background: rgba(196,130,106,0.5) !important;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0 !important;
}
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   ÁREAS DE ATUAÇÃO
============================================================ */
.atuacao {
    padding: 120px 0;
    background: var(--cream-2);
}
.section-header {
    margin-bottom: 72px;
}
.section-header h2 {
    max-width: 520px;
    margin-top: 8px;
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}
.area-card {
    background: var(--cream);
    padding: 48px 36px;
    position: relative;
    transition: var(--t);
}
.area-card::before {
    content: attr(data-num);
    position: absolute;
    top: 28px; right: 28px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--cream-3);
    line-height: 1;
    transition: var(--t);
}
.area-card:hover {
    background: var(--white);
    box-shadow: 0 12px 40px rgba(26,14,10,0.08);
}
.area-card:hover::before {
    color: rgba(196,130,106,0.2);
}
.area-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.area-card p {
    font-size: 0.91rem;
    line-height: 1.75;
    position: relative;
    z-index: 1;
}

/* ============================================================
   RECONHECIMENTOS
============================================================ */
.reconhecimentos {
    padding: 120px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}
.reconhecimentos::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 10% 50%, rgba(196,130,106,0.08) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 20%, rgba(92,22,22,0.5) 0%, transparent 55%);
    pointer-events: none;
}
.reconh-header {
    max-width: 640px;
    margin-bottom: 72px;
    position: relative;
    z-index: 1;
}
.reconh-header h2 { color: var(--white); }
.reconh-desc {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 0;
}
.reconh-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}
.reconh-card {
    background: rgba(255,255,255,0.03);
    padding: 48px 36px;
    transition: var(--t);
}
.reconh-card:hover {
    background: rgba(255,255,255,0.07);
}
.reconh-cargo {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--salmon);
    margin-bottom: 14px !important;
}
.reconh-card h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.reconh-full {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================================
   PODCAST
============================================================ */
.podcast {
    padding: 120px 0;
    background: var(--cream);
}
.podcast-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}
.podcast-cover {
    background: var(--burgundy);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 56px;
    position: relative;
    overflow: hidden;
    max-width: 400px;
}
.podcast-cover::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(196,130,106,0.15) 0%, transparent 60%);
}
.podcast-bars {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 56px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}
.podcast-bars span {
    display: block;
    width: 3px;
    background: var(--salmon);
    border-radius: 2px;
    animation: bar-anim 1.4s ease-in-out infinite;
    opacity: 0.8;
}
.podcast-bars span:nth-child(1)  { height: 20%; animation-delay: 0.0s; }
.podcast-bars span:nth-child(2)  { height: 45%; animation-delay: 0.1s; }
.podcast-bars span:nth-child(3)  { height: 80%; animation-delay: 0.2s; }
.podcast-bars span:nth-child(4)  { height: 60%; animation-delay: 0.3s; }
.podcast-bars span:nth-child(5)  { height: 100%; animation-delay: 0.4s; }
.podcast-bars span:nth-child(6)  { height: 70%; animation-delay: 0.5s; }
.podcast-bars span:nth-child(7)  { height: 95%; animation-delay: 0.6s; }
.podcast-bars span:nth-child(8)  { height: 55%; animation-delay: 0.7s; }
.podcast-bars span:nth-child(9)  { height: 35%; animation-delay: 0.8s; }
.podcast-bars span:nth-child(10) { height: 18%; animation-delay: 0.9s; }

@keyframes bar-anim {
    0%, 100% { transform: scaleY(0.4); opacity: 0.5; }
    50%       { transform: scaleY(1);   opacity: 1; }
}

.pc-label {
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(232,181,160,0.5);
    margin-bottom: 10px !important;
    position: relative;
    z-index: 1;
}
.pc-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 10px !important;
    position: relative;
    z-index: 1;
    line-height: 1;
}
.pc-host {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(232,181,160,0.6);
    letter-spacing: 0.5px;
    margin-bottom: 0 !important;
    position: relative;
    z-index: 1;
}
.podcast-text h2 { margin-bottom: 24px; }
.podcast-text .btn-primary { margin-top: 32px; }

/* ============================================================
   CTA FINAL
============================================================ */
.cta-section {
    padding: 100px 0;
    background: var(--burgundy-dark);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(196,130,106,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}
.cta-text h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    margin-bottom: 16px;
}
.cta-text p {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    margin-bottom: 0;
}
.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
    background: var(--dark);
    padding: 56px 0 32px;
}
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    flex-wrap: wrap;
}
.footer-logo {
    height: 110px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.3) drop-shadow(0 1px 4px rgba(0,0,0,0.4));
}
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a {
    font-size: 0.83rem;
    color: rgba(255,255,255,0.45);
    transition: color 0.25s ease;
    letter-spacing: 0.2px;
}
.footer-nav a:hover { color: rgba(255,255,255,0.8); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px; height: 36px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--t);
}
.footer-social a:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
    margin-bottom: 0;
}
.footer-oab { font-size: 0.72rem !important; color: rgba(255,255,255,0.15) !important; }

/* ============================================================
   INSTAGRAM
============================================================ */
.instagram-section {
    padding: 120px 0;
    background: var(--cream);
}
.insta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}
.insta-left h2 { margin-bottom: 20px; }
.insta-left p {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 0;
}
.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--white);
    padding: 15px 32px;
    border-radius: 2px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: var(--t);
}
.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(253,29,29,0.3);
    opacity: 0.92;
}

/* Card de perfil estilo Instagram */
.insta-right { display: flex; flex-direction: column; gap: 20px; }
.insta-profile-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
}
.insta-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045) border-box;
}
.insta-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
}
.insta-profile-info { flex: 1; min-width: 0; }
.insta-handle {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px !important;
    font-family: 'Inter', sans-serif;
}
.insta-name {
    font-size: 0.8rem;
    color: var(--light);
    margin-bottom: 6px !important;
}
.insta-bio {
    font-size: 0.78rem;
    color: var(--mid);
    line-height: 1.5;
    margin-bottom: 0 !important;
}
.insta-follow-btn {
    flex-shrink: 0;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    transition: var(--t);
    white-space: nowrap;
}
.insta-follow-btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}
.insta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.insta-tags span {
    background: var(--cream-2);
    color: var(--mid);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    border: 1px solid var(--border);
    transition: var(--t);
    cursor: default;
}
.insta-tags span:hover {
    background: var(--white);
    color: var(--burgundy);
    border-color: rgba(125,31,31,0.2);
}

/* ============================================================
   WHATSAPP FLUTUANTE
============================================================ */
.wa-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 99;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: var(--t);
}
.wa-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37,211,102,0.55);
}

/* ============================================================
   KEYFRAMES PREMIUM
============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ============================================================
   HERO — ANIMAÇÕES DE ENTRADA
============================================================ */
.hero-left-inner .hero-logo {
    animation: fadeLeft 0.8s cubic-bezier(0.22,1,0.36,1) 0.05s both;
}
.hero-left-inner .eyebrow {
    animation: fadeLeft 0.8s cubic-bezier(0.22,1,0.36,1) 0.2s both;
}
.hero-left-inner h1 {
    animation: fadeLeft 0.9s cubic-bezier(0.22,1,0.36,1) 0.35s both;
}
.hero-left-inner .hero-desc {
    animation: fadeLeft 0.9s cubic-bezier(0.22,1,0.36,1) 0.5s both;
}
.hero-left-inner .hero-actions {
    animation: fadeLeft 0.9s cubic-bezier(0.22,1,0.36,1) 0.65s both;
}
.hero-left-inner .hero-numbers {
    animation: fadeUp 0.9s cubic-bezier(0.22,1,0.36,1) 0.8s both;
}
.hero-right {
    animation: fadeRight 1.1s cubic-bezier(0.22,1,0.36,1) 0.15s both;
}

/* ============================================================
   ANIMAÇÕES SCROLL — FADE AO ENTRAR NA VIEWPORT
============================================================ */
[data-fade] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
                transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
[data-fade].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVO — TABLET
============================================================ */
@media (max-width: 1024px) {
    .container { padding: 0 32px; }
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-left { padding: 92px 32px 64px; }
    .hero-left-inner { max-width: 100%; margin-left: 0; padding-left: 0; }
    .hero-right { min-height: 480px; }
    .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
    .sobre-label { display: flex; align-items: center; gap: 16px; }
    .sobre-label p { writing-mode: horizontal-tb; transform: none; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .reconh-grid { grid-template-columns: 1fr; }
    .podcast-grid { grid-template-columns: 1fr; gap: 56px; }
    .podcast-cover { max-width: 100%; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   RESPONSIVO — MOBILE
============================================================ */
@media (max-width: 768px) {
    .container { padding: 0 24px; }
    .nav-inner { padding: 0 24px; justify-content: flex-end; }
    .menu-btn { display: flex; }
    .nav-links {
        position: fixed;
        top: 76px; left: 0; right: 0;
        background: var(--burgundy-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 0;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.35s ease, opacity 0.35s ease;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 14px 0;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav-cta {
        background: none !important;
        border: none !important;
        color: var(--rose) !important;
        padding: 14px 0 !important;
    }
    .hero-left { padding: 76px 24px 56px; }
    .hero-logo img { height: 118px; }
    .hero-right { min-height: 360px; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hero-numbers { gap: 20px; }
    .sobre { padding: 80px 0; }
    .atuacao { padding: 80px 0; }
    .areas-grid { grid-template-columns: 1fr; }
    .reconhecimentos { padding: 80px 0; }
    .podcast { padding: 80px 0; }
    .cta-section { padding: 72px 0; }
    .cta-actions { flex-direction: column; }
    .insta-inner { grid-template-columns: 1fr; gap: 48px; }
    .instagram-section { padding: 80px 0; }
    .insta-profile-card { flex-wrap: wrap; }
    .footer-top { flex-direction: column; align-items: flex-start; }
    .footer-nav { gap: 16px; }
    .section-header { margin-bottom: 48px; }
    .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
    .hero-numbers { flex-direction: column; align-items: flex-start; gap: 16px; }
    .num-divider { width: 32px; height: 1px; }
    .area-card { padding: 36px 24px; }
    .reconh-card { padding: 36px 24px; }
    .podcast-cover { padding: 40px 32px; }
}

/* ============================================================
   ACESSIBILIDADE — SEM ANIMAÇÕES
============================================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    [data-fade] {
        opacity: 1;
        transform: none;
    }
    html { scroll-behavior: auto; }
}
