/**
 * OWLY Landing Page - Estilos Personalizados
 *
 * Este archivo contiene los estilos custom que complementan Tailwind CSS.
 * Los colores y tipografía base están configurados en el HTML (tailwind.config)
 *
 * Paleta de colores:
 * - primary: #FE4D01 (naranja)
 * - primaryDark: #E54D1F (naranja oscuro)
 * - secondary: #FFF5F2 (rosa claro)
 * - dark: #1A1A1A (casi negro)
 * - lightGray: #F5F5F7 (gris claro)
 */

/* ==================== RESET ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #F5F5F7 0%, #E8E8EA 100%);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ==================== HERO STICKY ==================== */
#inicio ~ section,
#inicio ~ div,
#inicio ~ footer {
    position: relative;
    z-index: 1;
}

/* ==================== FONDOS Y GRADIENTES ==================== */
.hero-gradient {
    background: #141413;
}

/* Hero section dark background - text adjustments */
.hero-gradient h1 {
    color: #FFFFFF;
}

.hero-gradient .text-dark {
    color: #FFFFFF !important;
}

.hero-gradient .text-gray-600 {
    color: #A0A0A0 !important;
}

.hero-gradient .text-gray-500 {
    color: #888888 !important;
}

.hero-gradient .section-badge {
    background: #1A1A1A;
    color: #FE4D01;
}

.hero-gradient .logo-item {
    color: #666666;
}

.hero-gradient .logo-item:hover {
    color: #999999;
}

/* Hero secondary button */
.hero-gradient .bg-white.text-dark {
    background: transparent !important;
    color: #FFFFFF !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.hero-gradient .bg-white.text-dark:hover {
    border-color: #FE4D01 !important;
    color: #FE4D01 !important;
}

/* Hero video container */
.hero-gradient .screenshot-container {
    background: transparent;
    box-shadow: none;
}

/* Hero floating elements */
.hero-gradient .bg-primary\/10 {
    background: rgba(254, 77, 1, 0.15) !important;
}

.hero-gradient .bg-blue-500\/10 {
    background: rgba(59, 130, 246, 0.15) !important;
}

/* Hero dashboard mockup cards */
.hero-gradient .shadow-xl,
.hero-gradient .shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}

/* Fondo animado del hero (gif) */
.hero-bg-animation {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 50%;
    height: 50%;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-animation img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.15;
    filter: opacity(15%);
    -webkit-filter: opacity(15%);
}

/* Seccion Como Funciona */
#como-funciona {
    background: #F5F5F7;
}

/* Seccion Soluciones - fondo oscuro */
#soluciones {
    background: #141413;
}

.soluciones-bg-glow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#soluciones h2,
#soluciones h3 {
    color: #FFFFFF;
}

#soluciones .text-dark {
    color: #FFFFFF !important;
}

#soluciones .text-gray-600 {
    color: #A0A0A0 !important;
}

#soluciones .text-gray-500 {
    color: #888888 !important;
}

#soluciones .section-badge {
    background: #1A1A1A;
    color: #FE4D01;
}

#soluciones .card-hover {
    background: rgba(26, 26, 26, 0.35);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 0 rgba(0, 0, 0, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.3);
}

#soluciones .card-hover::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.02) 40%,
            transparent 60%,
            rgba(0, 0, 0, 0.05) 100%
        );
    pointer-events: none;
    z-index: 1;
}

#soluciones .card-hover::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    pointer-events: none;
    z-index: 1;
}

#soluciones .card-hover:hover {
    border-color: #FE4D01;
    background: rgba(26, 26, 26, 0.45);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 0 rgba(0, 0, 0, 0.1),
        0 20px 40px rgba(254, 77, 1, 0.12),
        0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Seccion Precios - fondo oscuro */
#precio {
    background: #141413;
}

#precio h2,
#precio h3 {
    color: #FFFFFF;
}

#precio .text-dark {
    color: #FFFFFF !important;
}

#precio .text-gray-600 {
    color: #A0A0A0 !important;
}

#precio .text-gray-500 {
    color: #888888 !important;
}

#precio .text-gray-400 {
    color: #666666 !important;
}

#precio .section-badge {
    background: #1A1A1A;
    color: #FE4D01;
}

/* SVG fondo pricing */
.pricing-bg-glow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#precio .pricing-card-gradient {
    background: rgba(26, 26, 26, 0.35);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 0 rgba(0, 0, 0, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.3);
}

#precio .pricing-card-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.02) 40%,
            transparent 60%,
            rgba(0, 0, 0, 0.05) 100%
        );
    pointer-events: none;
    z-index: 1;
}

#precio .pricing-card-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 128px 128px;
    pointer-events: none;
    z-index: 1;
}

#precio .pricing-card-gradient:hover {
    border-color: #FE4D01;
    background: rgba(26, 26, 26, 0.45);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 0 rgba(0, 0, 0, 0.1),
        0 20px 40px rgba(254, 77, 1, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Borde animado - card central */
.pricing-card-wrapper {
    position: relative;
}

.pricing-border-glow {
    position: absolute;
    inset: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

#pricingCardCenter {
    position: relative;
    z-index: 1;
    background: rgba(19, 19, 19, 0.7) !important;
    backdrop-filter: blur(28px) saturate(1.4) !important;
    -webkit-backdrop-filter: blur(28px) saturate(1.4) !important;
    border: 1px solid #FE4D01 !important;
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.06),
        inset 0 -1px 0 0 rgba(0, 0, 0, 0.15),
        0 20px 40px rgba(254, 77, 1, 0.15),
        0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

#pricingCardCenter:hover {
    transform: scale(1.03) !important;
    background: rgba(19, 19, 19, 0.8) !important;
    border-color: #FE4D01 !important;
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 0 rgba(0, 0, 0, 0.15),
        0 25px 50px rgba(254, 77, 1, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

.pricing-border-path {
    fill: none;
    stroke: #FE4D01;
    stroke-width: 4;
    stroke-linecap: round;
    filter: blur(2px) drop-shadow(0 0 4px rgba(255, 92, 40, 0.5));
}

#precio .pricing-divider {
    background: #2A2A2A;
}

#precio button.border {
    border-color: #3A3A3A;
    color: #E5E5E5;
}

#precio button.border:hover {
    border-color: #FE4D01;
    color: #FE4D01;
}

.gradient-text {
    color: #FE4D01;
}

/* ==================== COMPONENTES UI ==================== */

/* Botón con gradiente diagonal */
.btn-gradient {
    background: #FE4D01;
    color: white;
    border: none;
    border-radius: 99px;
    padding: 12px 24px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(254, 77, 1, 0.3);
}

.btn-gradient:hover {
    background: #E54401;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(254, 77, 1, 0.4);
}

.btn-gradient span,
.btn-gradient svg {
    position: relative;
    z-index: 1;
}

/* Cards con efecto hover */
.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Iconos de features */
.feature-icon {
    background: rgba(254, 77, 1, 0.1);
}

/* Números de features */
.feature-number {
    background: #FE4D01;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

/* Badge de sección */
.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #FE4D01;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(254, 77, 1, 0.15);
}

/* Contenedor de screenshots/mockups */
.screenshot-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* ==================== NAVEGACIÓN ==================== */
.nav-link {
    position: relative;
    color: #1A1A1A;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FE4D01;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FE4D01;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Nav links for dark navbar */
.nav-link-dark {
    position: relative;
    color: #E5E5E5;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link-dark:hover {
    color: #FE4D01;
}

.nav-link-dark::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FE4D01;
    transition: width 0.3s ease;
}

.nav-link-dark:hover::after {
    width: 100%;
}

/* ==================== MOBILE MENU ==================== */

/* Mobile menu container */
.mobile-menu {
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.mobile-menu.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Override hidden when active */
.mobile-menu.active {
    display: block !important;
}

/* Mobile nav links */
.mobile-nav-link {
    display: block;
    padding: 12px 16px;
    color: #1A1A1A;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    background: #F5F5F7;
    color: #FE4D01;
}

/* Mobile nav links for dark menu */
.mobile-nav-link-dark {
    display: block;
    padding: 12px 16px;
    color: #E5E5E5;
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mobile-nav-link-dark:hover,
.mobile-nav-link-dark:active {
    background: rgba(255, 255, 255, 0.1);
    color: #FE4D01;
}

/* Hamburger icon animation */
#mobileMenuToggle .hamburger-icon,
#mobileMenuToggle .close-icon {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

#mobileMenuToggle.active .hamburger-icon {
    display: none;
}

#mobileMenuToggle.active .close-icon {
    display: block;
}

/* Hamburger button active state */
#mobileMenuToggle.active {
    background: #FE4D01 !important;
}

#mobileMenuToggle.active svg {
    color: white !important;
}

#mobileMenuToggle svg {
    color: white;
}

/* ==================== TESTIMONIOS ==================== */
.testimonial-stars {
    color: #FE4D01;
}

/* ==================== ACCORDION / FAQ ==================== */
.accordion-item {
    border-bottom: 1px solid #E5E5E7;
}

.accordion-button {
    transition: all 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-item.active .accordion-content {
    max-height: 300px;
    transition: max-height 0.4s ease-in;
}

/* Animación del ícono +/- */
.accordion-icon svg {
    transition: transform 0.3s ease;
}

.accordion-plus {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.accordion-item.active .accordion-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.accordion-item.active .accordion-icon svg {
    transform: rotate(180deg);
}

/* ==================== LOGOS / MARQUEE ==================== */

/* Contenedor principal del marquee */
.logo-marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    /* Mask para desvanecer los logos en los bordes */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* Track del marquee - contiene los logos duplicados */
.logo-marquee {
    display: flex;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
}


/* Cada grupo de logos */
.logo-marquee-group {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
    flex-shrink: 0;
}

/* Estilo de cada logo */
.logo-marquee-group .logo-item {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9CA3AF;
    white-space: nowrap;
    transition: color 0.3s ease, transform 0.3s ease;
}

.logo-marquee-group .logo-item:hover {
    color: #6B7280;
    transform: scale(1.05);
}

/* Logos SVG en marquee */
.logo-marquee-group .logo-item-img {
    height: 40px;
    max-width: 120px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Animación keyframes */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive - móviles */
@media (max-width: 768px) {
    .logo-marquee {
        animation-duration: 20s;
    }

    .logo-marquee-group {
        gap: 40px;
        padding: 0 20px;
    }

    .logo-marquee-group .logo-item {
        font-size: 1.1rem;
    }
}

/* ==================== FOOTER ==================== */
footer {
    background: #1A1A1A;
    color: white;
}

/* ==================== ANIMACIONES ==================== */

/* Animación de flotación */
.floating-card {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Animación de entrada (fade in) */
.fade-in {
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== STICKY HORIZONTAL SCROLL ==================== */

/* Track: Contenedor padre que define la altura del scroll */
.sticky-scroll-track {
    position: relative;
    height: 400vh;
}

/* Camera: Elemento sticky que permanece visible */
.sticky-scroll-camera {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Container: Contenedor de los items que se mueve horizontalmente */
.sticky-scroll-container {
    display: flex;
    width: max-content;
    will-change: transform;
    transition: none; /* Sin transición para seguimiento preciso del scroll */
}

/* Item: Cada sección/producto */
.sticky-scroll-item {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 5rem; /* Espacio para el navbar fixed (~80px) */
}

/* Contenido interno de cada item */
.sticky-scroll-item .product-content {
    display: flex;
    gap: 2rem;
    max-width: 100%;
    width: 100%;
    height: calc(100vh - 7rem); /* 100vh - padding top (5rem) - padding bottom (2rem) */
    max-height: none;
}

/* Cards de producto - ancho fijo */
.sticky-scroll-item .product-content .product-cards {
    width: 340px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
}

/* Cards internas - distribuir espacio */
.sticky-scroll-item .product-content .product-cards > div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Screenshot - ocupa el resto del espacio */
.sticky-scroll-item .product-content .product-screenshot {
    flex: 1;
    min-width: 0;
    height: 100%;
}

.sticky-scroll-item .product-content .product-screenshot > div {
    height: 100%;
}

.sticky-scroll-item .product-content .product-screenshot .bg-gradient-to-br {
    height: 100%;
    min-height: auto;
}

/* ==================== RESPONSIVE ==================== */

/* Ajustes para tablets (1024px y menor) */
@media (max-width: 1024px) {
    .sticky-scroll-item {
        padding: 0 1.5rem;
    }

    .sticky-scroll-item .product-content {
        gap: 1.5rem;
    }

    .sticky-scroll-item .product-content .product-cards {
        width: 300px;
    }

    .sticky-scroll-item .product-content .product-cards .bg-white {
        padding: 1.25rem;
    }

    .sticky-scroll-item .product-content .product-cards h3 {
        font-size: 1.1rem;
    }

    .sticky-scroll-item .product-content .product-cards p,
    .sticky-scroll-item .product-content .product-cards ul {
        font-size: 0.9rem;
    }
}

/* Ajustes para tablets pequeñas (900px y menor) */
@media (max-width: 900px) {
    .sticky-scroll-track {
        height: auto;
    }

    .sticky-scroll-camera {
        position: relative;
        height: auto;
        overflow: visible;
    }

    .sticky-scroll-container {
        flex-direction: column;
        width: 100%;
        transform: none !important;
    }

    .sticky-scroll-item {
        width: 100%;
        height: auto;
        min-height: auto;
        padding: 3rem 1.5rem;
        padding-top: 3rem;
    }

    .sticky-scroll-item .product-content {
        flex-direction: column;
        height: auto;
        max-height: none;
        max-width: 600px;
        margin: 0 auto;
    }

    .sticky-scroll-item .product-content .product-cards {
        width: 100%;
        height: auto;
    }

    .sticky-scroll-item .product-content .product-cards > div {
        flex: none;
    }

    .sticky-scroll-item .product-content .product-cards .bg-white {
        padding: 1.5rem;
    }

    .sticky-scroll-item .product-content .product-screenshot {
        width: 100%;
        min-width: auto;
        height: auto;
    }

    .sticky-scroll-item .product-content .product-screenshot > div {
        height: auto;
    }

    .sticky-scroll-item .product-content .product-screenshot .bg-gradient-to-br {
        height: auto;
        min-height: 350px;
    }
}

/* Ajustes para pantallas medianas con poca altura (laptops pequeñas) */
@media (max-height: 750px) {
    .hero-gradient h1 {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
    }

    .hero-gradient p {
        font-size: 0.875rem !important;
        margin-bottom: 0.75rem !important;
    }

    .hero-gradient .section-badge {
        margin-bottom: 0.5rem;
    }
}

/* Ajustes para móviles */
@media (max-width: 768px) {
    .hero-gradient h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-gradient .section-badge {
        padding: 0.25rem 0.75rem;
        font-size: 0.65rem;
        margin-bottom: 0.5rem;
    }

    .sticky-scroll-item {
        padding: 2rem 1rem;
        padding-top: 2rem;
    }

    .sticky-scroll-item .product-content .product-screenshot .bg-gradient-to-br {
        min-height: 280px;
    }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 480px) {
    .hero-gradient h1 {
        font-size: 1.5rem;
    }
}

/* ==================== AI BENEFITS SLIDER ==================== */

.ai-slider-section {
    background: #F5F5F7;
}

.ai-slider-container {
    position: relative;
    overflow: hidden;
}

.ai-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem 0;
}

.ai-slide-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-slide-image-container {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    background: transparent;
    border-radius: 24px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.ai-slide-content {
    flex: 1;
    max-width: 500px;
}

.ai-slide-icon {
    width: 48px;
    height: 48px;
    background: rgba(254, 77, 1, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.ai-slide-icon svg {
    width: 24px;
    height: 24px;
    color: #FE4D01;
}

.ai-slide-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FE4D01;
    margin-bottom: 1rem;
}

.ai-slide-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.ai-slide-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.ai-slide-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #1A1A1A;
    font-size: 1rem;
}

.ai-slide-benefits li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #1A1A1A;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Slider Navigation Arrows */
.ai-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid #E5E5E7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.ai-slider-nav:hover {
    background: #FE4D01;
    border-color: #FE4D01;
}

.ai-slider-nav:hover svg {
    color: white;
}

.ai-slider-nav svg {
    width: 20px;
    height: 20px;
    color: #1A1A1A;
    transition: color 0.3s ease;
}

.ai-slider-nav.prev {
    left: 0;
}

.ai-slider-nav.next {
    right: 0;
}

.ai-slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.ai-slider-nav:disabled:hover {
    background: white;
    border-color: #E5E5E7;
}

.ai-slider-nav:disabled:hover svg {
    color: #1A1A1A;
}

/* Slider Dots */
.ai-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.ai-slider-dot {
    width: 10px;
    height: 10px;
    background: #E5E5E7;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ai-slider-dot.active {
    background: #FE4D01;
    width: 32px;
    border-radius: 5px;
}

/* Network Image Placeholder SVG */
.ai-network-placeholder {
    width: 100%;
    height: 100%;
    padding: 2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .ai-slide {
        flex-direction: column;
        text-align: center;
    }

    .ai-slide-content {
        max-width: 100%;
    }

    .ai-slide-image-container {
        max-width: 320px;
    }

    .ai-slider-nav {
        display: none;
    }

    .ai-slide-benefits li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ai-slide {
        gap: 2rem;
        padding: 1rem 0;
    }

    .ai-slide-title {
        font-size: 1.25rem;
    }

    .ai-slide-description {
        font-size: 1rem;
    }
}

/* ==================== UTILIDADES ADICIONALES ==================== */

/* Scrollbar personalizada (opcional) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F5F5F7;
}

::-webkit-scrollbar-thumb {
    background: #CCCCCC;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #999999;
}

/* ==================== CONTACT FORM CARD ==================== */

/* Fondo con gradiente radial rosa/peach sutil */
.contact-form-card {
    background:
        radial-gradient(ellipse at top left, rgba(255, 200, 180, 0.35), transparent 50%),
        #f5f5f5;
    border: 1px solid rgba(255, 150, 100, 0.25);
    border-radius: 1.5rem;
}

/* ==================== TIMELINE INTERACTIVO ==================== */

/* Línea de fondo del timeline */
.timeline-track {
    z-index: 1;
}

/* Línea de progreso animada */
.timeline-progress {
    z-index: 2;
    transition: height 0.05s linear;
}

/* Estado inicial de los steps - opacidad baja */
.timeline-step {
    opacity: 0.25;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step.active {
    opacity: 1;
}

/* Icono del timeline - estado inactivo (solo borde, fondo blanco) */
.timeline-icon {
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Icono activo - fondo naranja sólido con icono blanco */
.timeline-step.active .timeline-icon {
    background: #FE4D01;
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(254, 77, 1, 0.4);
}

.timeline-step.active .timeline-icon svg {
    color: white !important;
}

/* Contenido del timeline */
.timeline-content {
    transition: all 0.4s ease;
}

/* ==================== PRICING SECTION ==================== */

/* Pricing cards base */
.pricing-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Featured pricing card - Light mode (orange solid) */
.pricing-card-featured {
    background: #FE4D01;
    box-shadow: 0 20px 40px rgba(254, 77, 1, 0.25);
}

.pricing-card-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(254, 77, 1, 0.35);
}

/* Pricing divider */
.pricing-divider {
    background: #E5E5E7;
}

/* ==================== PRICING GRADIENT CARDS ==================== */

/* Base gradient card styles */
.pricing-card-gradient {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light mode gradient cards - Orange theme (subtle) */
.pricing-card-gradient-left {
    background: linear-gradient(145deg, #fdfcfb 0%, #faf9f8 50%, #f8f6f5 100%);
    border: 1px solid rgba(254, 77, 1, 0.08);
}

.pricing-card-gradient-left::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 60%;
    background: radial-gradient(ellipse at bottom left, rgba(254, 77, 1, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-card-gradient-center {
    background: linear-gradient(145deg, #fdfcfb 0%, #faf8f7 50%, #f7f5f3 100%);
    border: 1px solid rgba(254, 77, 1, 0.1);
}

.pricing-card-gradient-center::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(254, 77, 1, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-card-gradient-right {
    background: linear-gradient(145deg, #fdfcfb 0%, #faf9f8 50%, #f8f6f5 100%);
    border: 1px solid rgba(254, 77, 1, 0.08);
}

.pricing-card-gradient-right::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 70%;
    height: 60%;
    background: radial-gradient(ellipse at bottom right, rgba(254, 77, 1, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Hover effects light mode */
.pricing-card-gradient:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(254, 77, 1, 0.08);
}

