/* 🔹 Variables personalizadas */
:root {
    /* Paleta de colores */
    --color-fondo: #19181a;         /* Fondo principal oscuro */
    --color-texto: #e8e6ed;         /* Texto principal */
    --color-destacado: #35a9ff;     /* Torea Bay 400 - Para detalles */
    --color-botones: #00e2e0;       /* Cyan 500 - Botones principales */
    --color-accento: #aedcff;       /* Screamin Green 500 - Acentos */
    --color-navbar: #0033d7;        /* Torea Bay 800 - Navbar */
    --color-tarjetas: #232127;      /* Fondo tarjetas */
    
    /* Sombras */
    --sombra-suave: 0 4px 6px rgba(0, 0, 0, 0.1);
    --sombra-boton: 0 4px 15px rgba(0, 226, 224, 0.3);
    --sombra-boton-hover: 0 8px 25px rgba(0, 226, 224, 0.4);
}

/* 🔹 Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--color-fondo);
    color: var(--color-texto);
    line-height: 1.6;
}

/* 🔹 NavBar - Con borde destacado */
.navbar {
    background: var(--color-fondo) !important;
    border-bottom: 2px solid #ffffff !important;
    padding: 0.5rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 1001;
}

.navbar-brand {
    display: flex;
    align-items: flex-start;
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-top: 0;
    padding-bottom: 0;
} 

.navbar-brand img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
    position: relative;
    top: -5px;
}

.navbar-nav {
    align-items: center;
    height: 100%;
}

.nav-link {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* Estilos para el menú desplegable en móviles */
@media (max-width: 992px) {
    .navbar-collapse {
        background: var(--color-fondo);
        padding: 1rem;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        margin-top: 0.5rem;
    }

    .navbar-nav {
        gap: 0.5rem;
    }

    .nav-link {
        padding: 0.8rem 1rem !important;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

/* Ajustes para imágenes en móviles */
@media (max-width: 768px) {
    .carousel-item {
        height: 50vh;
        min-height: 300px;
    }

    .carousel-item img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .feature-box-image-large {
        height: 300px;
    }

    .feature-box-image-small {
        height: 200px;
    }

    .feature-box-large {
        height: auto;
        min-height: 400px;
    }

    .feature-box-small {
        height: auto;
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 40vh;
        min-height: 250px;
    }

    .feature-box-image-large {
        height: 250px;
    }

    .feature-box-image-small {
        height: 180px;
    }
}

/* 🔹 Chatbot - Minimizar en lugar de cerrar */
#chatbot {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-minimized {
    width: 60px !important;
    height: 60px !important;
    bottom: 30px !important;
    right: 30px !important;
    border-radius: 50% !important;
    overflow: hidden;
}

.chatbot-minimized .chatbot-header,
.chatbot-minimized #chatbot-messages,
.chatbot-minimized .chatbot-input-container {
    display: none;
}

.chatbot-minimized::after {
    content: '💬';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
}


.navbar-nav .nav-link:hover {
    color: var(--color-accento) !important;
}


/* 🔹 Carrusel - Tamaño de Imágenes */
.carousel-item {
    height: 90vh; /* Reducción de altura */
    min-height: 400px;
    animation: fadeInRight 0.7s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateX(30px);
}

.carousel-item img {
    object-fit: contain; /* Mantiene proporciones sin recortar */
    height: 100%;
    width: auto;
    margin: 0 auto;
}


/* 🔹 Logo - Estilos sugeridos */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1002;
}

.logo-container img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.logo-container:hover img {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize;
}

.logo-text .capital {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-text span {
    display: inline-block;
}

.logo-text span:first-child {
    margin-right: 10px;
}

/* Ajustes responsive para el logo */
@media (max-width: 992px) {
    .logo-container img {
        width: 60px;
        height: 60px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }

    .logo-text .capital {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .logo-container img {
        width: 50px;
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }

    .logo-text .capital {
        font-size: 1.6rem;
    }
}

/* 🔹 Mejoras adicionales */
.navbar-nav .nav-link {
    position: relative;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #00FFFB;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* 🔹 Ajustes responsive */
@media (max-width: 992px) {
    .navbar-brand img {
        height: 35px;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
    }
    
    .chatbot-minimized {
        bottom: 90px !important;
        right: 20px !important;
    }
}

/* 🔹 Chatbot (versión anterior mejorada) */
#chatbot {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: var(--color-tarjetas);
    border-radius: 15px;
    box-shadow: var(--sombra-suave);
    z-index: 1000;
    display: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#chatbot[style*="display: block"] {
    transform: translateY(0);
    opacity: 1;
}

.chatbot-header {
    background: var(--color-navbar);
    padding: 1rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h4 {
    color: var(--color-texto);
    margin: 0;
    font-size: 1.2rem;
}

#chatbot-messages {
    height: 300px;
    padding: 1rem;
    overflow-y: auto;
}

.bot-message, .user-message {
    max-width: 80%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border-radius: 15px;
}

.bot-message {
    background: var(--color-fondo);
    color: var(--color-texto);
    align-self: flex-start;
}

.user-message {
    background: var(--color-botones);
    color: var(--color-fondo);
    align-self: flex-end;
}

/* 🔹 WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float img {
    width: 100%;
    border-radius: 50%;
    box-shadow: var(--sombra-suave);
}

/* 🔹 Sección de Precios (versión anterior) */
.pricing-card {
    background: var(--color-tarjetas);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 1rem;
}

/* 🔹 Tarjetas de Precios - Legibilidad */
.pricing-card {
    color: #fff !important;
    margin: 20px;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.pricing-card .card-body {
    padding: 2rem;
}

.pricing-card h5 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card ul li {
    font-weight: 500;
    margin: 12px 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* 🔹 Alineación de Tarjetas */
#precios .row {
    justify-content: center;
    gap: 2rem;
    padding: 0 15px;
}

/* Ajuste específico para 3 tarjetas */
@media (min-width: 992px) {
    #precios .col-lg-4 {
        flex: 0 0 calc(33.333% - 40px);
        max-width: calc(33.333% - 40px);
    }
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.featured {
    border: 2px solid var(--color-accento);
}

.badge-estampa {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--color-accento);
    color: var(--color-fondo);
    padding: 5px 35px;
    transform: rotate(45deg);
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: var(--sombra-suave);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-botones);
    margin: 1rem 0;
}

/* 🔹 Media Queries */
@media (max-width: 768px) {
    #chatbot {
        width: 90%;
        right: 5%;
        bottom: 80px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .pricing-card {
        margin: 1rem 0;
    }
}
/* 🔹 Chatbot - Mejora de Botones */
.chatbot-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 15px;
}

.chatbot-button {
    background: linear-gradient(135deg, var(--color-botones), var(--color-accento));
    color: var(--color-fondo) !important;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    text-decoration: none;
    display: block;
    transform: scale(1);
   
}


/* 🔹 Animaciones */
@keyframes entradaChatbot {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* 🔹 Chatbot Container */
#chatbot {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    background: var(--color-tarjetas);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#chatbot[style*="display: block"] {
    transform: translateY(0);
    opacity: 1;
}

/* 🔹 Chatbot Header */
.chatbot-header {
    background: var(--color-navbar);
    padding: 1rem;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h4 {
    color: var(--color-texto);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

#close-chatbot {
    background: none;
    border: none;
    color: var(--color-texto);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 0.5rem;
}

#close-chatbot:hover {
    color: var(--color-accento);
    transform: rotate(90deg);
}

/* 🔹 Chatbot Messages */
#chatbot-messages {
    height: 300px;
    padding: 1rem;
    overflow-y: auto;
    background: var(--color-fondo);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bot-message, .user-message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    margin: 0.5rem 0;
    border-radius: 15px;
    position: relative;
}

.bot-message {
    background: var(--color-tarjetas);
    color: var(--color-texto);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
}

.user-message {
    background: var(--color-botones);
    color: var(--color-fondo);
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

/* 🔹 Chatbot Input Area */
.chatbot-input-container {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--color-tarjetas);
    border-radius: 0 0 15px 15px;
}

#chatbot-input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: var(--color-fondo);
    color: var(--color-texto);
    transition: all 0.3s ease;
}

#chatbot-input:focus {
    border-color: var(--color-accento);
    box-shadow: 0 0 8px rgba(0, 255, 251, 0.2);
}

#send-chatbot {
    background: var(--color-botones);
    color: var(--color-fondo);
    border: none;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

#send-chatbot:hover {
    background: var(--color-accento);
    transform: translateY(-2px);
}

/* 🔹 Chatbot Floating Button */
#chatbot-btn {
    position: fixed;
    bottom: 90px; /* Posición elevada para evitar superposición con WhatsApp */
    right: 30px;
    width: 120px; /* Ancho aumentado para forma rectangular */
    height: 50px; /* Altura reducida para proporción rectangular */
    background: var(--color-botones);
    color: var(--color-fondo);
    border: none;
    border-radius: 15px; /* Esquinas redondeadas pero no circular */
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 226, 224, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
    transition: all 0.3s ease;
    /* Mejorando el aspecto visual */
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 4px 15px rgba(0, 226, 224, 0.3),
        0 0 0 rgba(0, 226, 224, 0.1);
    /* Opcionalmente, puedes añadir texto al botón */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Si deseas mostrar un icono y texto */
#chatbot-btn::before {
    content: "💬"; /* Icono de chat */
    margin-right: 8px;
    font-size: 1.2rem;
}

#chatbot-btn:hover {
    background: var(--color-accento);
    transform: translateY(-5px); /* Efecto de elevación en lugar de escala */
    box-shadow: 
        0 10px 20px rgba(0, 226, 224, 0.4),
        0 0 10px rgba(0, 226, 224, 0.2);
}

#chatbot-btn:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 226, 224, 0.2);
}

/* 🔹 Animaciones */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

#chatbot-btn {
    animation: float 3s ease-in-out infinite;
}

/* Para detener la animación al hacer hover */
#chatbot-btn:hover {
    animation-play-state: paused;
}

/* Efecto de brillo en el borde */
@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(0, 226, 224, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 226, 224, 0.8); }
    100% { box-shadow: 0 0 5px rgba(0, 226, 224, 0.5); }
}

#chatbot-btn::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 18px; /* Ligeramente mayor que el botón */
    z-index: -1;
    background: transparent;
    border: 2px solid transparent;
    animation: glow 2s infinite;
}

/* 🔹 Estilos del Carrusel */
.carousel-item {
    animation: fadeInRight 0.7s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateX(30px);
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-indicators {
    margin-bottom: 1rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.6);
    transition: all 0.3s;
}

.carousel-indicators .active {
    background-color: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255,255,255,0.8);
}

.carousel-control-prev, .carousel-control-next {
    width: 10%;
    opacity: 0.7;
    transition: all 0.3s;
}

/* 🔹 Estilos de la página FAQ */
.faq-header {
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    padding: 3rem 0;
    margin-bottom: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.faq-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.faq-header p {
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.9;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
}

.accordion-button {
    padding: 1.25rem;
    font-weight: 600;
    color: #333;
    background-color: #fff;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.accordion-body {
    padding: 1.5rem;
    line-height: 1.6;
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.faq-icon {
    margin-right: 10px;
    color: #0d6efd;
}

/* 🔹 Estilos de la página de Contacto */
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
}

.social-box {
    background: rgba(30, 30, 40, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 25px;
    box-shadow: var(--sombra-suave);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.social-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--start-color), var(--end-color));
    opacity: 0.1;
    z-index: 0;
    transition: all 0.4s ease;
}

.social-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--sombra-boton-hover);
    border-color: var(--color-botones);
}

.social-box:hover::before {
    opacity: 0.3;
}

.social-box i {
    font-size: 2.8rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--start-color), var(--end-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.social-box:hover i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.social-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    color: var(--color-texto);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.social-box:hover h3 {
    color: var(--color-botones);
    transform: translateY(-3px);
}

.social-box p {
    font-size: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    color: var(--color-texto);
    line-height: 1.5;
}

.social-box:hover p {
    opacity: 1;
    transform: translateY(-2px);
}

/* Estilos específicos para cada red social */
.social-whatsapp {
    --start-color: #25D366;
    --end-color: #128C7E;
    grid-column: span 2;
    grid-row: span 2;
}

.social-instagram {
    --start-color: #833AB4;
    --end-color: #E1306C;
    grid-column: span 2;
    grid-row: span 1;
}

.social-facebook {
    --start-color: #1877F2;
    --end-color: #1069E0;
    grid-column: span 1;
    grid-row: span 1;
}

.social-call {
    --start-color: #34A853;
    --end-color: #0F9D58;
    grid-column: span 1;
    grid-row: span 1;
}

.social-email {
    --start-color: #EA4335;
    --end-color: #C5221F;
    grid-column: span 1;
    grid-row: span 1;
}

.social-twitter {
    --start-color: #1DA1F2;
    --end-color: #0D8ECF;
    grid-column: span 1;
    grid-row: span 1;
}

/* Animación de onda para el botón de llamada */
.call-wave {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: wave 2s infinite;
    opacity: 0;
    z-index: 0;
}

.call-wave:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes wave {
    0% {
        transform: scale(0.5);
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Ajustes responsive */
@media (max-width: 992px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 20px;
    }
    
    .social-box {
        padding: 20px;
    }
    
    .social-box i {
        font-size: 2.5rem;
    }
    
    .social-box h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .social-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }
    
    .social-box {
        padding: 15px;
    }
    
    .social-box i {
        font-size: 2.2rem;
    }
    
    .social-box h3 {
        font-size: 1.2rem;
    }
    
    .social-box p {
        font-size: 0.9rem;
    }
}

/* 🔹 Estilos de la página Demo */
.feature-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.demo-banner {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    padding: 50px 0;
    margin-bottom: 50px;
    border-radius: 0 0 50% 50% / 20px;
}

.demo-cta {
    animation: pulse 2s infinite;
    font-weight: bold;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 50px;
}

.device-mockup {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    margin: 20px 0;
    border: 10px solid #333;
    position: relative;
}

.counter-container {
    background-color: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #476be1;
}

.counter-subtitle {
    color: #000000 !important;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

/* 🔹 Estilos de la página de Instalación */
.installation-banner {
    background: linear-gradient(135deg, var(--color-fondo), var(--color-tarjetas));
    padding: 80px 0;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.installation-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/pattern.png') repeat;
    opacity: 0.1;
    z-index: 0;
}

.installation-banner h1 {
    color: var(--color-texto);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.installation-banner p {
    color: var(--color-texto);
    opacity: 0.9;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.installation-cta {
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin: 10px;
}

.installation-cta.btn-light {
    background: var(--color-botones);
    color: var(--color-fondo);
    border: none;
}

.installation-cta.btn-outline-light {
    background: transparent;
    color: var(--color-texto);
    border: 2px solid var(--color-botones);
}

.installation-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 251, 0.3);
}

.installation-cta.btn-light:hover {
    background: var(--color-accento);
}

.installation-cta.btn-outline-light:hover {
    background: var(--color-botones);
    color: var(--color-fondo);
}

.installation-card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.installation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 255, 251, 0.2);
    border-color: var(--color-botones);
}

.installation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 251, 0.1), rgba(0, 51, 215, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.installation-card:hover::before {
    opacity: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-botones);
    color: var(--color-fondo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.installation-card h4 {
    color: var(--color-texto);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.installation-card p {
    color: var(--color-texto);
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

/* Ajustes responsive para la página de instalación */
@media (max-width: 768px) {
    .installation-banner {
        padding: 60px 0;
    }
    
    .installation-banner h1 {
        font-size: 2.5rem;
    }
    
    .installation-banner p {
        font-size: 1.1rem;
    }
    
    .installation-cta {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .installation-banner {
        padding: 40px 0;
    }
    
    .installation-banner h1 {
        font-size: 2rem;
    }
    
    .installation-banner p {
        font-size: 1rem;
    }
    
    .installation-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .installation-card h4 {
        font-size: 1.3rem;
    }
}

/* 🔹 Estilos de la página Como Funciona */
.feature-section {
    padding: 80px 0;
    background: var(--secondary-color);
    border-radius: 15px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.feature-section:nth-of-type(1) {
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.15), rgba(13, 71, 161, 0.15));
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.feature-section:nth-of-type(2) {
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.15), rgba(46, 125, 50, 0.15));
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.feature-section:nth-of-type(3) {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.15), rgba(106, 27, 154, 0.15));
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.feature-section:nth-of-type(4) {
    background: linear-gradient(135deg, rgba(183, 28, 28, 0.15), rgba(211, 47, 47, 0.15));
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 255, 251, 0.2), rgba(0, 51, 215, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-texto);
    font-size: 1.5rem;
}

.feature-title-small {
    color: var(--color-texto);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-description-small {
    color: var(--color-texto);
    opacity: 0.8;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

.contact-cta-section {
    text-align: center;
    padding: 60px 0;
    margin-top: 40px;
}

.contact-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #00FFFB, #0033d7);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 51, 215, 0.3);
}

.contact-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 51, 215, 0.4);
}

/* 🔹 Estilos de la página de Precios */
.pricing-section {
    background: linear-gradient(135deg, #1a2035 0%, #232127 100%);
    padding: 80px 0;
    min-height: 100vh;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInDown 1s ease-out;
}

.pricing-header p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.pricing-card:nth-child(1) { animation-delay: 0.2s; }
.pricing-card:nth-child(2) { animation-delay: 0.4s; }
.pricing-card:nth-child(3) { animation-delay: 0.6s; }
.pricing-card:nth-child(4) { animation-delay: 0.8s; }
.pricing-card:nth-child(5) { animation-delay: 1s; }
.pricing-card:nth-child(6) { animation-delay: 1.2s; }

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(0, 255, 251, 0.3);
}

.pricing-card .card-body {
    padding: 2.5rem;
    position: relative;
    z-index: 1;
}

.pricing-card .feature-icon {
    font-size: 2.5rem;
    color: #00FFFB;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.pricing-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.pricing-card h5 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00FFFB;
    margin: 1rem 0;
    text-shadow: 0 0 10px rgba(0, 255, 251, 0.3);
}

.pricing-card .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.pricing-card ul li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.pricing-card ul li i {
    color: #00FFFB;
    font-size: 1.1rem;
}

.btn-pricing {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00FFFB, #0033d7);
    z-index: -1;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 255, 251, 0.3);
}

.btn-pricing:hover::before {
    transform: scale(1.1);
}

.pricing-card.featured {
    border: 2px solid #00FFFB;
    box-shadow: 0 0 30px rgba(0, 255, 251, 0.2);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 255, 251, 0.1), rgba(0, 51, 215, 0.1));
    z-index: 0;
}

.badge-estampa {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #00FFFB, #0033d7);
    color: #1a2035;
    padding: 5px 35px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 255, 251, 0.3);
    z-index: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajustes responsive */
@media (max-width: 992px) {
    .pricing-card {
        margin: 1rem 0;
    }
    
    .pricing-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .pricing-card .card-body {
        padding: 2rem;
    }
    
    .pricing-card .price {
        font-size: 2rem;
    }
    
    .pricing-header h1 {
        font-size: 2rem;
    }
}

/* 🔹 Estilos específicos de index.html */
.container-fluid-custom {
    padding: 50px 20px;
}

.feature-box-large {
    height: 700px;
    transition: transform 0.3s ease;
}

.feature-box-small {
    height: 340px;
    transition: transform 0.3s ease;
}

.feature-box-image-large {
    height: 550px;
    object-fit: cover;
}

.feature-box-image-small {
    height: 240px;
    object-fit: cover;
}

.section-gradient-dark {
    background: linear-gradient(135deg, #1a2035 0%, #232127 100%);
}

.feature-card-custom {
    background: rgba(255,255,255,0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.feature-icon-large {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00FFFB, #0033d7);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-large {
    font-size: 1.8rem;
}

.function-icon-custom {
    width: 40px;
    height: 40px;
    background: rgba(0,255,251,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-grid-custom {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.feature-card-span-2 {
    grid-column: span 2;
}

.feature-card-span-3 {
    grid-column: span 3;
}

.feature-icon-medium {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0,255,251,0.2), rgba(0,51,215,0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0,255,251,0.2), rgba(0,51,215,0.2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-medium {
    font-size: 1.5rem;
}

.icon-small {
    font-size: 1.2rem;
}

.icon-tiny {
    font-size: 1rem;
}

.cta-box-custom {
    background: linear-gradient(135deg, rgba(0,255,251,0.1), rgba(0,51,215,0.1));
    border: 1px solid rgba(0,255,251,0.2);
}

.btn-gradient {
    background: linear-gradient(135deg, #00FFFB, #0033d7);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 51, 215, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card-custom {
    background: rgba(255,255,255,0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,255,251,0.2);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-avatar-custom {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00FFFB, #0033d7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.question-container-hidden {
    display: none;
}

.requirement-card-white {
    background: #fff;
}

.requirement-icon-custom {
    min-width: 40px;
}

.btn-rounded {
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-rounded-large {
    border-radius: 30px;
    transition: all 0.3s ease;
}

.premium-badge-custom {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
}

.info-box-custom {
    background: rgba(255,255,255,0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.info-icon-custom {
    width: 50px;
    height: 50px;
    background: rgba(0,255,251,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 🔹 Barra de prueba gratis */
.trial-bar-container {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    padding: 0;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    overflow: hidden;
    height: 35px;
    display: flex;
    align-items: center;
    z-index: 1000;
}

.trial-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0;
    width: 100%;
    height: 100%;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ff0000;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.trial-text {
    color: #000;
    font-weight: 600;
    margin: 0;
    font-size: 0.9rem;
}

.check-eligibility-btn {
    padding: 4px 12px;
    font-size: 0.85rem;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    transition: all 0.3s ease;
}

.check-eligibility-btn:hover {
    background: #ffffff;
    transform: translateY(-1px);
}

/* Ajuste de la navbar para compensar la barra de prueba */
.navbar {
    background: var(--color-fondo) !important;
    border-bottom: 2px solid #ffffff !important;
    padding: 0.5rem 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    z-index: 1001;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Ajustes responsive para la barra de prueba */
@media (max-width: 576px) {
    .trial-text {
        font-size: 0.8rem;
    }
    
    .check-eligibility-btn {
        padding: 3px 10px;
        font-size: 0.75rem;
    }
}

/* Ajuste para el contenido principal */
main, .container-fluid, section:first-of-type {
    margin-top: 105px; /* 70px de navbar + 35px de trial bar */
}

/* Ajuste para el hero section */
.hero-section {
    margin-top: 100px; /* Altura de la navbar (70px) + margen adicional (30px) */
    padding: 40px 0;
}

/* 🔹 Estilos del Header */
.page-header {
    padding-top: 100px; /* Espacio para la navbar */
    padding-bottom: 50px;
    background: linear-gradient(135deg, var(--color-fondo), var(--color-tarjetas));
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/pattern.png') repeat;
    opacity: 0.1;
    z-index: 0;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-texto);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInDown 0.8s ease-out;
}

.page-description {
    font-size: 1.2rem;
    color: var(--color-texto);
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajustes responsive para el header */
@media (max-width: 768px) {
    .page-header {
        padding-top: 80px;
        padding-bottom: 30px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding-top: 70px;
        padding-bottom: 20px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
}

/* Estilos para las tarjetas de compatibilidad */
 .requirement-card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 251, 0.2);
}

.requirement-card .card-header {
    background: linear-gradient(135deg, rgba(0, 255, 251, 0.1), rgba(0, 51, 215, 0.1));
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.requirement-card.compatible-card .card-header {
    background: linear-gradient(135deg, rgba(0, 255, 251, 0.2), rgba(0, 51, 215, 0.2));
}

.requirement-card.not-compatible-card .card-header {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(215, 0, 0, 0.2));
}

.requirement-card .icon-container {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 251, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.requirement-card.compatible-card .icon-container {
    background: rgba(0, 255, 251, 0.2);
}

.requirement-card.not-compatible-card .icon-container {
    background: rgba(255, 0, 0, 0.2);
}

.requirement-card .icon-container i {
    font-size: 1.2rem;
    color: #00FFFB;
}

.requirement-card.compatible-card .icon-container i {
    color: #00FFFB;
}

.requirement-card.not-compatible-card .icon-container i {
    color: #FF0000;
}

.requirement-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
}

.requirement-card .requirement-item {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.requirement-card .requirement-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.requirement-card .requirement-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 255, 251, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.requirement-card .requirement-icon i {
    font-size: 1.2rem;
    color: #00FFFB;
}

.requirement-card .requirement-content h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.requirement-card .requirement-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.requirement-card .card-footer {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.requirement-card .btn-compatible {
    background: linear-gradient(135deg, #00FFFB, #0033d7);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.requirement-card .btn-compatible:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 251, 0.3);
}

.requirement-card .btn-not-compatible {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(215, 0, 0, 0.2));
    color: white;
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.requirement-card .btn-not-compatible:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

/* Estilos para los botones de FAQ y Contacto */
.section-buttons-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.section-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a2035 0%, #232127 100%);
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid rgba(0,255,251,0.2);
}

.section-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,255,251,0.1), rgba(0,51,215,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-button:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,255,251,0.2);
}

.section-button:hover::before {
    opacity: 1;
}

.section-button i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00FFFB;
    transition: transform 0.3s ease;
}

.section-button:hover i {
    transform: scale(1.2);
}

.section-button h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.section-button p {
    text-align: center;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

@media (max-width: 768px) {
    .section-buttons-container {
        grid-template-columns: 1fr;
    }
}

/* Estilos para la sección de planes */
.price-box-rgb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #ff0000, #00ff00, #0000ff, #ff0000);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    border: none;
    transition: transform 0.3s ease;
}

.price-box-rgb:hover {
    transform: translateY(-10px);
}

.price-box-rgb .icon-container {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.price-box-rgb .icon-container i {
    font-size: 2rem;
    color: white;
}

.price-box-rgb .action-btn {
    background: white;
    color: #1a2035;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.price-box-rgb .action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.wider-card {
    min-width: 320px;
    max-width: 100%;
}

.wider-card .card-body {
    padding: 2rem;
}

/* Ajustes generales para móviles */
@media (max-width: 768px) {
    .container-fluid-custom {
        padding: 30px 15px;
    }

    .feature-grid-custom {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card-span-2,
    .feature-card-span-3 {
        grid-column: span 1;
    }

    .pricing-card {
        margin: 1rem 0;
        max-width: 100%;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .social-box {
        padding: 20px;
    }

    .section-buttons-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .section-button {
        padding: 1.5rem;
    }

    .section-button i {
        font-size: 2rem;
    }

    .section-button h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .container-fluid-custom {
        padding: 20px 10px;
    }

    .feature-card {
        margin-bottom: 15px;
    }

    .feature-icon-large {
        width: 50px;
        height: 50px;
    }

    .feature-icon-medium {
        width: 40px;
        height: 40px;
    }

    .feature-icon-small {
        width: 35px;
        height: 35px;
    }

    .icon-large {
        font-size: 1.5rem;
    }

    .icon-medium {
        font-size: 1.2rem;
    }

    .icon-small {
        font-size: 1rem;
    }

    .btn-gradient {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .testimonial-avatar-custom {
        width: 40px;
        height: 40px;
    }
}

/* Ajustes del chatbot para móviles */
@media (max-width: 768px) {
    #chatbot {
        width: 90%;
        right: 5%;
        bottom: 80px;
    }

    #chatbot-btn {
        width: 100px;
        height: 45px;
        bottom: 80px;
        right: 20px;
        font-size: 0.8rem;
    }

    #chatbot-btn::before {
        font-size: 1rem;
        margin-right: 5px;
    }

    .chatbot-minimized {
        width: 50px !important;
        height: 50px !important;
        bottom: 80px !important;
        right: 20px !important;
    }

    .chatbot-minimized::after {
        font-size: 1.2rem;
    }

    .trial-bar-container {
        height: 30px;
    }

    .trial-text {
        font-size: 0.8rem;
    }

    .check-eligibility-btn {
        padding: 3px 10px;
        font-size: 0.75rem;
    }

    .pulse-dot {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 576px) {
    #chatbot {
        width: 95%;
        right: 2.5%;
        bottom: 70px;
    }

    #chatbot-btn {
        width: 90px;
        height: 40px;
        bottom: 70px;
        right: 15px;
        font-size: 0.75rem;
    }

    .chatbot-minimized {
        width: 45px !important;
        height: 45px !important;
        bottom: 70px !important;
        right: 15px !important;
    }

    .trial-bar-container {
        height: 25px;
    }

    .trial-text {
        font-size: 0.7rem;
    }

    .check-eligibility-btn {
        padding: 2px 8px;
        font-size: 0.7rem;
    }
}