/* ==========================================================================
   LANDING VSL MENTORÍA EMPRESAS CADENAS DE BIENESTAR IMPARABLES (ECDBI)
   Diseño: Mobile-First, Paleta Oficial Grupo Empresarial Buena Tierra SAS
   ========================================================================== */

:root {
    /* Paleta Oficial Buena Tierra SAS: Azul Marino Profundo + Verde Esmeralda */
    --bg-dark: #071527;
    --bg-darker: #040c17;
    --bg-card: #0c233f;
    --bg-card-glass: rgba(12, 35, 63, 0.85);
    --bg-card-hover: #123258;
    --border-color: rgba(255, 255, 255, 0.12);
    --border-glow: rgba(28, 206, 111, 0.35);
    
    --primary-green: #1cce6f;
    --primary-green-hover: #15b760;
    --primary-green-glow: rgba(28, 206, 111, 0.4);
    
    --corporate-blue: #174e8f;
    --accent-gold: #f59e0b;
    --accent-gold-light: #fbbf24;
    
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --text-dark: #071527;
    
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(28, 206, 111, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background Atmosphere Gradients */
.ambient-glow {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 50% 10%, rgba(23, 78, 143, 0.25) 0%, transparent 60%),
        radial-gradient(circle at 85% 40%, rgba(28, 206, 111, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 15% 75%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    color: var(--text-secondary);
}

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

.container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   MINIMAL ZERO-DISTRACTION TOP BAR
   ========================================================================== */
.top-notice-bar {
    background: linear-gradient(90deg, #040d1a 0%, #0d2747 50%, #040d1a 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.top-notice-bar .badge-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary-green);
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.top-notice-bar strong {
    color: #ffffff;
}

/* ==========================================================================
   HERO SECTION & VSL
   ========================================================================== */
.hero-section {
    padding: 2.5rem 0 3.5rem;
    text-align: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(28, 206, 111, 0.12);
    border: 1px solid rgba(28, 206, 111, 0.4);
    color: var(--primary-green);
    padding: 0.45rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.825rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: 2.1rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.1rem;
        line-height: 1.18;
    }
}

.text-gradient-green {
    background: linear-gradient(135deg, #1cce6f 0%, #37fa5e 50%, #86efac 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 780px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   AUTOPLAY VSL VIDEO WRAPPER WITH UNMUTE OVERLAY
   ========================================================================== */
.vsl-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), var(--shadow-glow);
    padding: 0.5rem;
    position: relative;
    max-width: 860px;
    margin: 0 auto 2rem;
    overflow: hidden;
}

.vsl-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
    border-radius: calc(var(--radius-lg) - 4px);
    overflow: hidden;
}

.vsl-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Unmute audio floating banner */
.unmute-floating-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(7, 21, 39, 0.92);
    border: 2px solid var(--primary-green);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 20px var(--primary-green-glow);
    z-index: 10;
    transition: var(--transition);
    animation: pulsePlay 2s infinite;
}

.unmute-floating-btn:hover {
    background: var(--primary-green);
    color: #040c17;
    transform: translateX(-50%) scale(1.05);
}

.unmute-floating-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ==========================================================================
   PRIMARY CTA BUTTONS
   ========================================================================== */
.cta-container {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-primary-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1cce6f 0%, #10b981 100%);
    color: #040c17;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    padding: 1.1rem 2.2rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px var(--primary-green-glow);
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    max-width: 540px;
}

.btn-primary-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(28, 206, 111, 0.6);
    background: linear-gradient(135deg, #37fa5e 0%, #1cce6f 100%);
}

.btn-primary-cta .btn-subtext {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 2px;
    color: #071527;
}

.cta-microcopy {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cta-microcopy span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Floating Bottom Bar on Mobile */
.floating-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(7, 21, 39, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    z-index: 99;
    display: none;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.6);
    animation: slideUp 0.4s ease forwards;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

@media (max-width: 768px) {
    .floating-mobile-cta.is-visible {
        display: block;
    }
    .btn-mobile-full {
        width: 100%;
        padding: 0.9rem 1.2rem;
        font-size: 1.05rem;
    }
}

/* ==========================================================================
   PAIN POINTS & BOTTLENECK SECTION
   ========================================================================== */
.section-padding {
    padding: 4.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.section-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.4rem;
    }
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.pain-card {
    background: var(--bg-card);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    position: relative;
    transition: var(--transition);
}

.pain-card:hover {
    border-color: rgba(239, 68, 68, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.15);
}

.pain-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.18);
    color: #f87171;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.pain-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.pain-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ==========================================================================
   THE 4 PLATFORMS & SYSTEM (TRANSFORMATION)
   ========================================================================== */
.platforms-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 768px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.platform-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.platform-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.platform-img-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #040d1a;
}

.platform-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.platform-card:hover .platform-img {
    transform: scale(1.05);
}

.platform-number-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(7, 21, 39, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
}

.platform-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.platform-body h3 {
    font-size: 1.35rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.platform-body p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.platform-checklist {
    list-style: none;
    margin-top: auto;
}

.platform-checklist li {
    font-size: 0.875rem;
    color: #cbd5e1;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.platform-checklist li svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-green);
    flex-shrink: 0;
    margin-top: 3px;
}

/* Bonus Technology Feature Card */
.bonus-tech-card {
    background: linear-gradient(135deg, #0d2747 0%, #081a30 100%);
    border: 2px solid var(--accent-gold);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .bonus-tech-card {
        grid-template-columns: 1.2fr 0.8fr;
        padding: 2.5rem;
    }
}

.bonus-badge {
    background: var(--accent-gold);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 900;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.bonus-tech-card h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.75rem;
}

.tech-preview-img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   AUTHORITY & MENTOR PROFILE
   ========================================================================== */
.authority-box {
    background: var(--bg-card-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

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

.authority-avatar {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-green);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.authority-content h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.25rem;
}

.authority-subtitle {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.authority-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   QUALIFICATION FILTERS (WHO IS THIS FOR / NOT FOR)
   ========================================================================== */
.qualification-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

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

.qual-col {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.qual-col.is-for {
    border-top: 4px solid var(--primary-green);
}

.qual-col.not-for {
    border-top: 4px solid #ef4444;
}

.qual-col h3 {
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.qual-list {
    list-style: none;
}

.qual-list li {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.qual-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   1-BY-1 STEP QUALIFICATION MODAL (LIKE THE CALCULATOR)
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(4, 12, 23, 0.9);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
    overflow-y: auto;
}

.modal-overlay.is-active {
    display: flex;
}

.modal-container {
    background: #0b1f38;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    padding: 2rem 1.5rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(28, 206, 111, 0.2);
    position: relative;
    max-height: 92vh;
    overflow-y: auto;
    animation: modalPop 0.3s ease;
}

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

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: #cbd5e1;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.modal-close-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.funnel-step-indicator {
    margin-bottom: 1.5rem;
}

.step-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.step-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--accent-gold) 100%);
    width: 15%;
    transition: width 0.35s ease;
}

.step-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Multi-Step Screens (1 a 1) */
.quiz-screen {
    display: none;
}

.quiz-screen.is-active {
    display: block;
    animation: fadeInStep 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateX(12px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-title {
    font-size: 1.45rem;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 0.4rem;
}

.form-input, .form-select {
    width: 100%;
    background: #061324;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    color: #fff;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(28, 206, 111, 0.2);
}

/* Option Cards (1-by-1 Questions) */
.options-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.option-card-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #061527;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
    width: 100%;
}

.option-card-btn:hover {
    border-color: var(--primary-green);
    background: #0f2c4e;
    transform: translateX(4px);
}

.option-card-btn.is-selected {
    border-color: var(--primary-green);
    background: rgba(28, 206, 111, 0.15);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(28, 206, 111, 0.2);
}

.option-letter-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary-green);
    flex-shrink: 0;
}

.option-card-btn.is-selected .option-letter-badge {
    background: var(--primary-green);
    color: #040c17;
    border-color: var(--primary-green);
}

.quiz-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    gap: 1rem;
}

.btn-nav-back {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-nav-back:hover {
    color: #fff;
    border-color: #fff;
}

/* Calendar & Slots */
.calendar-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1.25rem 0;
}

@media (min-width: 480px) {
    .calendar-slots-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.slot-btn {
    background: #061324;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: #fff;
    padding: 0.85rem 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.slot-btn:hover {
    border-color: var(--primary-green);
    background: rgba(28, 206, 111, 0.15);
}

.slot-btn.is-selected {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #040c17;
    font-weight: 900;
    box-shadow: 0 0 15px var(--primary-green-glow);
}

/* Disqualification Box */
.disqualified-box {
    text-align: center;
    padding: 1.5rem 0;
}

.disqualified-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Footer */
.main-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem 0 5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

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