body, html {
    margin: 0;
    padding: 0;
    background-color: #0a0a0a;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

#particles-js {
    display: none;
}

.page-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

.global-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.overlay {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    width: 100%;
    padding-top: 76px; /* Altura del navbar */
    background: rgba(10, 10, 10, 0.4); /* Fondo semi-transparente para mejorar contraste */
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(10, 14, 23, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.display-3 {
    font-weight: 700;
    letter-spacing: -1px;
    background: linear-gradient(45deg, #fff, #32cd32);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s ease infinite;
}

@keyframes gradientText {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

.lead {
    color: #a0a0a0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer {
    background: rgba(10, 14, 23, 0.95);
    margin-top: 4rem;
    position: relative;
    z-index: 3;
}

.footer-content {
    padding: 3rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: #32cd32;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(50, 205, 50, 0.1);
    border-color: #32cd32;
    color: #32cd32;
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 1rem 0;
    font-size: 0.85rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
}

.footer-badges span a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-badges span a:hover {
    color: #32cd32;
}

@media (max-width: 768px) {
    .footer-content {
        padding: 2rem 0 1.5rem;
    }

    .trust-messages {
        padding: 1rem 0;
    }
    
    .trust-messages .col-md-4 {
        margin-bottom: 0.75rem;
    }
    
    .trust-messages .col-md-4:last-child {
        margin-bottom: 0;
    }
    
    .risk-warning {
        padding: 0.75rem 0;
    }
    
    .risk-warning p {
        font-size: 0.75rem;
    }

    .footer-bottom {
        padding: 0.75rem 0;
    }
}

/* Efectos hover en links */
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #32cd32;
    transition: all 0.3s ease;
}

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

/* Estilo para cuando el usuario no está conectado */
.nav-link.not-connected::after {
    background: #ff4444;
}

.nav-link.not-connected:hover::after {
    background: #ff4444;
}

/* Media queries */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

/* Estilos para las banderas */
.flag-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    object-fit: cover;
}

.flag-img:hover {
    transform: scale(1.1);
}

.flag-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Estilos para las cards de contacto */
.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(50, 205, 50, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 3rem;
    color: #32cd32;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-card h3 {
    color: white;
    font-weight: 600;
}

.contact-card p {
    color: #a0a0a0;
    font-size: 0.95rem;
}

/* Efectos hover específicos para cada plataforma */
.contact-card:hover .fa-whatsapp {
    color: #25D366;
    transform: scale(1.1);
}

.contact-card:hover .fa-telegram {
    color: #0088cc;
    transform: scale(1.1);
}

/* Ajuste responsivo */
@media (max-width: 768px) {
    .contact-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
}

.contact-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-logo {
    transform: scale(1.1);
}

.card-icon i {
    font-size: 3rem;
    color: #32cd32;
    transition: all 0.3s ease;
}

/* Colores específicos para cada plataforma */
.contact-card:hover .bi-whatsapp,
.contact-card:hover .fa-whatsapp {
    color: #25D366;
}

.contact-card:hover .bi-telegram,
.contact-card:hover .fa-telegram {
    color: #0088cc;
}

/* Estilos para las cards de productos */
.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 205, 50, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.product-header {
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
}

.product-icon {
    font-size: 3rem;
    color: #32cd32;
    margin-bottom: 1.5rem;
}

.product-header h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.product-subtitle {
    color: #a0a0a0;
    font-size: 1.1rem;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.product-features li i {
    color: #32cd32;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.product-footer {
    text-align: center;
}

.product-footer .btn-outline-light {
    border-width: 2px;
    padding: 0.8rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-footer .btn-outline-light.available {
    border-color: #32cd32;
    color: #32cd32;
}

.product-footer .btn-outline-light.available:hover {
    background: rgba(50, 205, 50, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(50, 205, 50, 0.2);
}

.product-footer .btn-outline-light.coming-soon {
    border-color: rgba(50, 205, 50, 0.3);
    color: rgba(50, 205, 50, 0.5);
    cursor: not-allowed;
    opacity: 0.7;
    background: rgba(50, 205, 50, 0.05);
}

.product-footer .btn-outline-light.coming-soon:hover {
    background: rgba(50, 205, 50, 0.08);
    transform: none;
    border-color: rgba(50, 205, 50, 0.3);
}

.product-footer .btn-outline-light.coming-soon i {
    color: rgba(50, 205, 50, 0.6);
}

.product-footer .btn-outline-light.available::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 100%;
    top: 0;
    left: -50px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -50px; }
    100% { left: 150%; }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card {
        padding: 2rem;
    }

    .product-header h2 {
        font-size: 1.5rem;
    }

    .product-features li {
        font-size: 1rem;
    }
}

/* Estilos para páginas de producto */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-icon {
    font-size: 2.5rem;
    color: #32cd32;
    margin-bottom: 1rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card .pricing-header {
    margin-bottom: 2rem;
}

.pricing-card .features-list {
    flex-grow: 1;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 205, 50, 0.2);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    color: white;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    color: #32cd32;
    font-weight: bold;
}

.price span {
    font-size: 1rem;
    color: #a0a0a0;
}

.cta-section {
    padding: 3rem;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 15px;
    scroll-margin-top: 80px; /* Para compensar la altura del navbar fijo */
}

/* Estilos adicionales para la página de producto */
.benefit-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.benefit-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.benefit-features li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.benefit-features li i {
    color: var(--success-color);
    font-size: 1rem;
    margin-right: 0.5rem;
}

.pricing-card.premium {
    border-color: #32cd32;
    transform: scale(1.05);
}

.cta-section {
    background: linear-gradient(45deg, rgba(50, 205, 50, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    padding: 3rem;
}

/* Ajustar el espaciado entre las cards */
.pricing-section .row {
    gap: 2rem; /* Esto añade espacio entre las cards */
}

.features-list {
    list-style-type: none; /* Esto quita los puntos de la lista */
    padding: 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: white;
    list-style: none; /* Aseguramos que no haya puntos */
}

/* Estilos para la sección FAQ */
.faq-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.faq-section .container {
    padding-bottom: 0;
}

.accordion-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-button {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 1.25rem;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    background: rgba(50, 205, 50, 0.1);
    color: #32cd32;
}

.accordion-button::after {
    filter: invert(1); /* Hace el ícono blanco */
}

.accordion-body {
    background: rgba(255, 255, 255, 0.02);
    color: white;
    padding: 1.25rem;
    line-height: 1.6;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(50, 205, 50, 0.2);
}

.accordion-button:hover {
    background: rgba(255, 255, 255, 0.08);
}

.description-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
}

.description-card h3 {
    color: #32cd32;
    font-size: 1.4rem;
}

.description-card p {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.1rem;
    opacity: 0.9;
}

.description-card i {
    opacity: 0.8;
}

.download-section {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 3rem 0;
    margin: 2rem 0;
}

.download-buttons {
    padding: 1rem 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.btn-download {
    background-color: #2c3e50;
    color: white;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    min-width: 250px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 3.5rem;
    margin: 0 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-download:hover {
    background-color: #34495e;
    color: white;
    transform: translateY(-2px);
}

.btn-download i {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    margin-right: 10px;
    line-height: 0;
    flex-shrink: 0;
}

/* Ajustes responsivos para botones de descarga */
@media (max-width: 991.98px) {
    .download-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-download {
        width: 100%;
        min-width: unset;
        max-width: 100%;
        padding: 0.75rem 1rem;
        height: 3.25rem;
        font-size: 0.95rem;
    }
    
    .btn-download i {
        font-size: 1rem;
        margin-right: 8px;
    }
}

@media (max-width: 360px) {
    .btn-download {
        font-size: 0.85rem;
        padding: 0.75rem 0.75rem;
    }
    
    .btn-download i {
        font-size: 0.9rem;
        margin-right: 6px;
    }
}

/* Asegurar que los botones no se desborden en ningún breakpoint */
@media (min-width: 768px) and (max-width: 991.98px) {
    .download-buttons {
        flex-direction: column;
    }
    
    .btn-download {
        width: 100%;
    }
}

/* Override de clases de Bootstrap que puedan causar conflicto */
.download-buttons.d-flex {
    display: flex !important;
}

.download-buttons .btn-download.w-100,
.download-buttons .btn-download.w-md-auto {
    width: auto !important;
}

@media (max-width: 767.98px) {
    .download-buttons .btn-download.w-100 {
        width: 100% !important;
    }
}

/* Eliminar márgenes de Bootstrap que puedan interferir */
.download-buttons .btn-download.me-md-3,
.download-buttons .btn-download.mb-2,
.download-buttons .btn-download.mb-md-3 {
    margin: 0 !important;
}

/* Estilos para la tabla de errores */
.description-card .table {
    color: #a0a0a0;
    margin-bottom: 0;
    background: transparent;
}

.description-card .table thead th {
    background: rgba(50, 205, 50, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    padding: 1rem;
}

.description-card .table tbody td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    vertical-align: middle;
    background: transparent;
    color: #a0a0a0;
}

.description-card .table-hover tbody tr:hover td {
    color: #ffffff;
}

.description-card .table .table-section td {
    background: rgba(50, 205, 50, 0.05);
    color: #32cd32;
    font-weight: 600;
    padding: 0.75rem 1rem;
}

.description-card .table code {
    background: rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.description-card .table-hover tbody tr:hover code {
    color: #ffffff;
}

/* Ajuste del card contenedor */
.description-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .description-card {
        padding: 1rem !important;
    }
    
    .description-card .table td,
    .description-card .table th {
        padding: 0.75rem;
    }
}

/* Estilos para el sidebar de documentación */
.sidebar .nav-link {
    color: #a0a0a0;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin-bottom: 0.25rem;
}

/* Estilos específicos para links principales */
.sidebar > .nav-link,
.sidebar .nav > .nav-link {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Ajustes para el sub-nav */
.sidebar .sub-nav {
    padding-left: 2rem; /* Aumentamos el padding izquierdo */
    margin: 0.25rem 0 0.75rem 0; /* Reducimos el margen superior y aumentamos el inferior */
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

/* Estilos para los links del sub-nav */
.sidebar .sub-nav .nav-link {
    font-size: 0.85rem; /* Reducimos el tamaño de fuente */
    padding: 0.25rem 0.75rem; /* Reducimos el padding */
    margin-bottom: 0.1rem; /* Reducimos el espacio entre elementos */
    opacity: 0.8; /* Hacemos los subelementos ligeramente más tenues */
}

.sidebar .sub-nav .nav-link:hover {
    opacity: 1;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03); /* Hover más sutil para subelementos */
}

.sidebar .sub-nav .nav-link.active {
    padding-left: calc(0.75rem - 2px);
    background: rgba(50, 205, 50, 0.05); /* Fondo más sutil cuando está activo */
}

/* Ajuste para los iconos en el sidebar */
.sidebar .nav-link i {
    width: 20px;
    text-align: center;
    color: #32cd32;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.sidebar .nav-link:hover i {
    opacity: 1;
}

/* Estilos para el botón de menú móvil */
.btn-dark {
    background: rgba(10, 14, 23, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-dark:hover {
    background: rgba(50, 205, 50, 0.1);
    border-color: rgba(50, 205, 50, 0.2);
}

/* Estilos para el offcanvas */
.offcanvas {
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-title {
    color: #32cd32;
    font-weight: 600;
}

.btn-close {
    filter: invert(1) brightness(200%);
}

/* Ajustes para el contenido del offcanvas */
.offcanvas .nav-link {
    color: #a0a0a0;
}

.offcanvas .nav-link:hover {
    color: #ffffff;
}

.offcanvas .sub-nav {
    border-left-color: rgba(255, 255, 255, 0.1);
}

/* Modificar solo el estilo del botón flotante */
.menu-toggle-btn {
    position: fixed;
    bottom: 80px; /* Ajustado para estar justo encima del footer */
    left: 50%; /* Centrar horizontalmente */
    transform: translateX(-50%); /* Asegurar centrado perfecto */
    width: 45px;    /* Mantener tamaño actual */
    height: 45px;   /* Mantener tamaño actual */
    border-radius: 50%;
    background: rgba(10, 14, 23, 0.95); /* Color de la brand */
    border: 1px solid rgba(50, 205, 50, 0.2); /* Borde verde sutil como la brand */
    color: #32cd32; /* Color verde de la brand */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1060; /* Aumentar el z-index para que esté siempre visible */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.menu-toggle-btn:hover {
    background: rgba(50, 205, 50, 0.1);
    border-color: rgba(50, 205, 50, 0.3);
}

.text-success {
    color: #32cd32 !important;
}

.btn-success {
    background-color: #32cd32;
    border-color: #32cd32;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1;
}

.btn-success i {
    display: flex;
    align-items: center;
    line-height: 0;
}

.btn-success:hover {
    background-color: #28a428;
    border-color: #28a428;
}

.btn-outline-success {
    color: #32cd32;
    border-color: #32cd32;
}

.btn-outline-success:hover {
    background-color: #32cd32;
    border-color: #32cd32;
}

/* Estilos para los alerts */
.alert {
    background: rgba(50, 205, 50, 0.1);
    border: 1px solid rgba(50, 205, 50, 0.2);
    color: #ffffff;
    border-radius: 8px;
    padding: 1rem 1.25rem;
}

.alert i {
    color: #32cd32;
    margin-right: 0.5rem;
}

.alert-info {
    background: rgba(50, 205, 50, 0.1);
    border-color: rgba(50, 205, 50, 0.2);
}

.alert-warning {
    background: rgba(50, 205, 50, 0.15);
    border-color: rgba(50, 205, 50, 0.25);
}

.alert-info i,
.alert-warning i {
    color: #32cd32;
}

.alert strong {
    color: #32cd32;
}

.alert a {
    color: #32cd32;
    text-decoration: none;
}

.alert a:hover {
    text-decoration: underline;
    color: #28a428;
}

/* Estilos para las secciones dentro de description-card */
.description-card .section-divider {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin: 2.5rem 0;
}

.description-card .section-divider:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Ajustes específicos para la sección de descarga */
.description-card div#download.section-divider {
    margin: 1.5rem 0 !important;
}

.description-card #download .download-info {
    margin-bottom: 1.5rem;
}

.description-card #download .download-notes {
    margin-top: 1.5rem;
}

.description-card .section-content {
    padding: 0.5rem 0;
}

/* Ajuste de espaciado para los títulos de sección */
.description-card .section-title {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.description-card .section-title > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.description-card .section-title i {
    color: #32cd32;
    font-size: 1.25rem;
}

/* Estilos para los pasos de instalación */
.step-number {
    width: 40px;
    height: 40px;
    background: rgba(50, 205, 50, 0.1);
    border: 2px solid #32cd32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: #32cd32;
    flex-shrink: 0; /* Evita que el número se encoja */
}

.download-box {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.version-badge .badge {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background-color: rgba(50, 205, 50, 0.2);
    border: 1px solid rgba(50, 205, 50, 0.3);
    color: #32cd32;
}

.step-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.step-box:hover {
    transform: translateY(-5px);
    background: rgba(50, 205, 50, 0.05);
    border-color: rgba(50, 205, 50, 0.2);
}

.step-icon {
    font-size: 2rem;
    color: #32cd32;
    margin-bottom: 1rem;
}

.step-title {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-description {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.activation-steps .step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-marker {
    width: 30px;
    height: 30px;
    background: rgba(50, 205, 50, 0.1);
    border: 2px solid #32cd32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #32cd32;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    overflow-x: hidden; /* Prevenir desbordamiento horizontal */
}

.code-block {
    max-width: 100%;
    overflow-x: auto;
    margin: 1rem 0;
}

.code-content {
    margin: 0;
    padding: 1rem;
    overflow-x: auto;
    white-space: pre-wrap; /* Permitir que el código se ajuste */
    word-wrap: break-word; /* Asegurar que las palabras largas se rompan */
}

.code-content code {
    display: block;
    color: #e0e0e0;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Ajustes responsivos para móviles */
@media (max-width: 768px) {
    .step-item {
        width: 100%;
    }
    
    .step-content {
        width: 100%;
    }
    
    .code-block {
        margin: 0.5rem 0;
        border-radius: 6px;
    }
    
    .code-content {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .code-content code {
        font-size: 0.8rem;
    }
    

    
    .btn-copy {
        padding: 0.2rem 0.5rem;
        font-size: 0.75rem;
    }
}

.verification-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.verification-item:hover {
    transform: translateY(-5px);
    background: rgba(50, 205, 50, 0.05);
    border-color: rgba(50, 205, 50, 0.2);
}

.verification-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.verification-item h6 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.license-info-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
}

/* Estilos para la página de inicio */
.trust-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 205, 50, 0.2);
}

.trust-card i {
    font-size: 2rem;
    color: #32cd32;
}

.trust-card h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.trust-card p {
    color: #a0a0a0;
}

.cta-section {
    background: linear-gradient(45deg, rgba(50, 205, 50, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(50, 205, 50, 0.2);
    border-radius: 15px;
    padding: 3rem;
}

/* Estilos para la sección demo */
.demo-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(50, 205, 50, 0.2);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: inline-block;
    margin: 0 auto;
}

.demo-info p {
    margin-bottom: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Ajuste para los botones en móvil */
@media (max-width: 768px) {
    .d-flex.justify-content-center.gap-3 {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .d-flex.justify-content-center.gap-3 .btn {
        width: 100%;
    }
}

/* Estilos para el badge de disponibilidad */
.availability-badge {
    text-align: center;
}

.availability-badge .badge {
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.availability-badge .badge i {
    font-size: 1.1rem;
}

/* Estilos para la tabla comparativa */
.comparison-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.comparison-section:hover {
    border-color: rgba(50, 205, 50, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.comparison-section h3 {
    color: #32cd32;
    margin-bottom: 2rem;
}

.comparison-table {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    max-width: 900px;
}

.comparison-table thead tr {
    border-bottom: 1px solid rgba(50, 205, 50, 0.1);
}

.comparison-table th {
    color: #ffffff;
    font-weight: 600;
    padding: 1.25rem 1rem;
    text-align: center;
    border: none;
    background: transparent;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 1.25rem 1rem;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    vertical-align: middle;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    background: transparent;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    text-align: left;
    color: #ffffff;
    font-weight: 500;
}

.comparison-table .highlight {
    color: #ffffff;
}

.comparison-table i.fa-check {
    color: #32cd32;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    text-shadow: 0 0 10px rgba(50, 205, 50, 0.3);
}

.comparison-table i.fa-times {
    color: #ff4444;
    font-size: 1.2rem;
    margin-right: 0.75rem;
    text-shadow: 0 0 10px rgba(255, 68, 68, 0.3);
}

.comparison-table tbody tr {
    transition: background-color 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(50, 205, 50, 0.05);
}

/* Override de estilos de Bootstrap para la tabla */
.table {
    margin-bottom: 0;
    color: inherit;
}

.table>:not(caption)>*>* {
    background-color: transparent;
    box-shadow: none;
    color: inherit;
}

.table tbody {
    border-color: transparent;
}

/* Estilos para las tarjetas de beneficios */
.benefit-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.benefit-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.benefit-features li {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.benefit-features li i {
    color: var(--success-color);
    font-size: 1rem;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-card i {
        font-size: 2rem;
    }
    
    .benefit-card h4 {
        font-size: 1.1rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    .benefit-features li {
        font-size: 0.85rem;
    }
}


.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #32cd32;
    margin-right: 1rem;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators [data-bs-target] {
    background-color: #32cd32;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 8px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
}

.carousel-inner {
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .carousel {
        padding: 2rem;
    }

    .carousel-content {
        padding: 0 1rem;
        min-height: auto;
    }

    .carousel-inner {
        padding: 0 1rem;
    }

    .carousel-icon {
        font-size: 5rem;
        margin-top: 2rem;
    }

    .feature-list li {
        font-size: 1rem;
    }
}

.navbar-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .navbar-logo {
        height: 32px;
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand span {
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Estilos para la sección de beneficios */
.benefits-section {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(50, 205, 50, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(50, 205, 50, 0.05) 0%, transparent 50%);
    z-index: -1;
}

.benefits-hexagon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hexagon-item {
    width: 150px;
    height: 170px;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hexagon-item:hover {
    transform: translateY(-10px);
}

.hexagon-content {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hexagon-icon {
    width: 60px;
    height: 60px;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.hexagon-item:hover .hexagon-icon {
    background: rgba(50, 205, 50, 0.2);
    transform: scale(1.1);
}

.hexagon-icon i {
    font-size: 1.5rem;
    color: #32cd32;
}

.hexagon-item h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.hexagon-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all 0.3s ease;
    z-index: 0;
}

.hexagon-item:hover::before {
    background: rgba(50, 205, 50, 0.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hexagon-item.active::before {
    background: rgba(50, 205, 50, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hexagon-item.active .hexagon-icon {
    background: rgba(50, 205, 50, 0.3);
    transform: scale(1.1);
}

.benefits-details-container {
    max-width: 800px;
    margin: 0 auto;
}

.benefit-details {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
}

.benefit-details.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.benefit-details-content {
    text-align: center;
}

.benefit-details-icon {
    width: 80px;
    height: 80px;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(50, 205, 50, 0.3);
}

.benefit-details-icon i {
    font-size: 2rem;
    color: #32cd32;
}

.benefit-details h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.5rem;
}

.benefit-details p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.benefit-features {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.benefit-features li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.benefit-features li:hover {
    background: rgba(50, 205, 50, 0.1);
    transform: translateY(-3px);
}

.benefit-features li i {
    color: #32cd32;
    margin-right: 0.75rem;
}

@media (max-width: 992px) {
    .benefits-hexagon-grid {
        gap: 1rem;
    }
    
    .hexagon-item {
        width: 120px;
        height: 140px;
    }
}

@media (max-width: 768px) {
    .benefits-hexagon-grid {
        gap: 0.75rem;
    }
    
    .hexagon-item {
        width: 100px;
        height: 120px;
    }
    
    .hexagon-icon {
        width: 50px;
        height: 50px;
    }
    
    .hexagon-icon i {
        font-size: 1.2rem;
    }
    
    .hexagon-item h4 {
        font-size: 0.9rem;
    }
    
    .benefit-details {
        padding: 1.5rem;
    }
    
    .benefit-features {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-features li {
        width: 100%;
        justify-content: center;
    }
}
.process-section {
    padding: 3rem 0;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-step {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #32cd32;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-card i {
    font-size: 2rem;
}

.process-card h5 {
    color: white;
    margin: 1rem 0;
}

.process-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.sales-contact {
    margin-top: 3rem;
}

.sales-contact p {
    font-size: 0.9rem;
    opacity: 0.8;
}

    /* Estilos para la documentación */
    .sidebar {
        position: sticky;
        top: 20px;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
    }
    
    section[id], div[id].section-divider {
        padding: 2rem 0;
        scroll-margin-top: 2rem;
    }

    .sub-section {
        min-height: auto;
        padding: 1rem 0;
    }
    
    .sidebar .nav-link {
        padding: 0.5rem 1rem;
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
        border-radius: 6px;
        margin-bottom: 0.25rem;
        position: relative;
        text-decoration: none;
        cursor: pointer;
    }
    
    .sidebar .nav-link:hover {
        color: #32cd32;
        background: rgba(50, 205, 50, 0.1);
        transform: translateX(5px);
    }
    
    .sidebar .nav-link.active {
        color: #32cd32;
        background: rgba(50, 205, 50, 0.1);
        font-weight: 600;
        transform: translateX(5px);
    }
    
    .sidebar .nav-link.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 3px;
        background-color: #32cd32;
        border-radius: 3px;
    }
    
    .sidebar .sub-nav {
        padding-left: 1.5rem;
        margin-top: 0.25rem;
    }
    
    .sidebar .sub-nav .nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    /* Ajustes responsivos */
    @media (max-width: 991px) {
        .sidebar {
            height: auto;
            position: relative;
            top: 0;
        }
    }

    /* Estilos para bloques de código */
    .code-block {
        background: rgba(0, 0, 0, 0.3);
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid rgba(50, 205, 50, 0.2);
    }

    .code-header {
        background: rgba(50, 205, 50, 0.1);
        padding: 0.75rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(50, 205, 50, 0.2);
        width: 100%;
    }

    .code-title {
        color: #32cd32;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .btn-copy {
        background: rgba(50, 205, 50, 0.1);
        border: 1px solid rgba(50, 205, 50, 0.3);
        color: #32cd32;
        padding: 0.25rem 0.75rem;
        font-size: 0.8rem;
        transition: all 0.3s ease;
    }

    .btn-copy:hover {
        background: rgba(50, 205, 50, 0.2);
        border-color: rgba(50, 205, 50, 0.5);
    }

    .code-content {
        margin: 0;
        padding: 1rem;
        overflow-x: auto;
    }

    .code-content code {
        color: #e0e0e0;
        font-family: 'Consolas', 'Monaco', monospace;
        font-size: 0.9rem;
        line-height: 1.5;
        white-space: pre;
        display: block;
    }

    /* Ajustes responsivos */
    @media (max-width: 768px) {
        .code-block {
            margin: 0.5rem 0;
        }
        
        .code-content {
            padding: 0.75rem;
        }
        
        .code-content code {
            font-size: 0.8rem;
        }
    }

    /* Ajustes responsivos para la tabla de comparación */
    @media (max-width: 768px) {
        .feature-column {
            display: none !important;
        }
        
        .feature-name {
            display: none !important;
        }
        
        .comparison-table th, 
        .comparison-table td {
            padding: 1rem 0.5rem;
            font-size: 0.9rem;
        }
        
        .feature-content {
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }
        
        .feature-content i {
            font-size: 1.2rem;
        }
        
        .feature-content span {
            text-align: center;
            font-size: 0.85rem;
            line-height: 1.2;
        }
        
        .comparison-table .highlight {
            background: rgba(50, 205, 50, 0.05);
        }
    }

    .feature-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .feature-content i.fa-check-circle {
        color: #32cd32;
    }

    .feature-content i.fa-times-circle {
        color: #ff4444;
    }
    .custom-blob-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('/static/images/blob1.svg') no-repeat center center;
        background-size: cover;
        opacity: 0.08;
        z-index: 0;
    }
    
    .carousel-progress-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        height: 4px;
        background: #32cd32;
        animation: fill 5s linear infinite;
        z-index: 10;
    }
    
    @keyframes fill {
        from { width: 0%; }
        to { width: 100%; }
    }    /* Estilos para el Swiper */
    .hero-swiper {
        position: relative;
        overflow: hidden;
    }

    .swiper-slide {
        opacity: 0;
        transition: opacity 0.5s ease;
    }    .swiper-slide-active {
        opacity: 1;
    }

    .swiper-slide-prev,
    .swiper-slide-next {
        opacity: 0;
    }

    .swiper-slide-active .row,
    .swiper-slide-active .col-md-6 {
        opacity: 1;
        transform: translateY(0);
        transition: all 0.5s ease;
    }

    .swiper-slide:not(.swiper-slide-active) .row,
    .swiper-slide:not(.swiper-slide-active) .col-md-6 {
        opacity: 0;
        transform: translateY(20px);
    }

    /* Eliminar estilos antiguos de AOS y agregar nuevos estilos de transición */
    [data-aos] {
        transition: all 0.8s ease-out;
    }

    /* Estilos iniciales para prevenir flash de contenido */
    html.loading {
        opacity: 0;
        visibility: hidden;
    }

    html.loading * {
        transition: none !important;
    }

    [data-aos] {
        opacity: 0;
        visibility: hidden;
        transition: all 1.5s cubic-bezier(0.23, 1, 0.32, 1);
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-content .text-center {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.service-content .btn {
    margin: 0 auto;
    width: fit-content;
}

.feature-list-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.feature-list-modern li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: #fff;
    opacity: 0.9;
}

.feature-list-modern li i {
    color: #32cd32;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(50, 205, 50, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #32cd32);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-description {
    color: #a0a0a0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #ffffff;
}

.service-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-top: -96px; /* Compensar el navbar */
}


.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
}

.sphere-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(50, 205, 50, 0.15), transparent 95%);
    top: -100px;
    left: -100px;
}

.sphere-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1), transparent 95%);
    bottom: -50px;
    right: -50px;
}

.sphere-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle at center, rgba(50, 205, 50, 0.1), transparent 95%);
    top: 40%;
    left: 60%;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.005) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.005) 1px, transparent 1px);
    background-size: 30px 30px;
}

.min-vh-85 {
    min-height: 85vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    background: rgba(50, 205, 50, 0.15);
    border: 1px solid rgba(50, 205, 50, 0.3);
    border-radius: 50px;
    color: #32cd32;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.15);
    transition: all 0.3s ease;
}




.tech-badge i {
    font-size: 1rem;
    color: #32cd32;
    animation: boltPulse 1.5s infinite;
}

@keyframes boltPulse {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.1);
        filter: brightness(1.3) drop-shadow(0 0 5px rgba(50, 205, 50, 0.5));
    }
    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

.tech-badge-product {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(50, 205, 50, 0.15);
    border: 1px solid rgba(50, 205, 50, 0.3);
    border-radius: 50px;
    color: #32CD32;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(50, 205, 50, 0.2);
    transition: all 0.3s ease;
}

.tech-badge-product:hover {
    background: rgba(50, 205, 50, 0.2);
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.3);
}

.tech-badge-product i {
    font-size: 1rem;
    color: #32CD32;
    filter: drop-shadow(0 0 5px rgba(50, 205, 50, 0.3));
}

.tech-badge-product i {
    font-size: 1rem;
}


.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.gradient-text {
    background: linear-gradient(45deg, #32cd32, #00ffff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}


.feature-chip.first{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(3, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.feature-chip:hover {
    background: rgba(50, 205, 50, 0.1);
    border-color: rgba(50, 205, 50, 0.2);
    transform: translateY(-2px);
}

.feature-chip i {
    color: #32cd32;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.btn-gradient {
    background: linear-gradient(45deg, rgba(37, 151, 37, 0.9), rgba(12, 134, 134, 0.9));
    border: none;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(50, 205, 50, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3),
                 0 1px 2px rgba(0, 0, 0, 0.4);
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(50, 205, 50, 0.4);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4),
                 0 1px 2px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, rgba(50, 205, 50, 0.95), rgba(0, 255, 255, 0.95));
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.4));
}

.btn-gradient:hover i {
    transform: translateX(3px) scale(1.1);
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.5));
}

.btn-outline-modern {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-outline-modern:hover {
    border-color: #32cd32;
    color: #32cd32;
    background: rgba(50, 205, 50, 0.1);
}

/* Code Window Styles */
.hero-visual {
    position: relative;
    z-index: 2;
}

.code-window {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.window-header {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
    margin-right: 1rem;
}

.window-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.window-controls span:nth-child(1) { background: #ff5f57; }
.window-controls span:nth-child(2) { background: #febc2e; }
.window-controls span:nth-child(3) { background: #28c840; }

.window-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-family: monospace;
}

.window-content {
    padding: 1.5rem;
}

.window-content pre {
    margin: 0;
}

.window-content code {
    color: #e0e0e0;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Tech Cards */
.tech-card {
    position: absolute;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.97);
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 205, 50, 0.3);
}

.card-1 {
    top: -20px;
    right: 20px;
}

.card-2 {
    bottom: 40px;
    left: 20px;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    color: #32cd32;
    font-size: 1.2rem;
}

.card-content {
    flex: 1;
}

.card-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.card-metric {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.metric-value {
    color: #32cd32;
    font-size: 1.1rem;
    font-weight: 600;
}

.metric-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

/* Platform Section */
.platform-section {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.platform-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.platform-item:hover {
    transform: translateY(-5px);
}

.platform-logo {
    height: 50px;
    width: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(200%);
}

.platform-item:hover .platform-logo {
    opacity: 1;
    filter: none;
}

.platform-name {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .tech-card {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        margin-bottom: 1rem;
    }

    .platform-grid {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
    }

    .feature-chip {
        width: 100%;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .platform-item {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 0px; /* Más padding en móviles */
    }
    
    .hero-content {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

/* Estilos específicos para las cards de apps */
.apps-card.product-card {
    padding: 0 !important;
    background: transparent;
    border: none;
}

.card-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
}

.product-header {
    text-align: center;
    width: 100%;
    margin-bottom: 1rem;
}

.product-image {
    width: 100%;
    max-width: 600px;
    margin: 1rem auto;
}

.product-icon {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.product-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.apps-card .product-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background: transparent;
    border: none;
    width: 100%;
    height: auto;
}

.apps-card .product-icon {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    margin: auto;
    display: block;
}

.apps-card .product-image {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.apps-card .icon-arrow {
    color: #666;
    font-size: 2.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.apps-card.product-card.available .card-layout {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.03), rgba(255, 255, 255, 0.02));
}

@media (max-width: 768px) {
    .card-layout {
        flex-direction: column;
    }
    
    .apps-card .product-image,
    .product-content {
        width: 100%;
    }
    
    .apps-card .product-image {
        border-radius: 12px 12px 0 0;
        height: 400px;
    }
    
    .product-content {
        border-radius: 0 0 12px 12px;
        padding: 2rem;
    }
}

/* Estilos específicos para las cards de apps */
.apps-card.product-card {
    padding: 0 !important;
    background: transparent;
    border: none;
}

.card-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
}

/* Estilos para la sección de servicios */
.services-section {
    padding-top: 2rem;  /* Reducido de lo que tenías antes */
    padding-bottom: 4rem;
}

.services-section .hero-title {
    margin-top: 0;  /* Elimina el margen superior del título */
}

.services-grid {
    margin-top: 2rem;  /* Ajusta el espacio entre el título y las cards */
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.services-grid a {
    text-decoration: none;
    color: inherit;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.service-content {
    position: relative;
    z-index: 1;
    margin-top: 0;
    flex: 1;
}

.service-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    height: 160px;
    display: flex;
    align-items: center;
}

.service-icon {
    width: 100px !important;
    height: 100px !important;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin: 0;
    padding: 0;
}

.icon-single {
    width: 100px !important;
    height: 100px !important;
    margin: 0;
    padding: 0;
}

.icon-arrow {
    color: #666;
    font-size: 2.5rem;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.service-card:hover .icon-arrow {
    opacity: 1;
    transform: translateX(5px);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.service-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover {
    color: #ffffff;
}

.service-link:hover i {
    transform: translateX(5px);
}

.product-hero-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.mega-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.mega-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.platform-visual {
    margin-top: 1rem;
}

/* Ajuste de espaciado vertical */
.product-showcase-modern {
    margin-top: -1rem;
}

.platform-window {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 90%;
    margin: 0 auto;
}

.platform-screen {
    max-height: 60vh;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(50, 205, 50, 0.15)) /* Sombra verde muy sutil */
           drop-shadow(0 0 30px rgba(0, 0, 0, 0.3)); /* Sombra general */
    border-radius: 16px; /* Si quieres los bordes redondeados */
    transition: all 0.3s ease;
}

.platform-window {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-window::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle at center, 
                              rgba(50, 205, 50, 0.1) 0%,
                              transparent 70%);
    z-index: -1;
    opacity: 0.5;
}

/* Opcional: efecto hover */
.platform-window:hover .platform-screen {
    filter: drop-shadow(0 0 25px rgba(50, 205, 50, 0.2))
           drop-shadow(0 0 35px rgba(0, 0, 0, 0.35));
    transform: translateY(-5px);
}

.floating-feature {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.floating-feature:hover {
    transform: translateY(-5px);
    background: rgba(50, 205, 50, 0.1);
    border-color: rgba(50, 205, 50, 0.2);
}

.floating-feature i {
    color: #32cd32;
    font-size: 1.2rem;
}

.top-left {
    top: -20px;
    left: 50px;
}

.top-right {
    top: -20px;
    right: 50px;
}

.bottom-left {
    bottom: -20px;
    left: 50px;
}

.bottom-right {
    bottom: -20px;
    right: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem auto;
    max-width: 900px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(50, 205, 50, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #32cd32;
}

.feature-box h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .mega-title {
        font-size: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .floating-feature {
        position: static;
        margin: 1rem auto;
        width: fit-content;
    }
    
    .platform-window {
        margin: 2rem 0;
    }
}

@media (max-width: 768px) {
    .platform-window {
        max-width: 100%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .platform-screen {
        max-height: 75vh !important; /* Más grande en móvil */
        width: 90% !important; /* Controla el ancho en móvil */
        margin: 0 auto;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 205, 50, 0.2);
    background: rgba(255, 255, 255, 0.03);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon i {
    font-size: 1.75rem;
    color: #32cd32;
}

.benefit-content h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.benefit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(50, 205, 50, 0.1);
    border-color: rgba(50, 205, 50, 0.2);
    transform: translateY(-2px);
}

.feature-tag i {
    color: #32cd32;
    font-size: 0.9rem;
}

.feature-tag span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .benefit-features {
        justify-content: center;
    }
}

.comparison-wrapper {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem 0; /* Quitamos el padding horizontal */
    width: 100%; /* Aseguramos que ocupe todo el ancho */
    margin: 0; /* Eliminamos cualquier margen */
}

.comparison-container {
    width: 100%;
    padding: 0; /* Eliminamos padding */
    margin: 0; /* Eliminamos margen */
}

/* Alinear el contenido a la izquierda */
.comparison-table td,
.comparison-table th {
    text-align: left;
}

/* Ajustar el contenedor principal para que coincida con el grid de servicios */
.comparison-wrapper {
    display: block;
    width: 100%;
    max-width: calc(100% - 2rem); /* Mismo ancho que services-grid */
    margin: 2rem auto;
}

/* Asegurar que la tabla ocupe todo el ancho disponible */
.table-responsive {
    width: 100%;
    margin: 0;
    padding: 0;
}

.comparison-table {
    width: 100%;
    table-layout: fixed; /* Esto ayuda a controlar mejor el ancho de las columnas */
}

/* Ajustar el ancho de las columnas */
.comparison-table th:first-child,
.comparison-table td:first-child {
    width: 20%; /* Reducimos el ancho de la primera columna */
}

.comparison-table th:nth-child(2),
.comparison-table td:nth-child(2),
.comparison-table th:nth-child(3),
.comparison-table td:nth-child(3) {
    width: 40%; /* Aumentamos el ancho de las columnas de comparación */
}

/* Ajustar el espaciado interno */
.comparison-table th,
.comparison-table td {
    padding: 1.25rem 2rem; /* Más padding horizontal */
}

/* Ajustar el contenido de las características */
.feature-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%; /* Asegurar que ocupe todo el ancho disponible */
}

.feature-content span {
    flex: 1; /* Permitir que el texto ocupe el espacio disponible */
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
    
    .comparison-container {
        padding: 0 0.5rem;
    }
}

.description-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
}

.description-card h3 {
    color: #32cd32;
    font-size: 1.4rem;
}

.description-card p {
    color: #ffffff;
    line-height: 1.8;
    font-size: 1.1rem;
    opacity: 0.9;
}

.description-card i {
    opacity: 0.8;
}

.download-section {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 3rem 0;
    margin: 2rem 0;
}

.download-buttons {
    padding: 1rem 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.btn-download {
    background-color: #2c3e50;
    color: white;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: none;
    min-width: 250px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 3.5rem;
    margin: 0 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-download:hover {
    background-color: #34495e;
    color: white;
    transform: translateY(-2px);
}

.btn-download i {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    margin-right: 10px;
    line-height: 0;
    flex-shrink: 0;
}

/* Ajustes responsivos para botones de descarga */
@media (max-width: 991.98px) {
    .download-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-download {
        width: 100%;
        min-width: unset;
        max-width: 100%;
        padding: 0.75rem 1rem;
        height: 3.25rem;
        font-size: 0.95rem;
    }
    
    .btn-download i {
        font-size: 1rem;
        margin-right: 8px;
    }
}

@media (max-width: 360px) {
    .btn-download {
        font-size: 0.85rem;
        padding: 0.75rem 0.75rem;
    }
    
    .btn-download i {
        font-size: 0.9rem;
        margin-right: 6px;
    }
}

/* Asegurar que los botones no se desborden en ningún breakpoint */
@media (min-width: 768px) and (max-width: 991.98px) {
    .download-buttons {
        flex-direction: column;
    }
    
    .btn-download {
        width: 100%;
    }
}

/* Override de clases de Bootstrap que puedan causar conflicto */
.download-buttons.d-flex {
    display: flex !important;
}

.download-buttons .btn-download.w-100,
.download-buttons .btn-download.w-md-auto {
    width: auto !important;
}

@media (max-width: 767.98px) {
    .download-buttons .btn-download.w-100 {
        width: 100% !important;
    }
}

/* Eliminar márgenes de Bootstrap que puedan interferir */
.download-buttons .btn-download.me-md-3,
.download-buttons .btn-download.mb-2,
.download-buttons .btn-download.mb-md-3 {
    margin: 0 !important;
}

/* Estilos para la tabla de errores */
.description-card .table {
    color: #a0a0a0;
    margin-bottom: 0;
    background: transparent;
}

.description-card .table thead th {
    background: rgba(50, 205, 50, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-weight: 600;
    padding: 1rem;
}

.description-card .table tbody td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
}
@media (max-width: 991px) {
    .comparison-wrapper {
        padding: 1.5rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
    }
}

.trust-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.trust-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.trust-chip i {
    color: #32cd32;
    font-size: 1.2rem;
}

.price-tag {
    display: inline-flex;
    align-items: baseline;
    background: rgba(50, 205, 50, 0.1);
    padding: 10px 20px;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.price-tag .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #32cd32;
}

.price-tag .period {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 4px;
}

.pricing-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.action-wrapper {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.action-wrapper:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 205, 50, 0.2);
}

.price-badge {
    display: inline-flex;
    align-items: baseline;
    background: rgba(50, 205, 50, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
}

.price-badge .amount {
    font-size: 2rem;
    font-weight: 700;
    color: #32cd32;
}

.price-badge .period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 4px;
}

.btn-download {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: rgba(50, 205, 50, 0.1);
    border-color: #32cd32;
    color: #32cd32;
}

.action-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: #32cd32;
    font-size: 1.1rem;
}

.feature-item span {
    color: rgba(255, 255, 255, 0.9);
}

/* Estilos para autenticación */
.auth-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-floating > .form-control,
.form-floating > .form-control-plaintext {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.form-floating > .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: #32cd32;
    box-shadow: 0 0 0 0.25rem rgba(50, 205, 50, 0.25);
}

.form-floating > label {
    color: rgba(255, 255, 255, 0.7);
}

.form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-check-input:checked {
    background-color: #32cd32;
    border-color: #32cd32;
}

.form-check-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Estilos para el área de cliente */
.welcome-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.welcome-icon {
    width: 64px;
    height: 64px;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-icon i {
    font-size: 2rem;
    color: #32cd32;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 205, 50, 0.2);
}

.dashboard-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.dashboard-card-icon i {
    font-size: 1.5rem;
    color: #32cd32;
}

.dashboard-card-title {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.dashboard-card-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.content-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
}

.card-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-option:hover {
    background: rgba(50, 205, 50, 0.1);
    border-color: rgba(50, 205, 50, 0.2);
    transform: translateX(5px);
    color: white;
}

.support-option i {
    font-size: 1.25rem;
    color: #32cd32;
}

.system-status {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.status-item {
    color: rgba(255, 255, 255, 0.8);
}

.progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    background: #32cd32;
}

/* Estilos para la tabla */
.table {
    color: rgba(255, 255, 255, 0.8);
}

.table > :not(caption) > * > * {
    background: none;
    color: inherit;
}

.table tbody tr {
    transition: all 0.3s ease;
}

.table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.table code {
    background: rgba(255, 255, 255, 0.1);
    color: #32cd32;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
}

.badge {
    padding: 0.5rem 0.75rem;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .auth-card,
    .welcome-card,
    .content-card {
        padding: 1.5rem;
    }

    .dashboard-card-title {
        font-size: 1.5rem;
    }

    .welcome-icon {
        width: 48px;
        height: 48px;
    }

    .welcome-icon i {
        font-size: 1.5rem;
    }
}

/* Estilos para los toasts */
.toast-container {
    z-index: 99999 !important;
    margin-top: 76px !important; /* Altura del navbar */
}

.toast {
    background: rgba(50, 205, 50, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(50, 205, 50, 0.2);
    color: white;
    margin-bottom: 1rem;
    animation: slideInDown 0.3s ease-out, fadeOut 0.5s ease-out 2.5s forwards;
    min-width: 300px; /* Ancho mínimo para los toasts */
    max-width: 90vw; /* Ancho máximo responsivo */
    z-index: 99999 !important;
}

.toast .btn-close {
    filter: invert(1) brightness(200%);
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        display: none;
    }
}

/* Ajuste para diferentes tipos de mensajes */
.toast.success {
    background: rgba(50, 205, 50, 0.1);
    border-color: rgba(50, 205, 50, 0.2);
}

.toast.error {
    background: rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.2);
}

.toast.warning {
    background: rgba(255, 193, 7, 0.1);
    border-color: rgba(255, 193, 7, 0.2);
}

.toast.info {
    background: rgba(13, 202, 240, 0.1);
    border-color: rgba(13, 202, 240, 0.2);
}

.btn-neon {
    background: rgba(10, 14, 23, 0.95);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s ease;
    position: relative;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    z-index: 1;
    box-shadow: 0 0 15px rgba(50, 205, 50, 0.2),
                0 0 30px rgba(0, 255, 255, 0.1);
}

.btn-neon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, #32cd32, #00ffff);
    border-radius: 50px;
    z-index: -2;
    transition: all 0.4s ease;
    filter: blur(4px);
    opacity: 0.7;
}

.btn-neon::after {
    content: '';
    position: absolute;
    inset: 1px;
    background: rgba(10, 14, 23, 0.95);
    border-radius: 48px;
    z-index: -1;
    transition: all 0.4s ease;
}

.btn-neon:hover {
    color: white;
    text-shadow: 0 0 10px rgba(50, 205, 50, 0.5);
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.4),
                0 0 40px rgba(0, 255, 255, 0.2);
}

.btn-neon:hover::before {
    filter: blur(6px) brightness(1.3);
    opacity: 0.8;
    animation: borderGlow 1.5s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    from {
        filter: blur(6px) brightness(1.2);
        opacity: 0.8;
    }
    to {
        filter: blur(8px) brightness(1.4);
        opacity: 0.9;
    }
}

.btn-neon:hover::after {
    background: rgba(10, 14, 23, 0.98);
    inset: 2px;
}

.btn-neon i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(50, 205, 50, 0.5))
           drop-shadow(0 0 10px rgba(0, 255, 255, 0.3));
}

.btn-neon:hover i {
    transform: translateX(3px) scale(1.1);
    filter: drop-shadow(0 0 8px rgba(50, 205, 50, 0.6))
           drop-shadow(0 0 15px rgba(0, 255, 255, 0.4));
}

/* Footer Simple para áreas privadas */
.footer-simple {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(10, 14, 23, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    padding: 15px 0;
    text-align: center;
    z-index: 1000;
}

.footer-simple a {
    color: #888;
    transition: color 0.3s ease;
}

.footer-simple a:hover {
    color: #32cd32;
    text-decoration: none;
}

/* Ajuste para el contenido principal cuando hay footer simple */
body:has(.footer-simple) {
    padding-bottom: 60px; /* Altura del footer simple + un poco de espacio */
}

/* Footer Professional para área pública */
.footer {
    background: rgba(10, 14, 23, 0.95);
    margin-top: 0;
    position: relative;
    z-index: 3;
}

/* Trust Messages en el Footer */
.trust-messages {
    padding: 1.5rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
}

.trust-item i {
    font-size: 1.5rem;
    color: #32cd32;
    opacity: 0.9;
    width: 40px;
    text-align: center;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text h6 {
    color: #ffffff;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

.trust-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

@media (max-width: 768px) {
    .trust-messages {
        padding: 1rem 0;
    }

    .trust-messages .container {
        padding: 0 15px;
    }

    .trust-messages .row {
        margin: 0;
    }

    .trust-messages .col-md-3 {
        padding: 0;
        margin-bottom: 1.5rem;
    }

    .trust-messages .col-md-3:last-child {
        margin-bottom: 0;
    }

    .trust-item {
        display: flex;
        align-items: flex-start;
        padding: 0;
        margin: 0;
        gap: 1rem;
    }

    .trust-item i {
        font-size: 1.2rem;
        min-width: 20px;
        margin: 0;
        padding-top: 3px;
        text-align: center;
    }

    .trust-text {
        text-align: left;
        padding: 0;
        flex: 1;
    }

    .trust-text h6 {
        margin: 0 0 0.25rem 0;
        font-size: 1rem;
    }

    .trust-text span {
        font-size: 0.85rem;
        line-height: 1.4;
        display: block;
    }
}

/* About Page Styles */
.about-section {
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 205, 50, 0.2);
    background: rgba(50, 205, 50, 0.05);
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.vision-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 205, 50, 0.2);
    background: rgba(50, 205, 50, 0.05);
}

.vision-card .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vision-card .card-icon i {
    font-size: 1.5rem;
    color: #32cd32;
}

.vision-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.vision-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    line-height: 1.6;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 205, 50, 0.2);
    background: rgba(50, 205, 50, 0.05);
}

.value-card i {
    font-size: 2rem;
    color: #32cd32;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 205, 50, 0.2);
    background: rgba(50, 205, 50, 0.05);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: #32cd32;
}

.feature-card h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-about {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.cta-about h2 {
    color: #ffffff;
    font-size: 2rem;
}

.cta-about .lead {
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .about-image {
        margin-top: 2rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .vision-card,
    .feature-card {
        padding: 1.5rem;
    }

    .cta-about {
        padding: 2rem 1rem;
    }

    .cta-about h2 {
        font-size: 1.5rem;
    }
}

.about-image {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
    max-height: 550px;
}

@media (max-width: 991px) {
    .about-image img {
        min-height: 300px;
        max-height: 400px;
    }
}

/* Misión y Visión */
.mission-vision-section {
    padding: 2rem 0;
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(50, 205, 50, 0.2);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-wrapper i {
    font-size: 24px;
    color: #32cd32;
}

.highlight-points {
    margin-top: 1.5rem;
}

.point {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.point i {
    color: #32cd32;
    font-size: 14px;
}

/* Valores Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.value-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(50, 205, 50, 0.2);
}

.value-icon {
    width: 50px;
    height: 50px;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon i {
    font-size: 24px;
    color: #32cd32;
}

.value-content h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.value-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.value-hover {
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.value-item:hover .value-hover {
    opacity: 1;
    transform: translateY(0);
}

.value-hover ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-hover li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    position: relative;
    padding-left: 20px;
}

.value-hover li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #32cd32;
}

/* CTA Section */
.cta-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 24px;
    padding: 4rem 2rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-features {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.feature-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(50, 205, 50, 0.1);
    border-color: rgba(50, 205, 50, 0.2);
    transform: translateY(-2px);
}

.feature-tag i {
    color: #32cd32;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-outline-modern {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-outline-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
    }

    .feature-tag {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Estilos para las cards de características unificadas */
.feature-card-unified {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    height: 80px;
    transition: all 0.3s ease;
}

.feature-card-unified:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(50, 205, 50, 0.2);
    transform: translateY(-2px);
}

.feature-icon-unified {
    width: 35px;
    height: 35px;
    background: rgba(50, 205, 50, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-unified i {
    color: #32cd32;
    font-size: 1rem;
}

.feature-content-unified {
    flex: 1;
    min-width: 0;
}

.feature-title-unified {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.2rem;
    font-size: 0.95rem;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.feature-subtitle-unified {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Estilos para la imagen de badges de pago */
.payment-badges-container {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.payment-badges-image {
    max-width: 100%;
    height: auto;
    max-height: 35px;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    transition: all 0.3s ease;
}

.payment-badges-container:hover .payment-badges-image {
    transform: translateY(-2px);
    filter: brightness(1.2) contrast(1.2);
}

/* Estilos para la sección de seguridad y métodos de pago */
.security-section {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.security-section:hover {
    border-color: rgba(50, 205, 50, 0.2);
    background: rgba(0, 0, 0, 0.4);
}

.security-badge {
    background: #ffffff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.security-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.security-badge.ssl-badge {
    gap: 0.75rem;
    min-width: 140px;
}

.security-badge.ssl-badge .ssl-content {
    text-align: left;
}

.security-badge.ssl-badge .ssl-title {
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1;
}

.security-badge.ssl-badge .ssl-subtitle {
    color: #666;
    font-size: 0.75rem;
    line-height: 1;
}

.payment-badge {
    background: #ffffff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 100px;
}

.payment-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.payment-badge.stripe {
    color: #6772e5;
    font-weight: 600;
    font-size: 1.1rem;
}

.payment-badge.visa {
    color: #1a1f71;
    font-weight: 600;
    font-size: 1.1rem;
}

.payment-badge.amex {
    color: #006fcf;
    font-weight: 600;
    font-size: 1rem;
}

.payment-badge.paypal {
    color: #003087;
    font-weight: 600;
    font-size: 1rem;
}

.mastercard-badge {
    background: #ffffff;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-width: 100px;
}

.mastercard-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.mastercard-circles {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mastercard-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.mastercard-circle.orange {
    background: #ff5f00;
}

.mastercard-circle.red {
    background: #eb001b;
    margin-left: -8px;
}

/* Responsive para badges de seguridad */
@media (max-width: 768px) {
    .security-section {
        padding: 2rem 1.5rem;
    }
    
    .payment-badges-image {
        max-height: 65px;
    }
    
    .feature-card-unified {
        height: 70px;
        padding: 0.6rem;
        gap: 0.6rem;
    }
    
    .feature-icon-unified {
        width: 30px;
        height: 30px;
    }
    
    .feature-icon-unified i {
        font-size: 0.9rem;
    }
    
    .feature-title-unified {
        font-size: 0.9rem;
    }
    
    .feature-subtitle-unified {
        font-size: 0.8rem;
    }
    
    .security-badge,
    .payment-badge,
    .mastercard-badge {
        min-width: 80px;
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
    }
    
    .security-badge.ssl-badge {
        min-width: 110px;
    }
    
    .security-badge.ssl-badge .ssl-title {
        font-size: 0.75rem;
    }
    
    .security-badge.ssl-badge .ssl-subtitle {
        font-size: 0.65rem;
    }
    
    /* Ajustes específicos para badges en la sección de términos */
    .text-center .security-badge,
    .text-center .payment-badge,
    .text-center .mastercard-badge {
        min-width: 70px;
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }
    
    .text-center .security-badge.ssl-badge {
        min-width: 100px;
    }
    
    .text-center .security-badge.ssl-badge .ssl-title {
        font-size: 0.7rem;
    }
    
    .text-center .security-badge.ssl-badge .ssl-subtitle {
        font-size: 0.6rem;
    }
}

/* Estilos para el selector de idioma con banderas */
.language-selector .flag-icon {
    font-size: 1.2em;
    display: inline-block;
    transition: all 0.3s ease;
}

.language-selector .dropdown-item {
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.language-selector .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-selector .dropdown-item.active {
    background: rgba(50, 205, 50, 0.2);
    border-left: 3px solid #32cd32;
}

.language-selector .dropdown-item .flag-icon {
    font-size: 1.1em;
}

.language-selector .dropdown-item:hover .flag-icon {
    transform: scale(1.1);
}

.language-selector .dropdown-item.active .flag-icon {
    filter: brightness(1.2);
}

.language-selector .nav-link {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.language-selector .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.language-selector .dropdown-menu {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
}

.language-selector .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(10, 14, 23, 0.95);
}

/* Responsive para el selector de idioma */
@media (max-width: 768px) {
    .language-selector .dropdown-menu {
        min-width: 180px;
        right: 0;
        left: auto;
        max-height: 60vh;
        overflow-y: auto;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 300px;
    }
    
    .language-selector .nav-link {
        padding: 0.4rem 0.8rem;
    }
    
    .language-selector .flag-icon {
        font-size: 1em;
        width: 1.3em;
        height: 1.3em;
        line-height: 1.3em;
    }
    
    .language-selector .dropdown-item {
        padding: 1rem;
        font-size: 1.1em;
    }
}

/* ========================================
   TESTIMONIALS SECTION STYLES
   ======================================== */

.testimonials-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    position: relative;
    overflow: hidden;
}


.testimonials-section .section-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonials-section .section-subtitle {
    color: #b0b0b0;
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(50, 205, 50, 0.3);
    box-shadow: 0 20px 40px rgba(50, 205, 50, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.testimonial-avatar {
    flex-shrink: 0;
}

.avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(50, 205, 50, 0.3);
    transition: border-color 0.3s ease;
}

.testimonial-card:hover .avatar-img {
    border-color: rgba(50, 205, 50, 0.6);
}

.testimonial-info {
    flex: 1;
}

.testimonial-info-carousel {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.testimonial-name {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
}

.testimonial-rating i {
    color: #32cd32;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-rating i {
    color: #40e040;
}

.testimonial-content {
    position: relative;
}

.testimonial-text {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    position: relative;
}



/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-section .section-title {
        font-size: 2rem;
    }
    
    .testimonials-section .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .testimonial-info {
        text-align: center;
    }
    
}

@media (max-width: 576px) {
    .testimonials-section .section-title {
        font-size: 1.8rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .avatar-img {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-name {
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
}

/* ========================================
   TESTIMONIALS CAROUSEL STYLES
   ======================================== */

.testimonials-carousel-section {
    position: relative;
    overflow: hidden;
}

.testimonials-carousel-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    pointer-events: none;
}

.testimonials-rating {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    z-index: 2;
}

.testimonials-carousel-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    z-index: 2;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 480px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
    height: 100%;
    align-items: center;
}

.testimonial-slide.leaving {
    opacity: 0;
    transform: translateX(-30px);
}

.testimonial-slide.entering {
    opacity: 0;
    transform: translateX(30px);
}

/* Directional animations for more professional transitions */
.testimonial-slide.leaving-left,
.testimonial-slide.leaving-right,
.testimonial-slide.entering-left,
.testimonial-slide.entering-right {
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide.leaving-left {
    opacity: 0;
    transform: translateX(-80px) scale(0.98);
}

.testimonial-slide.leaving-right {
    opacity: 0;
    transform: translateX(80px) scale(0.98);
}

.testimonial-slide.entering-left {
    opacity: 0;
    transform: translateX(-80px) scale(0.98);
}

.testimonial-slide.entering-right {
    opacity: 0;
    transform: translateX(80px) scale(0.98);
}

.testimonial-card-carousel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.testimonial-avatar-carousel {
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.avatar-img-carousel {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(50, 205, 50, 0.3);
    transition: border-color 0.3s ease;
}

.testimonial-card-carousel:hover .avatar-img-carousel {
    border-color: rgba(50, 205, 50, 0.6);
}

.testimonial-name-carousel {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonial-rating-carousel {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating-carousel i {
    color: #32cd32;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.testimonial-card-carousel:hover .testimonial-rating-carousel i {
    color: #40e040;
}

.testimonial-text-carousel {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    font-style: italic;
    flex: 1;
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.read-full-review {
    color: #32cd32;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-full-review:hover {
    color: #40e040;
    text-decoration: none;
    transform: translateX(5px);
}

.read-full-review i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.read-full-review:hover i {
    transform: translateX(3px);
}

/* Navigation Arrows */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.carousel-nav.active {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.15), rgba(50, 205, 50, 0.25));
    border-color: rgba(50, 205, 50, 0.4);
    color: #32cd32;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(50, 205, 50, 0.2);
}

.carousel-nav.active:hover {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.2), rgba(50, 205, 50, 0.3));
    border-color: rgba(50, 205, 50, 0.5);
    color: #40e040;
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.3);
}

.carousel-nav.inactive {
    background: rgba(100, 100, 100, 0.1);
    border-color: rgba(100, 100, 100, 0.2);
    color: rgba(150, 150, 150, 0.5);
    cursor: not-allowed;
    opacity: 0.4;
}

.carousel-nav.inactive:hover {
    background: rgba(100, 100, 100, 0.1);
    border-color: rgba(100, 100, 100, 0.2);
    color: rgba(150, 150, 150, 0.5);
    transform: none;
    box-shadow: none;
}

.carousel-prev {
    left: -70px;
}

.carousel-next {
    right: -70px;
}

/* Responsive adjustments for carousel buttons */
@media (max-width: 768px) {
    .carousel-prev {
        left: -40px;
    }

    .carousel-next {
        right: -40px;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}


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

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #32cd32;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(50, 205, 50, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-rating {
        font-size: 2rem;
    }
    
    .testimonial-card-carousel {
        padding: 2rem;
    }
    
    .avatar-img-carousel {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-name-carousel {
        font-size: 1.2rem;
    }
    
    .testimonial-text-carousel {
        font-size: 1rem;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: -20px;
    }
    
    .carousel-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    /* En tablets y móviles: mostrar 1 tarjeta por slide */
    .testimonial-slide .col-lg-6.col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .testimonial-slide .row {
        justify-content: center;
    }

    .testimonials-carousel {
        height: auto;
        min-height: 450px;
    }

    .testimonial-card-carousel {
        height: auto;
        min-height: 380px;
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .testimonials-rating {
        font-size: 1.8rem;
    }

    .testimonial-card-carousel {
        padding: 1.5rem;
        min-height: 320px;
    }

    .avatar-img-carousel {
        width: 60px;
        height: 60px;
    }

    .testimonial-name-carousel {
        font-size: 1.1rem;
    }

    .testimonial-text-carousel {
        font-size: 0.95rem;
    }

    .carousel-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .carousel-prev {
        left: -17px;
    }

    .carousel-next {
        right: -17px;
    }

    .testimonials-carousel {
        min-height: 380px;
    }
}

/* Estilos para mantener tamaños visuales con jerarquía de encabezados correcta */
.footer-brand h2 {
    font-size: 1.5rem; /* Mantiene el tamaño visual del h5 original */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem; /* Mantiene el tamaño visual del h6 original */
}

.trust-text h4 {
    color: #ffffff;
    margin: 0;
    font-size: 0.95rem; /* Mantiene el tamaño visual del h6 original */
    font-weight: 500;
}

.chatbot-info h3 {
    margin: 0;
    font-size: 1rem; /* Mantiene el tamaño visual del h5 original */
    font-weight: 600;
}

.testimonial-name-carousel {
    font-size: 1.1rem; /* Mantiene el tamaño visual del h5 original */
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.accordion-header h3 {
    font-size: 1.1rem; /* Mantiene el tamaño visual del h2 original */
    font-weight: 600;
    margin: 0;
}


