/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-main: #0a0a0a;
    --bg-surface: #0f0f0f;
    --bg-card: #141414;
    --bg-card-alt: #1a1a1a;

    --primary: #fbbf24;
    --primary-hover: #fcd34d;
    --primary-dark: #d97706;

    --text-white: #f5f5f5;
    --text-muted: #a3a3a3;
    --text-dim: #6b6b6b;

    --border: rgba(255, 255, 255, 0.07);
    --border-gold: rgba(251, 191, 36, 0.3);

    --red: #ef4444;
    --green: #22c55e;
    --green-muted: rgba(34, 197, 94, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-gold: 0 0 40px rgba(251, 191, 36, 0.25);
    --shadow-card: 0 20px 48px rgba(0, 0, 0, 0.5);

    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-main);
    color: var(--text-white);
    font-family: var(--font);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

ul[role="list"] {
    list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}


/* ============================================================
   UTILITIES
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.text-primary {
    color: var(--primary);
}


/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.35);
    }

    50% {
        box-shadow: 0 0 48px rgba(251, 191, 36, 0.7);
    }
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2.2s ease-in-out infinite;
}

.animate-slide-up {
    animation: slide-up 0.65s ease-out both;
}

.animate-fade-in {
    animation: fade-in 0.8s ease-out both;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.35s;
}


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0a0a0a;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #fcd34d, #fbbf24);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(251, 191, 36, 0.45);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
}

.btn-rounded {
    border-radius: var(--radius-xl);
}


/* ============================================================
   HEADER
   ============================================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all var(--transition);
}

#header.scrolled {
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.nav-cta {
    display: none;
}

/* Mobile menu */
.menu-toggle {
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    padding: 0.4rem;
    display: flex;
    align-items: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.menu-toggle svg {
    width: 26px;
    height: 26px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.5rem 1.25rem;
    border-top: 1px solid var(--border);
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a,
.mobile-menu button.menu-link {
    display: block;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 500;
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    text-align: left;
    width: 100%;
    transition: background var(--transition);
}

.mobile-menu a:hover,
.mobile-menu button.menu-link:hover {
    background: rgba(255, 255, 255, 0.07);
}

@media (min-width: 640px) {
    .nav-cta {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }
}


/* ============================================================
   HERO
   ============================================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 5rem;
    overflow: hidden;
}

.hero-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.blob-1 {
    width: 480px;
    height: 480px;
    background: rgba(251, 191, 36, 0.08);
    top: 15%;
    left: 10%;
}

.blob-2 {
    width: 380px;
    height: 380px;
    background: rgba(217, 119, 6, 0.07);
    bottom: 15%;
    right: 5%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: var(--radius-full);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.06em;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 1.25rem 0;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.trust-item .icon-star {
    color: var(--primary);
}

.trust-item .icon-check {
    color: var(--green);
}

/* Book mockup */
.hero-visual {
    display: flex;
    justify-content: center;
}

.book-wrap {
    position: relative;
    display: inline-block;
}

.book-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160%;
    /* Aumentado para acompanhar o livro */
    aspect-ratio: 1/1;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.22) 0%, rgba(251, 191, 36, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(30px);
}

.book-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 420px;
    /* Aumentado para maior impacto visual */
    height: auto;
    display: block;

    /* Remoção visual do background da imagem */
    mix-blend-mode: lighten;
    mask-image: radial-gradient(circle at center, black 65%, transparent 98%);
    -webkit-mask-image: radial-gradient(circle at center, black 65%, transparent 98%);

    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.9));
    transition: transform var(--transition);
}

.book-img:hover {
    transform: scale(1.02);
}

.book-badge-edition {
    position: absolute;
    top: 1rem;
    right: -0.5rem;
    z-index: 2;
    background: var(--primary);
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* ============================================================
   SECTIONS — SHARED
   ============================================================ */
.section {
    padding: 5.5rem 0;
}

.section-alt {
    background: var(--bg-surface);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
}


/* ============================================================
   PAIN vs SOLUTION
   ============================================================ */
.pain-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 720px) {
    .pain-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.pain-card {
    border-radius: var(--radius-lg);
    padding: 2.25rem;
}

.pain-card.bad {
    background: linear-gradient(145deg, rgba(239, 68, 68, 0.08), var(--bg-card));
    border: 1px solid rgba(239, 68, 68, 0.18);
}

.pain-card.good {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.08), var(--bg-card));
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.pain-card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.pain-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.pain-icon.bad {
    background: rgba(239, 68, 68, 0.15);
}

.pain-icon.good {
    background: rgba(251, 191, 36, 0.15);
}

.pain-card-title h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.pain-card.bad h3 {
    color: #f87171;
}

.pain-card.good h3 {
    color: var(--primary);
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #d4d4d4;
    font-size: 0.95rem;
    line-height: 1.55;
}

.pain-item-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
    margin-top: 0.05rem;
}


/* ============================================================
   CHAPTERS / WHAT YOU'LL LEARN
   ============================================================ */
.chapters-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .chapters-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 960px) {
    .chapters-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.chapter-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition);
    cursor: default;
}

.chapter-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: rgba(251, 191, 36, 0.25);
}

.chapter-card:hover .chapter-icon {
    background: var(--primary);
    color: #0a0a0a;
}

.chapter-icon {
    width: 52px;
    height: 52px;
    background: rgba(251, 191, 36, 0.1);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all var(--transition);
}

.chapter-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.chapter-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 960px) {
    .testimonials-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
}

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--primary);
}

.testimonial-quote {
    font-size: 0.93rem;
    color: #d4d4d4;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    background: #333;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 700;
}

.author-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}


/* ============================================================
   BONUSES
   ============================================================ */
.bonuses-grid {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .bonuses-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.bonus-card {
    position: relative;
    background: linear-gradient(145deg, var(--bg-card-alt), var(--bg-surface));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
}

.bonus-badge {
    position: absolute;
    top: -0.75rem;
    right: 1rem;
    background: var(--green);
    color: #0a0a0a;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-full);
}

.bonus-icon {
    width: 52px;
    height: 52px;
    background: rgba(251, 191, 36, 0.1);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bonus-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.bonus-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.bonus-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: line-through;
    opacity: 0.75;
}

.total-value-box {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.08), rgba(217, 119, 6, 0.08));
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
}

.total-value-box p {
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.total-value-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    text-decoration: line-through;
    opacity: 0.8;
}

.total-value-free {
    font-size: 1.1rem;
    color: #d4d4d4;
    margin-top: 0.5rem;
}

.total-value-free span {
    font-weight: 700;
    color: var(--green);
}


/* ============================================================
   OFFER / PRICING
   ============================================================ */
#offer {
    background: var(--bg-surface);
}

.offer-card {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1c1c1c, #0e0e0e);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 3.5rem 2.5rem;
    box-shadow: var(--shadow-gold);
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 800px) {
    .offer-grid {
        grid-template-columns: 0.8fr 1.2fr;
        text-align: left;
    }

    .offer-price-wrap {
        justify-content: flex-start;
    }

    .offer-cash {
        text-align: left;
    }

    .offer-from {
        text-align: left;
    }
}

.offer-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-book-glow {
    position: absolute;
    width: 130%;
    aspect-ratio: 1/1;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, rgba(251, 191, 36, 0) 70%);
    border-radius: 50%;
    filter: blur(25px);
    z-index: 0;
}

.offer-book-img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 320px;
    height: auto;
    mix-blend-mode: lighten;
    mask-image: radial-gradient(circle at center, black 65%, transparent 98%);
    -webkit-mask-image: radial-gradient(circle at center, black 65%, transparent 98%);
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
}

.offer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 800px) {
    .offer-content {
        align-items: flex-start;
    }
}

.offer-badge {
    position: absolute;
    top: -1.1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #0a0a0a;
    font-size: 0.8rem;
    font-weight: 900;
    padding: 0.4rem 1.5rem;
    border-radius: var(--radius-full);
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.offer-from {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.offer-from s {
    color: #666;
}

.offer-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.offer-installments {
    font-size: 1.3rem;
    color: var(--text-muted);
}

.offer-price {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 900;
}

.offer-cash {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    text-align: center;
}

.offer-benefits {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.offer-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #d4d4d4;
}

.benefit-check {
    color: var(--green);
    flex-shrink: 0;
}

.offer-security {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 1.5rem;
    font-size: 0.83rem;
    color: var(--text-muted);
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Guarantee */
.guarantee-box {
    max-width: 640px;
    margin: 2.5rem auto 0;
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.07), var(--bg-card));
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guarantee-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.guarantee-box p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.guarantee-box p strong {
    color: var(--green);
    font-weight: 600;
}


/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    color: var(--text-white);
    font-family: var(--font);
    font-size: 0.97rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: background var(--transition);
}

.faq-btn:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-chevron {
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: all var(--transition);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.75;
}

.faq-item.open .faq-answer {
    display: block;
}


/* ============================================================
   FINAL CTA
   ============================================================ */
#final-cta {
    background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-main) 100%);
    text-align: center;
}

.final-cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

.final-cta-sub {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.final-cta-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-dim);
}


/* ============================================================
   FOOTER
   ============================================================ */
#footer {
    border-top: 1px solid var(--border);
    padding: 3.5rem 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-nav {
    display: flex;
    gap: 1.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--primary);
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-dim);
}

@media (min-width: 720px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}