:root {
    /* Nueva paleta corporativa */
    --primary: #0D47A1;
    --dark: #051D43;
    --secondary: #093272;
    --accent: #f5b400;
    --bs-blue: #0D47A1;
    --bs-primary: #0D47A1;
    --bs-primary-rgb: 13, 71, 161;
    
    --success:#5cb85c;
    
    /* Grises */
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-700: #334155;
    --gray-900: #0F172A;
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   NAVBAR - Transparente sobre hero
======================================== */
.navbar {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    padding: 0.75rem 0;
    position: fixed;
}

.navbar-brand {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.navbar-brand img {
    height: 35px;
    width: auto;
    transition: height 0.3s ease;
    filter: brightness(0) invert(1);
}

.navbar.scrolled .navbar-brand img {
    height: 30px;
    filter: none;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.nav-link {
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
    font-size:1.1rem;
    display: inline-block;
    width: fit-content;
}

.navbar.scrolled .nav-link {
    color: var(--gray-700);
}

.navbar .nav-link:hover,
.navbar.scrolled .nav-link:hover {
    color: var(--accent) !important;
}

.navbar .navbar-nav .nav-link.active,
.navbar.scrolled .navbar-nav .nav-link.active {
    color: var(--accent) !important;
}

.nav-link::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 1rem; /* Mismo padding que el nav-link */
    right: 1rem;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: calc(100% - 2rem);
}

/* Navbar toggler blanco cuando navbar transparente */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.0);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.0);
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 0, 0, 0.55)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* ========================================
   BURGER MENU ANIMADO
======================================== */
.custom-toggler {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.toggler-line {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Cuando el navbar está scrolled (fondo blanco) */
.navbar.scrolled .toggler-line {
    background: var(--primary);
}

/* Animación cuando está abierto */
.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.custom-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hover effect */
.custom-toggler:hover .toggler-line {
    background: var(--dark);
}

.custom-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* ========================================
   OFFCANVAS MENU
======================================== */
.offcanvas {
    background: var(--dark);
    color: white;
    width: 320px !important;
}

.offcanvas-header {
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
    display: flex;
    align-items: center;
}

.offcanvas-title img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Botón de cerrar personalizado */
.btn-close-custom {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 1.5rem;
}

.btn-close-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.btn-close-custom:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(245, 180, 0, 0.3);
}

.offcanvas-body {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.offcanvas-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.offcanvas-nav-item {
    margin-bottom: 0.5rem;
}

.offcanvas-nav-link {
    display: flex;
    align-items: center;
    padding: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    position: relative; /* Para el ::after */
}

/* Efecto de línea debajo con ::after */
.offcanvas-nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0rem; /* Después del icono */
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.offcanvas-nav-link:hover,
.offcanvas-nav-link.active {
    color: var(--accent);
}

.offcanvas-nav-link:hover::after,
.offcanvas-nav-link.active::after {
    width: calc(100% - 4.5rem); 
}

.offcanvas-nav-link i {
    margin-right: 0.75rem;
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
}

.offcanvas-buttons {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0;
}


.offcanvas-buttons .btn {
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.offcanvas-buttons .btn-accent {
    background: var(--accent);
    color: var(--dark);
    border: 2px solid var(--accent);
}

.offcanvas-buttons .btn-accent:hover {
    background: #d69f00;
    border-color: #d69f00;
}

.offcanvas-buttons .btn-outline-light {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
}

.offcanvas-buttons .btn-outline-light:hover {
    background: white;
    border-color: white;
    color:var(--primary);
}

/* Animación de entrada del offcanvas */
.offcanvas.show {
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   USER MENU STYLES
======================================== */
.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.navbar .dropdown-toggle {
    color: white !important;
    border: none;
    background: transparent;
}

.navbar.scrolled .dropdown-toggle {
    color: var(--gray-700) !important;
}

.navbar .dropdown-toggle::after {
    margin-left: 0.5rem;
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: 12px;
    padding: 0.5rem;
    margin-top: 0.75rem;
}

.navbar .dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
}

.navbar .dropdown-item:hover {
    background: var(--primary);
    color: white;
    transform: translateX(1px);
}

.navbar .dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Responsive para el user menu */
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        margin-top: 0.5rem;
    }
}

/* ========================================
   BUTTONS
======================================== */
.btn {
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active,
.btn-primary:focus {
    background: var(--primary) !important;
    color: white !important;
    box-shadow: 0 0 0 0.2rem rgba(13, 71, 161, 0.25) !important;
}

.btn-outline-primary {
    color: white;
    border: 2px solid white;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    border-color: var(--accent);
    transform: translateY(-2px);
}

.navbar.scrolled .btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.navbar.scrolled .btn-outline-primary:hover {
    color:white;
}

.btn-outline-primary:active,
.btn-outline-primary:focus {
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
}

.btn-outline-light {
    color: white;
    border: 2px solid white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    border-color: white;
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: var(--dark);
}

.btn-accent:hover {
    background: #d69f00;
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-accent:active,
.btn-accent:focus {
    background: var(--accent) !important;
    color: var(--dark) !important;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1.05rem;
}

/* ========================================
   HERO SECTION - Pantalla completa
======================================== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(
            90deg,
            rgba(5, 29, 67, 1) 0%,      /* Color sólido al 100% izquierda */
            rgba(5, 29, 67, 0.9) 40%,   /* 90% opacidad */
            rgba(5, 29, 67, 0.7) 55%,   /* 70% opacidad */
            rgba(5, 29, 67, 0.4) 70%,   /* 40% opacidad */
            rgba(5, 29, 67, 0.1) 85%,   /* 10% opacidad */
            transparent 100%              /* Totalmente transparente derecha */
        ),
        url('https://cdn.miautolote.com/assets/img/bg_landing_miautolote.jpg');
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    color: var(--accent);
}

.hero p.lead {
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 600px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
    border-radius: 20px;
}

/* Trial Badge */
.trial-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1.25rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Trust Badges */
.trust-badges {
    opacity: 0.9;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.trust-item i {
    font-size: 1.1rem;
    opacity: 0.95;
}

.trust-item span {
    white-space: nowrap;
}

/* Efecto hover en trust items */
.trust-item:hover {
    color: rgba(255, 255, 255, 1);
}

.trust-item:hover i {
    color: var(--success) !important;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 576px) {
    .trust-badges .d-flex {
        flex-direction: column;
        gap: 0.75rem !important;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
}

.logo-carousel-container {
    position: relative;
    height: 120px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: -25%;
}

.logo-carousel-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}

.logo-carousel-track {
    display: flex;
    animation: scrollLogos 20s linear infinite;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.logo-carousel-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    padding: 5px;
    transition: all 0.3s ease;
}

.logo-item:hover {
    transform: scale(1.05);
}

.logo-item img {
    max-height: 40px;
    max-width: 120px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(52, 152, 219, 0.5));
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Duplicar logos para efecto continuo */
.logo-carousel-track::after {
    content: '';
    display: flex;
}

/* Responsive */
@media (max-width: 991.98px) {
    .logo-carousel-container {
        height: 100px;
        margin-top: 30px;
    }
    
    .logo-item {
        height: 70px;
        width: 150px;
        margin: 0 10px;
    }
    
    .logo-item img {
        max-height: 35px;
        max-width: 100px;
    }
}
/* ========================================
   STATS SECTION 
======================================== */
.stats-section {
    background: url('https://cdn.miautolote.com/assets/img/bg_landing_miautolote.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; 
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Overlay primary oscuro sobre la imagen */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(115deg, 
        rgba(5, 29, 67, 0.95) 0%, 
        rgba(5, 29, 67, 0.92) 100%
    );
    z-index: 0;
}

.stats-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 71, 161, 0.15) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    pointer-events: none;
}

.stats-wrapper {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

/* Divisor vertical entre columnas */
.stat-item-divider {
    border-left: 2px solid rgba(245, 180, 0, 0.2);
}

/* Icono decorativo */
.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

/* Número principal */
.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    display: inline-block;
    line-height: 1;

}

.stat-plus,
.stat-percent {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-left: 0.25rem;
    display: inline-block;
    vertical-align: super;
}

/* Etiqueta descriptiva */
.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-section {
        padding: 60px 0;
    }
    
    .stats-wrapper {
        padding: 2rem 1rem;
    }
    
    .stat-item {
        padding: 2rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    /* Quitar divisores en móvil y agregar línea horizontal */
    .stat-item-divider {
        border-left: none;
        border-top: 2px solid rgba(245, 180, 0, 0.2);
        padding-top: 2.5rem;
    }
    
    .stat-item:first-child {
        border-top: none;
        padding-top: 2rem;
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 1.25rem;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-plus,
    .stat-percent {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* ========================================
   SECTIONS - Títulos con línea decorativa
======================================== */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--accent);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-700);
    max-width: 700px;
    margin-bottom: 4rem;
}

/* ========================================
   FEATURE CARDS
======================================== */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-100);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--secondary);
}

.feature-icon i {
    font-size: 2.25rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   PLANS SECTION - 4 columnas en una línea
======================================== */
.plans {
    background: var(--gray-50);
}

.plan-card {
    background: white;
    border-radius: 24px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    height: 100%;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.plan-card.featured {
    border-color: var(--primary);
    transform: scale(1.03);
}

.plan-card.featured:hover {
    transform: scale(1.03) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.plan-price span {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-700);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.plan-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    color: var(--gray-700);
}

.plan-features li i {
    color: var(--primary);
    margin-right: 1rem;
    font-size: 1.25rem;
}

/* ========================================
   CTA SECTION - Texto izq, botón der
======================================== */
.cta {
    background: var(--primary);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -300px;
    right: -300px;
}

.cta::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    bottom: -200px;
    left: -200px;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.cta-text {
    flex: 1;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.35rem;
    opacity: 0.95;
    margin-bottom: 0;
}

.cta-button {
    flex-shrink: 0;
}

/* ========================================
   FOOTER - Títulos con línea decorativa
======================================== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer h5 {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer h5::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: var(--accent);
    bottom: -8px;
    left: 0;
    border-radius: 2px;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.footer ul li {
    margin-bottom: 0.75rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.footer a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}

.footer a:hover {
    color: var(--accent);
}

.footer a:hover::before {
    width: 100%;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10%;
    margin-right: 1rem;
    transition: var(--transition);
}

.social-links a::before {
    display: none;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    text-decoration: none;
}

.footer-bottom a::before {
    display: none;
}

.footer-logo-blg {
    height: 25px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all var(--transition-smooth);
}

.footer-logo-blg:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ========================================
   BACK TO TOP BUTTON
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
    border: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    color:var(--accent);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 1200px) {
    /* Plans en 2 filas en pantallas medianas */
    .plan-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 992px) {
    .hero {
        background-image: 
            linear-gradient(135deg, rgba(5, 29, 67, 1, 1), rgba(5, 29, 67, 1, 1)) !important;
        background-size: cover !important;
        background-position: center !important;

        min-height: auto;
        padding: 140px 0 60px;
    }

    .hero::after {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero p.lead {
        font-size: 1.15rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .stats {
        margin-top: 0;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .cta-button .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        background-image: 
            linear-gradient(135deg, rgba(5, 29, 67, 1, 1), rgba(5, 29, 67, 1, 1)) !important;
    }
    .hero::after {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
        bottom: 20px;
        right: 20px;
    }
}


/* ========================================
   FEATURES PAGE STYLES
======================================== */
/* Features Hero */
.features-hero {
    background-image:
        linear-gradient(
            135deg,
            rgba(5, 29, 67, 0.65) 0%,
            rgba(13, 71, 161, 0.62) 100%
        ),
        url('https://cdn.miautolote.com/assets/img/bg_funcionalidades.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.features-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 180, 0, 0.1) 0%, transparent 70%);
    top: -250px;
    right: -200px;
    pointer-events: none;
}

.features-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 180, 0, 0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    pointer-events: none;
}

/* Features Grid */
.features-grid {
    padding: 80px 0;
    background: var(--gray-50);
}

/* Category Section */
.features-category {
    margin-bottom: 5rem;
}

.category-header {
    display: flex;
    align-items: start;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--primary);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}

.category-icon i {
    font-size: 2.5rem;
    color: white;
}

.category-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.category-description {
    font-size: 1.15rem;
    color: var(--gray-700);
    margin: 0;
}

/* Feature Detail Card */
.feature-detail-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.feature-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-detail-icon {
    width: 70px;
    height: 70px;
    background:var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-detail-card:hover .feature-detail-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-detail-icon i {
    font-size: 2rem;
    color: white;
}

.feature-detail-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-detail-card > p {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '\F26A';
    font-family: 'bootstrap-icons';
    color: var(--primary);
    font-size: 1rem;
    line-height: 1.2;
    margin-top: 2px; /* ajuste fino vertical */
}


/* CTA Features Section */
.cta-features {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-features::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    top: -300px;
    right: -300px;
}

.cta-features::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
}

.cta-features .container {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .features-hero {
        padding: 120px 0 60px;
    }
    
    .features-grid {
        padding: 60px 0;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
    }
    
    .category-icon i {
        font-size: 2rem;
    }
    
    .category-title {
        font-size: 1.875rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    .feature-detail-card {
        padding: 2rem;
    }
    
    .cta-features {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .features-hero {
        padding: 100px 0 50px;
    }
    
    .features-hero h1 {
        font-size: 2.25rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-icon i {
        font-size: 1.75rem;
    }
    
    .category-title {
        font-size: 1.625rem;
    }
    
    .feature-detail-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-detail-icon i {
        font-size: 1.75rem;
    }
    
    .feature-detail-card h3 {
        font-size: 1.25rem;
    }
    
    .cta-features h2 {
        font-size: 2rem;
    }
}

/* ========================================
   ABOUT PAGE STYLES 
======================================== */

/* About Hero */
.about-hero {
    background-image:
        linear-gradient(
            135deg,
            rgba(5, 29, 67, 0.65) 0%,
            rgba(13, 71, 161, 0.62) 100%
        ),
        url('https://cdn.miautolote.com/assets/img/bg_landing_miautolote.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

/* About Story Section */
.about-story {
    padding: 100px 0;
    background: white;
}

.story-image img {
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.story-image img:hover {
    transform: scale(1.02);
}

.section-label {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.section-title-alt {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

/* Mission Section */
.about-mission {
    padding: 100px 0;
    background: var(--gray-50);
}

.mission-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.mission-card:hover .mission-icon {
    transform: scale(1.1) rotate(5deg);
}

.mission-icon i {
    font-size: 2.5rem;
    color: white;
}

.mission-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.25rem;
}

.mission-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin: 0;
}

/* Values Section */
.about-values {
    padding: 100px 0;
    background: white;
}

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--gray-50);
    border-radius: 20px;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
    transform: translateY(-8px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.value-card h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin: 0;
}

/* Stats Banner Section */
.about-stats-banner {
    padding: 100px 0;
    background: var(--dark);
    color: white;
}

.stats-banner-content {
    position: relative;
}

.stat-banner-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-banner-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-banner-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* Team Section */
.about-team {
    padding: 100px 0;
    background: var(--gray-50);
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.team-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 2rem 1.5rem;
    text-align: center;
}

.team-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.team-social a {
    width: 38px;
    height: 38px;
    background: var(--gray-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    transition: var(--transition);
    text-decoration: none;
}

.team-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* About CTA Section */
.about-cta {
    background: var(--primary);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    top: -300px;
    right: -300px;
}

.about-cta::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
}

.about-cta .container {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
    .about-hero,
    .about-story,
    .about-mission,
    .about-values,
    .about-stats-banner,
    .about-team {
        padding: 80px 0;
    }
    
    .about-cta {
        padding: 80px 0;
    }
    
    .section-title-alt {
        font-size: 2rem;
    }
    
    .stat-banner-number {
        font-size: 3rem;
    }
    
    .about-stats-banner .col-lg-4 {
        text-align: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .section-title-alt {
        font-size: 1.75rem;
    }
    
    .mission-card,
    .team-content {
        padding: 2rem 1.5rem;
    }
    
    .stat-banner-number {
        font-size: 2.5rem;
    }
    
    .about-cta h2 {
        font-size: 1.875rem;
    }
}

/* ========================================
   CONTACT PAGE STYLES 
======================================== */

/* Contact Hero */
.contact-hero {
    background-image:
        linear-gradient(
            135deg,
            rgba(5, 29, 67, 0.95) 0%,
            rgba(13, 71, 161, 0.92) 100%
        ),
        url('https://cdn.miautolote.com/assets/img/bg_landing_miautolote.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 140px 0 80px;
}

/* Contact Main Section */
.contact-main {
    padding: 100px 0;
    background: var(--gray-50);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-100);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.contact-form-wrapper .form-floating > .form-control,
.contact-form-wrapper .form-floating > .form-select {
    border-radius: 12px;
    border: 2px solid var(--gray-200);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form-wrapper .form-floating > .form-control:focus,
.contact-form-wrapper .form-floating > .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(13, 71, 161, 0.1);
}

.contact-form-wrapper .form-floating > label {
    padding: 1rem 1.25rem;
    color: var(--gray-700);
}

.contact-form-wrapper textarea.form-control {
    resize: vertical;
    min-height: 180px;
}

.contact-form-wrapper .btn-primary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 12px;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-100);
    position: sticky;
    top: 100px;
}

.contact-info-wrapper h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
}

/* Contact Info Item */
.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-info-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.6;
}

/* Contact Social */
.contact-social {
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 1.5rem;
}

.contact-social h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.contact-social-btn {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    text-decoration: none;
    transition: var(--transition);
}

.contact-social-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Contact FAQ Section */
.contact-faq {
    padding: 100px 0;
    background: white;
}

.contact-faq .accordion-item {
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.contact-faq .accordion-button {
    padding: 1.5rem 1.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    background: white;
    border: none;
}

.contact-faq .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
    box-shadow: none;
}

.contact-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23334155'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.contact-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.contact-faq .accordion-body {
    padding: 1.5rem 1.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
}

/* Contact CTA Section */
.contact-cta {
    padding: 100px 0;
    background: var(--primary);
    color: white;
}

.contact-cta h2 {
    color: white;
}

/* Alert Styles */
.alert {
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border: none;
    margin-bottom: 2rem;
}

.alert-success {
    background: rgba(92, 184, 92, 0.1);
    color: var(--success);
    border: 2px solid var(--success);
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 2px solid #dc3545;
}

.alert i {
    font-size: 1.25rem;
}

/* Form Validation */
.invalid-feedback {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.is-invalid {
    border-color: #dc3545 !important;
}

.is-invalid:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.1) !important;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-main,
    .contact-faq,
    .contact-cta {
        padding: 80px 0;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2.5rem 2rem;
    }
    
    .contact-info-wrapper {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 100px 0 60px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-form-wrapper h2 {
        font-size: 1.625rem;
    }
    
    .contact-info-wrapper h3 {
        font-size: 1.5rem;
    }
    
    .contact-faq .accordion-button {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .contact-faq .accordion-body {
        padding: 1.25rem;
    }
    
    .contact-cta h2 {
        font-size: 1.875rem;
    }
}

/* ========================================
   PLANS PAGE STYLES 
======================================== */

/* Plans Hero */
.plans-hero {
    background-image:
        linear-gradient(
            135deg,
            rgba(5, 29, 67, 0.95) 0%,
            rgba(13, 71, 161, 0.92) 100%
        ),
        url('https://cdn.miautolote.com/assets/img/bg_landing_miautolote.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 140px 0 80px;
}

/* Plans Pricing Section */
.plans-pricing {
    padding: 100px 0;
    background: var(--gray-50);
}

/* Plan Card Detail */
.plan-card-detail {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 3px solid transparent;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-card-detail:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.plan-card-detail.featured {
    border-color: var(--primary);
    transform: scale(1.03);
    position: relative;
}

.plan-card-detail.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

/* Plan Header */
.plan-header {
    padding: 2.5rem 2rem;
    text-align: center;
    background: white;
    border-bottom: 2px solid var(--gray-100);
}

.plan-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.plan-price .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.plan-price .period {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-700);
}

.plan-billing {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin: 0;
}

/* Plan Features List */
.plan-features-list {
    padding: 2rem;
    flex: 1;
}

.feature-group {
    margin-bottom: 2rem;
}

.feature-group:last-child {
    margin-bottom: 0;
}

.feature-group-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.feature-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-group ul li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-group ul li i {
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Plan CTA */
.plan-cta {
    padding: 2rem;
    border-top: 2px solid var(--gray-100);
}

/* Comparison Section */
.plans-comparison {
    padding: 100px 0;
    background: white;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    background: white;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    min-width: 800px;
}

.comparison-table thead th {
    background: var(--primary);
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table thead th:first-child {
    text-align: left;
    border-top-left-radius: 16px;
}

.comparison-table thead th:last-child {
    border-right: none;
    border-top-right-radius: 16px;
}

.comparison-table thead th.featured {
    background: var(--dark);
}

.popular-badge {
    display: block;
    background: var(--accent);
    color: var(--dark);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 0.5rem;
}

.comparison-table tbody td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
    border-right: 1px solid var(--gray-200);
    color: var(--gray-700);
    font-size: 0.95rem;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--dark);
    background: var(--gray-50);
}

.comparison-table tbody td:last-child {
    border-right: none;
}

.comparison-table tbody td.featured {
    background: rgba(13, 71, 161, 0.03);
}

.comparison-table tbody tr:hover td {
    background: var(--gray-50);
}

.comparison-table tbody tr:hover td.featured {
    background: rgba(13, 71, 161, 0.08);
}

.comparison-table .category-row td {
    background: var(--dark);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    padding: 1rem;
}

.comparison-table .bi-check-lg {
    font-size: 1.5rem;
}

.comparison-table .bi-dash {
    font-size: 1.5rem;
}

/* Plans FAQ */
.plans-faq {
    padding: 100px 0;
    background: var(--gray-50);
}

.plans-faq .accordion-item {
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.plans-faq .accordion-button {
    padding: 1.5rem 1.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    background: white;
    border: none;
}

.plans-faq .accordion-button:not(.collapsed) {
    background: var(--primary);
    color: white;
    box-shadow: none;
}

.plans-faq .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23334155'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.plans-faq .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.plans-faq .accordion-body {
    padding: 1.5rem 1.75rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
}

/* Plans CTA */
.plans-cta {
    padding: 100px 0;
    background: var(--primary);
    color: white;
}

.plans-cta h2 {
    color: white;
}

/* Responsive */
@media (max-width: 1199px) {
    .plan-card-detail.featured {
        transform: scale(1);
    }
    
    .plan-card-detail.featured:hover {
        transform: scale(1) translateY(-8px);
    }
}

@media (max-width: 991px) {
    .plans-pricing,
    .plans-comparison,
    .plans-faq,
    .plans-cta {
        padding: 80px 0;
    }
    
    .plan-price .amount {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .plans-hero {
        padding: 100px 0 60px;
    }
    
    .plans-hero h1 {
        font-size: 2rem;
    }
    
    .plan-header {
        padding: 2rem 1.5rem;
    }
    
    .plan-features-list {
        padding: 1.5rem;
    }
    
    .plan-cta {
        padding: 1.5rem;
    }
    
    .plan-price .amount {
        font-size: 2.5rem;
    }
    
    .comparison-table-wrapper {
        border-radius: 12px;
    }
    
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 0.75rem 0.5rem;
        font-size: 0.875rem;
    }
    
    .plans-cta h2 {
        font-size: 1.875rem;
    }
}

/* ========================================
   LEGAL PAGES STYLES
======================================== */

/* Legal Hero */
.legal-hero {
    background-image:
        linear-gradient(
            135deg,
            rgba(5, 29, 67, 0.95) 0%,
            rgba(13, 71, 161, 0.92) 100%
        ),
        url('https://cdn.miautolote.com/assets/img/bg_landing_miautolote.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 140px 0 80px;
}

.legal-hero h1 {
    color: white;
}

.legal-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Legal Content */
.legal-content {
    padding: 100px 0;
    background: white;
}

/* Legal Sidebar */
.legal-sidebar {
    position: sticky;
    top: 100px;
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid var(--gray-200);
}

.legal-sidebar h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.legal-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.legal-nav a {
    color: var(--gray-700);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.legal-nav a:hover {
    background: white;
    color: var(--primary);
    transform: translateX(4px);
}

/* Legal Document */
.legal-document {
    padding: 0 2rem;
}

.legal-intro {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 4rem;
}

.legal-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary);
}

.legal-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
    margin: 2rem 0 1rem 0;
}

.legal-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 1.5rem 0 1rem 0;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.legal-section ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.legal-section ul li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.legal-section ol {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.legal-section ol li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--gray-700);
}

.legal-section strong {
    color: var(--dark);
    font-weight: 600;
}

.legal-section a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--secondary);
}

/* Contact Lists */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.contact-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-list li::before {
    display: none;
}

.contact-list li i {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Legal Contact Card */
.legal-contact {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 4rem;
    border: 2px solid var(--gray-200);
}

.legal-contact h2 {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1.5rem;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-top: 1.5rem;
    border: 2px solid var(--gray-200);
}

.contact-card h4 {
    margin-top: 0;
    color: var(--primary);
}

/* Alerts */
.alert-info {
    background: #dbeafe;
    border-left: 4px solid #3b82f6;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    color: #1e40af;
    font-size: 0.95rem;
    line-height: 1.6;
}

.alert-success {
    background: #d1fae5;
    border-left: 4px solid #10b981;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    color: #065f46;
}

.alert-warning {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    color: #92400e;
}

.alert-danger {
    background: #fee2e2;
    border-left: 4px solid #ef4444;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    color: #991b1b;
}

.alert-info i,
.alert-success i,
.alert-warning i,
.alert-danger i {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

/* Cookie Type Cards */
.cookie-type-card {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.cookie-type-card h4 {
    margin-top: 0;
    color: var(--primary);
}

/* Cookie Tables */
.cookie-table {
    margin: 2rem 0;
}

.cookie-table h3 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.cookie-description {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-table .table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid var(--gray-200);
}

.cookie-table .table thead th {
    background: var(--primary);
    color: white;
    font-weight: 600;
    padding: 1rem;
    border: none;
}

.cookie-table .table tbody td {
    padding: 1rem;
    border-color: var(--gray-200);
    color: var(--gray-700);
}

.cookie-table .table tbody td code {
    background: var(--gray-100);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--primary);
    font-family: 'Courier New', monospace;
}

/* Third Party Services */
.third-party-service {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1rem 0;
    border: 2px solid var(--gray-200);
}

.third-party-service h4 {
    margin-top: 0;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.third-party-service h4 i {
    font-size: 1.5rem;
}

/* Browser Controls */
.browser-controls {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.browser-item {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.browser-item:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.browser-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.browser-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.browser-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

/* Security Features */
.security-feature {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 16px;
    border: 2px solid var(--gray-200);
}

.feature-icon {
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 3rem;
    color: var(--primary);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    border: 3px solid var(--primary);
}

.feature-content h3 {
    margin-top: 0;
    color: var(--dark);
}

/* Encryption Cards */
.encryption-card {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.encryption-card h3 {
    margin-top: 0;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Isolation Features */
.isolation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.isolation-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.isolation-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.isolation-item i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.isolation-item h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.isolation-item p {
    font-size: 0.95rem;
    color: var(--gray-700);
    margin: 0;
}

/* Monitoring Cards */
.monitoring-card {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
    border: 2px solid var(--gray-200);
}

.monitoring-card h3 {
    margin-top: 0;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Backup & Disaster Recovery */
.backup-strategy,
.disaster-recovery {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 2rem;
    margin: 1.5rem 0;
}

.backup-strategy h3,
.disaster-recovery h3 {
    margin-top: 0;
    color: var(--dark);
}

/* Compliance Badges */
.compliance-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.compliance-badge {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.compliance-badge:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.compliance-badge i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.compliance-badge h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.compliance-badge p {
    font-size: 0.9rem;
    color: var(--gray-700);
    margin: 0;
}

/* Vulnerability Report */
.vulnerability-report {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 2px solid var(--gray-200);
}

.vulnerability-report h3 {
    margin-top: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .legal-content {
        padding: 80px 0;
    }
    
    .legal-sidebar {
        position: static;
        margin-bottom: 3rem;
    }
    
    .legal-document {
        padding: 0;
    }
    
    .security-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .legal-hero {
        padding: 100px 0 60px;
    }
    
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.25rem;
    }
    
    .legal-intro {
        padding: 1.5rem;
    }
    
    .legal-contact {
        padding: 1.5rem;
    }
    
    .security-feature,
    .encryption-card,
    .monitoring-card {
        padding: 1.5rem;
    }
    
    .feature-icon i {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }
}

/* ========================================
   STATUS PAGE STYLES
======================================== */

/* Status Hero */
.status-hero {
    background-image:
        linear-gradient(
            135deg,
            rgba(5, 29, 67, 0.95) 0%,
            rgba(13, 71, 161, 0.92) 100%
        ),
        url('https://cdn.miautolote.com/assets/img/bg_landing_miautolote.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 140px 0 100px;
}

.status-badge-main {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem 3rem;
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.status-indicator {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
}

.status-indicator.operational {
    background: #10b981;
    color: white;
}

.status-indicator.degraded {
    background: #f59e0b;
    color: white;
}

.status-indicator.outage {
    background: #ef4444;
    color: white;
}

.status-text h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.status-text p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Status Services Section */
.status-services {
    padding: 100px 0;
    background: var(--gray-50);
}

.section-title-status {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid var(--gray-200);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.service-icon {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.service-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 0.25rem 0;
}

.service-url {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    font-family: 'Courier New', monospace;
}

.badge-status {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.badge-status.operational {
    background: #d1fae5;
    color: #065f46;
}

.badge-status.degraded {
    background: #fef3c7;
    color: #92400e;
}

.badge-status.outage {
    background: #fee2e2;
    color: #991b1b;
}

.badge-status i {
    font-size: 1rem;
}

/* Service Stats */
.service-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-100);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
}

/* Uptime Bars */
.uptime-bars {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.uptime-bar {
    flex: 1;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
}

.uptime-bar.operational {
    background: #10b981;
}

.uptime-bar.degraded {
    background: #f59e0b;
}

.uptime-bar.outage {
    background: #ef4444;
}

.uptime-bar:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

.uptime-summary {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
    text-align: center;
}

/* Status Incidents Section */
.status-incidents {
    padding: 100px 0;
    background: white;
}

.incident-timeline {
    position: relative;
}

.incident-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.incident-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.incident-status {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: white;
    border: 3px solid var(--gray-200);
    z-index: 1;
}

.incident-item.resolved .incident-status {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.incident-item.investigating .incident-status {
    background: #f59e0b;
    border-color: #f59e0b;
    color: white;
}

.incident-item.outage .incident-status {
    background: #ef4444;
    border-color: #ef4444;
    color: white;
}

.incident-content {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid var(--gray-200);
}

.incident-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.incident-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    flex: 1;
}

.incident-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.incident-badge.resolved {
    background: #d1fae5;
    color: #065f46;
}

.incident-badge.investigating {
    background: #fef3c7;
    color: #92400e;
}

.incident-badge.outage {
    background: #fee2e2;
    color: #991b1b;
}

.incident-badge.maintenance {
    background: #dbeafe;
    color: #1e40af;
}

.incident-description {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.incident-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.incident-meta i {
    margin-right: 0.5rem;
}

.incident-updates {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-200);
}

.update-item {
    padding: 0.75rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-700);
}

.update-item strong {
    color: var(--dark);
}

.update-item:not(:last-child) {
    border-bottom: 1px solid var(--gray-200);
}

.no-incidents {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--gray-50);
    border-radius: 16px;
    border: 2px dashed var(--gray-300);
}

.no-incidents i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.no-incidents p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin: 0;
}

/* Sidebar */
.sidebar-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.uptime-summary-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid var(--gray-200);
}

.uptime-summary-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.uptime-stat {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

.uptime-percentage {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.uptime-label {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

.uptime-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
}

.breakdown-item span {
    color: var(--gray-700);
}

.breakdown-item strong {
    color: var(--dark);
    font-size: 1.1rem;
}

.maintenance-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid var(--gray-200);
}

.maintenance-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.maintenance-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--gray-100);
}

.maintenance-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.maintenance-item:first-child {
    padding-top: 0;
}

.maintenance-date {
    text-align: center;
    flex-shrink: 0;
}

.date-day {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.date-month {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.maintenance-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.maintenance-info p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.maintenance-impact {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.maintenance-impact.low {
    background: #d1fae5;
    color: #065f46;
}

.maintenance-impact.medium {
    background: #fef3c7;
    color: #92400e;
}

.maintenance-impact.high {
    background: #fee2e2;
    color: #991b1b;
}

.subscribe-card {
    background: var(--primary);
    color: white;
    border-radius: 16px;
    padding: 2rem;
}

.subscribe-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.subscribe-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.subscribe-card .form-control {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.subscribe-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-card .form-control:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.subscribe-card .form-floating label {
    color: rgba(255, 255, 255, 0.8);
}

.subscribe-card .btn-primary {
    background: white;
    color: var(--primary);
    border: none;
}

.subscribe-card .btn-primary:hover {
    background: var(--gray-100);
}

/* Responsive */
@media (max-width: 991px) {
    .status-services,
    .status-incidents {
        padding: 80px 0;
    }
    
    .sidebar-sticky {
        position: static;
    }
    
    .incident-timeline::before {
        left: 10px;
    }
    
    .incident-item {
        padding-left: 50px;
    }
    
    .incident-status {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .status-hero {
        padding: 100px 0 60px;
    }
    
    .status-badge-main {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .status-indicator {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .status-text h2 {
        font-size: 1.5rem;
    }
    
    .service-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .service-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .uptime-bars {
        gap: 0.25rem;
    }
    
    .uptime-bar {
        height: 30px;
    }
    
    .incident-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .incident-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .uptime-percentage {
        font-size: 2.5rem;
    }
}

/* ============================================
   FEATURES SHOWCASE 
   ============================================ */

/* Section Container - Full Width */
.features-showcase {
    position: relative;
    min-height: 500vh;
    background: var(--white);
}

.features-showcase-sticky {
    position: sticky;
    top: -30px;
    min-height: 100vh;
    background: #fff;
    overflow: hidden;
}

.features-showcase-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0rem 4rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-top:-40px;
}

.features-showcase-inner > .mb-0 {
    margin-bottom: 2rem !important;
}

/* Section Header */
.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.showcase-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary, #0D47A1);
}

.showcase-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--dark, #051D43);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.showcase-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600, #64748b);
    max-width: 700px;
    margin: 0 auto;
}

/* Panels Container - Full Width Distribution */
.panels-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 5rem;
    padding-top: 0rem;
}

.panel-text-area {
    flex: 1;
    max-width: 550px;
    position: relative;
    min-height: 500px;
}

.panel-visual-area {
    flex: 1.2;
    position: relative;
    min-height: 450px;
}

/* Text Panel States */
.text-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(30px);
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.text-panel.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Feature Brand */
.feature-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
}

.feature-icon-primary {
    background: var(--primary, #0D47A1);
}

.feature-icon-success {
    background: var(--success, #10b981);
}

.feature-icon-purple {
    background: #8b5cf6;
}

.feature-icon-accent {
    background: var(--accent, #f5b400);
    color: var(--dark, #051D43);
}

.feature-icon-cyan {
    background: #0891b2;
}

.feature-brand-name {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--dark, #051D43);
}

/* Feature Content */
.feature-headline {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--dark, #051D43);
    margin-bottom: 1.25rem;
    line-height: 1.25;
}

.feature-description {
    font-size: 1.0625rem;
    color: var(--gray-600, #64748b);
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--gray-700, #374151);
}

.feature-list li i {
    color: var(--success, #10b981);
    font-size: 1.125rem;
}

/* Feature CTA */
.feature-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-feature-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    background: var(--primary, #0D47A1);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-feature-primary:hover {
    background: var(--secondary, #093272);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 71, 161, 0.25);
    color: #fff;
}

.btn-feature-primary.btn-success {
    background: var(--success, #10b981);
}

.btn-feature-primary.btn-success:hover {
    background: #059669;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.btn-feature-primary.btn-purple {
    background: #8b5cf6;
}

.btn-feature-primary.btn-purple:hover {
    background: #7c3aed;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25);
}

.btn-feature-primary.btn-accent {
    background: var(--accent, #f5b400);
    color: var(--dark, #051D43);
}

.btn-feature-primary.btn-accent:hover {
    background: #d97706;
    box-shadow: 0 8px 24px rgba(245, 180, 0, 0.25);
}

.btn-feature-primary.btn-cyan {
    background: #0891b2;
}

.btn-feature-primary.btn-cyan:hover {
    background: #0e7490;
    box-shadow: 0 8px 24px rgba(8, 145, 178, 0.25);
}

.btn-feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary, #0D47A1);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-feature-link:hover {
    color: var(--secondary, #093272);
    gap: 0.75rem;
}

.btn-feature-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.25s ease;
}

.btn-feature-link:hover svg {
    transform: translateX(4px);
}

/* Visual Panel States */
.visual-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 620px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.visual-panel.active {
    opacity: 1;
    pointer-events: auto;
}

/* Visual Container */
.visual-container {
    position: relative;
    width: 100%;
    max-width: 620px;
}

/* Decorative Shape Behind Image */
.visual-shape {
    position: absolute;
    border-radius: 24px;
    z-index: 0;
    width: 92%;
    height: 88%;
    top: 6%;
    right: -4%;
}

.visual-shape-accent {
    background: var(--accent, #f5b400);
}

.visual-shape-success {
    background: var(--success, #10b981);
}

.visual-shape-purple {
    background: #8b5cf6;
}

.visual-shape-cyan {
    background: #06b6d4;
}

/* Shape Animations per Panel */
.visual-panel[data-panel="0"] .visual-shape {
    transform: translateX(100px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}
.visual-panel[data-panel="0"].active .visual-shape {
    transform: translateX(0);
    opacity: 1;
}

.visual-panel[data-panel="1"] .visual-shape {
    transform: translateY(-100px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}
.visual-panel[data-panel="1"].active .visual-shape {
    transform: translateY(0);
    opacity: 1;
}

.visual-panel[data-panel="2"] .visual-shape {
    transform: scale(0.5) rotate(-10deg);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}
.visual-panel[data-panel="2"].active .visual-shape {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.visual-panel[data-panel="3"] .visual-shape {
    transform: translateY(80px) rotate(5deg);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}
.visual-panel[data-panel="3"].active .visual-shape {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
}

.visual-panel[data-panel="4"] .visual-shape {
    transform: translateX(-100px) rotate(-5deg);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}
.visual-panel[data-panel="4"].active .visual-shape {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
}

/* Visual Image */
.visual-image {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
}

.visual-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/10;
    object-fit: cover;
}

/* Decorative Squiggle */
.visual-squiggle {
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 120px;
    z-index: 3;
    opacity: 0.9;
}

/* See All Button */
.showcase-more {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 1rem;
}

.btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--primary, #0D47A1);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary, #0D47A1);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-see-all:hover {
    background: var(--primary, #0D47A1);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(13, 71, 161, 0.2);
}

.btn-see-all i {
    transition: transform 0.3s ease;
}

.btn-see-all:hover i {
    transform: translateX(4px);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    
    /* Section mantiene altura para scroll */
    .features-showcase {
        min-height: 300vh;
    }

    .features-showcase-sticky {
        position: sticky;
        top: 0;
        min-height: 100vh;
        min-height: 100dvh;
        display: flex;
        align-items: center;
    }

    .features-showcase-inner {
        padding: 2rem 0;
        min-height: auto;
        margin-top: 0;
        width: 100%;
    }

    .features-showcase-inner > .mb-0 {
        padding: 0 1.5rem;
        margin-bottom: 1.5rem !important;
    }

    /* Panels container */
    .panels-container {
        flex-direction: column;
        gap: 1.5rem;
        padding-top: 0;
    }

    /* Text panels carousel */
    .panel-text-area {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        overflow: hidden;
        position: relative;
    }

    .panel-text-area-track {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .text-panel {
        position: relative;
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        padding: 0 1.5rem;
        box-sizing: border-box;
    }

    /* Visual panels carousel */
    .panel-visual-area {
        width: 100%;
        min-height: auto;
        overflow: hidden;
        position: relative;
    }

    .panel-visual-area-track {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .visual-panel {
        position: relative;
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        opacity: 1;
        pointer-events: auto;
        padding: 0 1.5rem;
        box-sizing: border-box;
    }

    .visual-container {
        max-width: 100%;
        margin: 0;
    }

    .visual-shape {
        width: 90%;
        height: 85%;
        right: 0;
    }

    /* Ocultar squiggle en mobile */
    .visual-squiggle {
        display: none;
    }

    /* Carousel indicators */
    .carousel-indicators {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        padding: 1.5rem 0 0.5rem;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--gray-300, #d1d5db);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .carousel-dot.active {
        width: 28px;
        border-radius: 4px;
        background: var(--primary, #0D47A1);
    }

    /* Ajustes de CTA en mobile */
    .feature-cta {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .btn-feature-primary {
        flex: 1;
        width: auto;
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }

    .btn-feature-link {
        font-size: 0.9375rem;
    }

    /* Showcase more en mobile */
    .showcase-more {
        margin-top: 1rem;
        padding: 0 1.5rem;
    }
}

@media (max-width: 576px) {
    .features-showcase {
        min-height: 280vh;
    }

    .features-showcase-inner > .mb-0 {
        padding: 0 1rem;
    }

    .text-panel {
        padding: 0 1rem;
    }

    .visual-panel {
        padding: 0 1rem;
    }

    .showcase-more {
        padding: 0 1rem;
    }

    .feature-headline {
        font-size: 1.375rem;
    }

    .feature-description {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }

    .feature-list {
        margin-bottom: 1.5rem;
    }

    .feature-list li {
        font-size: 0.875rem;
        padding: 0.375rem 0;
    }

    .feature-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-feature-primary {
        width: 100%;
        justify-content: center;
    }

    .btn-feature-link {
        justify-content: center;
    }

    .carousel-indicators {
        padding: 1rem 0 0.5rem;
    }
}

/* Ajuste para navegadores con barra de direcciones */
@supports (height: 100dvh) {
    @media (max-width: 1024px) {
        .features-showcase-sticky {
            min-height: 100dvh;
        }
    }
}

/* ============================================
   SCROLL BEHAVIOR - Desktop Only
   ============================================ */

@media (min-width: 1025px) {
    .features-showcase {
        min-height: 500vh;
    }

    .features-showcase-sticky {
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        align-items: center;
    }

    .features-showcase-inner {
        min-height: auto;
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .panel-text-area {
        min-height: 480px;
    }

    .panel-visual-area {
        min-height: 420px;
    }
}