/* ───────────────────────────────────────────────
   MAIN.CSS — Dra. Flávia de Moraes
   Aesthetic: Editorial Luxury · Warm Sand & Navy
   Fonts: Instrument Serif (display) + Figtree (body)
   ─────────────────────────────────────────────── */

/* Google Fonts loaded via HTML <link> for better performance */

:root {
    /* ── Core Palette ── */
    --bg-base: #F5F0EA;
    --bg-surface: #FFFFFF;
    --bg-warm: #EDE6DB;
    --bg-cream: #FAF7F2;

    --navy-900: #0A1628;
    --navy-800: #0F2140;
    --navy-700: #162D54;
    --navy-600: #1E3A6A;
    --navy-500: #2A4F8A;

    --gold-600: #B8860B;
    --gold-500: #C9972E;
    --gold-400: #D4A84B;
    --gold-300: #E3C67F;
    --gold-200: #EBDAB0;
    --gold-100: #F5EDD5;

    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #6E6E6E;
    --text-on-dark: #F0ECE6;
    --text-on-dark-muted: rgba(240, 236, 230, 0.7);

    --border: rgba(10, 22, 40, 0.06);
    --border-strong: rgba(10, 22, 40, 0.12);

    /* ── Shadows ── */
    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.04);
    --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.06);
    --shadow-lg: 0 24px 64px rgba(10, 22, 40, 0.08);
    --shadow-xl: 0 32px 80px rgba(10, 22, 40, 0.12);
    --shadow-gold: 0 8px 32px rgba(201, 151, 46, 0.2);

    /* ── Layout ── */
    --container-width: 1280px;
    --container-narrow: 900px;

    /* ── Radii ── */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-pill: 100px;
    --radius-arch: 1600px 1600px 20px 20px;

    /* ── Timing ── */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    font-size: 17px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Figtree', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    line-height: 1.75;
    font-weight: 400;
    background: var(--bg-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Subtle grain texture overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 180px;
}

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════════ */

h1,
h2,
h3,
h4 {
    font-family: 'Instrument Serif', Georgia, 'Times New Roman', serif;
    color: var(--navy-900);
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(3.2rem, 5.5vw, 5.2rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.1;
}

h3 {
    font-family: 'Figtree', sans-serif;
    font-size: clamp(1.35rem, 1.8vw, 1.65rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.85;
}

ul {
    list-style-position: inside;
    margin-bottom: 1.25rem;
}

li {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.35s var(--ease-out);
}

/* ── Eyebrow / Label ── */
.eyebrow {
    font-family: 'Figtree', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-600);
    border-radius: var(--radius-pill);
    padding: 0;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background: var(--gold-400);
    flex-shrink: 0;
}

.eyebrow-soft {
    color: var(--text-muted);
}

.eyebrow-soft::before {
    background: var(--text-muted);
    opacity: 0.4;
}

/* ═══════════════════════════════════════════════
   CONTAINER
   ═══════════════════════════════════════════════ */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2.5rem;
    }
}

/* ═══════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* Hero-only entrance (no scroll trigger, fires on load) */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: heroFadeUp 1s var(--ease-out) 0.15s both;
}

.hero-side-stack {
    animation: heroFadeUp 1s var(--ease-out) 0.35s both;
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3.5rem;
    padding: 1rem 2.25rem;
    background: var(--navy-800);
    color: var(--text-on-dark);
    border-radius: var(--radius-pill);
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
    cursor: pointer;
    border: 1.5px solid var(--navy-800);
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(10, 22, 40, 0.18);
}

.btn:hover::after {
    opacity: 1;
}

.btn.accent {
    background: var(--gold-500);
    color: var(--navy-900);
    border-color: var(--gold-500);
    font-weight: 600;
}

.btn.accent:hover {
    background: var(--gold-600);
    border-color: var(--gold-600);
    box-shadow: var(--shadow-gold);
    color: #fff;
}

.btn.outline {
    background: transparent;
    color: var(--navy-800);
    border-color: var(--border-strong);
}

.btn.outline:hover {
    background: var(--navy-800);
    color: var(--text-on-dark);
    border-color: var(--navy-800);
}

/* ═══════════════════════════════════════════════
   TOPBAR — minimal, non-sticky
   ═══════════════════════════════════════════════ */

.topbar {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg-base);
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo:hover img {
    opacity: 0.85;
}

.topbar-cta {
    /* shown on larger screens only */
}

.btn-sm {
    min-height: 2.75rem;
    padding: 0.65rem 1.5rem;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .topbar-cta {
        display: none;
    }
}



/* ═══════════════════════════════════════════════
   BASE SECTIONS
   ═══════════════════════════════════════════════ */

section {
    padding: 3rem 0;
    position: relative;
}

@media (min-width: 768px) {
    section {
        padding: 1rem 0;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 2rem 0;
    }
}

.section-header {
    max-width: 680px;
    margin-bottom: 2.75rem;
}

.section-header-left {
    text-align: left;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ═══════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════ */

.hero {
    padding: 2.5rem 0 4rem;
    overflow: hidden;
    background: var(--bg-base);
    position: relative;
}

/* Ambient gradient behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60%;
    height: 90%;
    background: radial-gradient(ellipse at center, rgba(201, 151, 46, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .hero {
        padding: 3rem 0 5rem;
    }

    .hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 5rem;
        align-items: center;
    }
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--navy-900);
}

.hero-content h1 i {
    font-style: italic;
    color: var(--gold-500);
}

.hero-lead {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.85;
}

.hero-actions {
    margin-bottom: 0;
}

.hero-actions-primary {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ── Hero Image & Card Stack ── */
.hero-side-stack {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-arch);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 3/4;
    max-height: 620px;
    width: 100%;
    margin: 0 auto;
}

.hero-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.35), transparent);
    z-index: 1;
    pointer-events: none;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}

.hero-img-wrapper:hover img {
    transform: scale(1.03);
}

/* Intent Card – positioned cleanly offset */
.hero-intent-card {
    position: absolute;
    bottom: -5.5rem;
    left: -7rem;
    background: var(--bg-surface);
    padding: 1.65rem 1.9rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    max-width: 304px;
    z-index: 3;
    border: 1px solid var(--border);
}

.hero-intent-title {
    font-family: 'Instrument Serif', serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.9rem;
    color: var(--navy-900);
    line-height: 1.4;
}

.hero-intent-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-intent-card li {
    font-size: 1rem;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.65rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.hero-intent-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold-500);
    font-weight: 600;
}

.hero-intent-card li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1023px) {
    .hero-intent-card {
        position: relative;
        bottom: 0;
        left: 0;
        max-width: 100%;
        margin-top: -2rem;
        box-shadow: var(--shadow-md);
    }
}

/* ═══════════════════════════════════════════════
   DIFFERENTIALS / STORY SECTION
   ═══════════════════════════════════════════════ */

.story-section {
    background: var(--bg-cream);
    position: relative;
}

/* Decorative top divider */
.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
    border-radius: 2px;
}

.insight-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .insight-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.insight-card {
    background: var(--bg-surface);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.45s var(--ease-out);
    position: relative;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-200));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity 0.45s var(--ease-out);
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.insight-card:hover::before {
    opacity: 1;
}

.insight-card h3 {
    margin-bottom: 0.75rem;
    color: var(--navy-900);
}

.insight-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════
   SPECIALTIES SECTION
   ═══════════════════════════════════════════════ */

.specialties-section {
    background: var(--navy-900);
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden;
}

/* Ambient radial glow */
.specialties-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 70%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(201, 151, 46, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.specialties-section .section-header h2 {
    color: var(--text-on-dark);
}

.specialties-section .section-header p {
    color: var(--text-on-dark-muted);
}

.specialty-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .specialty-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.specialty-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(8px);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.45s var(--ease-out);
    position: relative;
}

.specialty-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
    opacity: 0;
    transition: opacity 0.45s var(--ease-out);
}

.specialty-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
}

.specialty-card:hover::after {
    opacity: 1;
}

.specialty-card h3 {
    color: var(--text-on-dark);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.specialty-card p {
    color: var(--text-on-dark-muted);
    font-size: 1.15rem;
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════ */

.services {
    background: var(--bg-base);
}

.cards-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.45s var(--ease-out);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.card h3 {
    color: var(--navy-900);
    margin-bottom: 0.5rem;
}

.card .price {
    display: inline-block;
    color: var(--gold-600);
    font-weight: 600;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.card>p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.card ul {
    list-style: none;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.card li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-500);
}

/* ── SINAPSE Card ── */
.sinapse-card {
    grid-column: 1 / -1;
    background: var(--navy-900);
    color: var(--text-on-dark);
    padding: 2.25rem 2.25rem;
    position: relative;
    overflow: hidden;
}

.sinapse-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -0%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(201, 151, 46, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.sinapse-card:hover {
    background: var(--navy-800);
}

.sinapse-card h3 {
    color: var(--text-on-dark);
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 0.75rem;
}

.sinapse-card p {
    color: var(--text-on-dark-muted);
    font-size: 1.05rem;
    max-width: 72ch;
    line-height: 1.8;
}

.sinapse-card .price {
    color: var(--gold-300);
}

.sinapse-card ul {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.sinapse-card li {
    color: var(--text-on-dark-muted);
}

.sinapse-card li::before {
    background: var(--gold-400);
}

/* ═══════════════════════════════════════════════
   CONTEXT / OTHER AREAS SECTION
   ═══════════════════════════════════════════════ */

.context-section {
    background: var(--bg-cream);
}

.context-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .context-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

.context-card {
    background: var(--bg-surface);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.45s var(--ease-out);
}

.context-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.context-card h3 {
    margin-bottom: 1.25rem;
    color: var(--navy-900);
}

.context-card ul {
    list-style: none;
    margin: 0;
}

.context-card li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.65rem;
    line-height: 1.7;
}

.context-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--gold-400);
}

.context-card li:last-child {
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════════ */

.about {
    background: var(--navy-900);
    color: var(--text-on-dark);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(201, 151, 46, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.about h2,
.about p {
    color: var(--text-on-dark);
}

.about p {
    opacity: 0.8;
}

.about .eyebrow-soft {
    color: var(--gold-300);
}

.about .eyebrow-soft::before {
    background: var(--gold-400);
}

.about-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 0.85fr;
        gap: 6rem;
    }
}

.about-content h2 strong {
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
}

.about-role {
    font-size: 0.95rem !important;
    color: var(--gold-300) !important;
    opacity: 1 !important;
    margin-bottom: 0.25rem !important;
}

.about-role strong {
    font-weight: 500;
}

.about-crp {
    font-size: 0.85rem !important;
    opacity: 0.5 !important;
    margin-bottom: 2rem !important;
    letter-spacing: 0.06em;
}

.about-actions {
    margin-bottom: 2.5rem;
}

.about-photo-frame {
    border-radius: var(--radius-arch);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-photo-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.2), transparent 50%);
    pointer-events: none;
}

.about-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 6s ease;
}

.about-photo-frame:hover img {
    transform: scale(1.03);
}

.credentials {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.credential-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.credential-item strong {
    color: var(--gold-400);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.credential-item span {
    color: var(--text-on-dark);
    font-size: 0.95rem;
    opacity: 0.85;
}

/* ═══════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════ */

.contact-section {
    text-align: center;
    background: var(--bg-base);
}

.contact-panel {
    background: var(--bg-surface);
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.contact-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-400), var(--gold-600), var(--gold-400));
}

.contact-panel .eyebrow-soft {
    color: var(--gold-600);
}

.contact-panel .eyebrow-soft::before {
    background: var(--gold-400);
}

.contact-panel h2 {
    margin-bottom: 0.75rem;
}

.contact-panel p {
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */

footer {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    background: var(--bg-base);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 1.75rem;
}

.footer-nav a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: color 0.3s var(--ease-out);
}

.footer-nav a:hover {
    color: var(--gold-600);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--navy-900);
    background: transparent;
    border: 1px solid var(--border-strong);
    transition: all 0.35s var(--ease-out);
}

.footer-social a:hover {
    background: var(--gold-500);
    border-color: var(--gold-500);
    color: #fff;
    transform: translateY(-2px);
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ═══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ═══════════════════════════════════════════════ */

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: all 0.35s var(--ease-out);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.45);
}

/* ═══════════════════════════════════════════════
   UTILITY / SHARED
   ═══════════════════════════════════════════════ */

.footer-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ── Mentoria & other pages: common overrides ── */
.hero-eyebrow {
    font-family: 'Figtree', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-600);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-sub {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 650px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.hero-tags span {
    background: var(--bg-warm);
    color: var(--text-secondary);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 1px solid var(--border);
}

/* ── Section labels used on sub-pages ── */
.section-label {
    font-family: 'Figtree', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-600);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--navy-900);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 650px;
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 750px;
}

.center .section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* ── Dark section variants ── */
.dark {
    background: var(--navy-900);
    color: var(--text-on-dark);
}

.dark .section-title {
    color: var(--text-on-dark);
}

.dark .section-sub {
    color: var(--text-on-dark-muted);
}

.dark .section-label {
    color: var(--gold-300);
}

.dark p {
    color: var(--text-on-dark-muted);
}

.light-bg {
    background: var(--bg-cream);
}

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0 auto;
    max-width: var(--container-width);
}