﻿* {
    /*    outline: 1px solid red;
*/
}

html, body {
    overflow-x: hidden;
}

body {
    font: 400 15px Lato, sans-serif;
    line-height: 1.3;
    padding-top: 70px;
    /*    background-color: #2D3446;
*/
}

.header-saas {
    height: 70px;
    background: rgba(15, 32, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 1000;
}

    .header-saas.scrolled {
        height: 60px;
        background: rgba(15, 32, 39, 0.98);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    }

/* Logo */
.logo {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    letter-spacing: 1px;
}

    .logo .r {
        font-size: 40%;
        background: none;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.7);
        color: rgba(255, 255, 255, 0.7);
        margin-left: 2px;
    }

/* Navegación desktop */
#menu-top {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-right: 16px;
}

.nav-link-saas {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 40px;
}

    .nav-link-saas i {
        font-size: 16px;
        transition: transform 0.3s ease;
    }

    .nav-link-saas:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #FFD700;
        transform: translateY(-2px);
        text-decoration: none;
    }

        .nav-link-saas:hover i {
            transform: scale(1.1);
        }

/* Dropdown mejorado */
.dropdown-saas {
    position: relative;
    display: inline-block;
}

.dropdown-toggle-saas {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 40px;
}

    .dropdown-toggle-saas:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #FFD700;
        transform: translateY(-2px);
    }

    .dropdown-toggle-saas:focus {
        outline: none;
    }

.dropdown-menu-saas {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: rgba(15, 32, 39, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
}

.dropdown-saas:hover .dropdown-menu-saas {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item-saas {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .dropdown-item-saas:hover {
        background: rgba(255, 215, 0, 0.1);
        color: #FFD700;
        text-decoration: none;
        padding-left: 25px;
    }

.dropdown-divider-saas {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

/* Botón menú móvil */
.btnmenu-saas {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btnmenu-saas:hover {
        background: rgba(255, 215, 0, 0.2);
        color: #FFD700;
        transform: rotate(90deg);
    }

    .btnmenu-saas:focus {
        outline: none;
    }

/* Menú móvil */
.menu-mobile {
    position: fixed;
    left: 0;
    right: 0;
    background: rgba(15, 32, 39, 0.98);
    backdrop-filter: blur(10px);
    /*    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
*/ max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
}

    .menu-mobile.active {
        max-height: 400px;
    }

.menu-mobile-content {
    padding: 20px;
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .mobile-link:hover {
        background: rgba(255, 215, 0, 0.1);
        color: #FFD700;
        text-decoration: none;
        padding-left: 25px;
    }

    .mobile-link i {
        width: 20px;
        color: #FFD700;
    }

/* Dropdown móvil */
.mobile-dropdown {
    margin-bottom: 5px;
}

.mobile-dropdown-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    text-align: left;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .mobile-dropdown-btn:hover {
        background: rgba(255, 215, 0, 0.1);
        color: #FFD700;
    }

    .mobile-dropdown-btn:focus {
        outline: none;
    }

    .mobile-dropdown-btn i:first-child {
        width: 20px;
        color: #FFD700;
    }

    .mobile-dropdown-btn i:last-child {
        transition: transform 0.3s ease;
    }

.mobile-dropdown.active .mobile-dropdown-btn i:last-child {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 40px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 200px;
}

.mobile-sub-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .mobile-sub-link:hover {
        background: rgba(255, 255, 255, 0.05);
        color: #FFD700;
        text-decoration: none;
        padding-left: 25px;
    }

/* Responsive */
@media (max-width: 992px) {
    #menu-top {
        display: none;
    }
}

/* Animación para el header al hacer scroll */
@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

#hero-saas {
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

/* Elementos de fondo animados */
.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    animation: pulse 8s ease-in-out infinite;
}

.shape-1, .shape-2 {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -150px;
    background: rgba(255,255,255,0.05);
    animation: float 8s ease-in-out infinite reverse;
}

/* Badge premium */
.badge-premium {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border: 1px solid rgba(255,255,255,0.3);
}

/* Títulos mejorados */
.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.gradient-text {
    display: block;
    font-size: clamp(40px, 8vw, 72px);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

.hero-subtitle {
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 300;
    opacity: 0.9;
}

.hero-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border: none;
    margin: 20px auto;
    border-radius: 2px;
}

/* Tarjeta de formulario tipo glassmorphism */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Estilos del formulario */
.form-control-lg {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .form-control-lg:focus {
        background: white;
        border-color: #FFD700;
        box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
        outline: none;
    }

/* Botón con gradiente */
.btn-gradient {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    color: #333;
    font-weight: 700;
    font-size: 18px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-gradient:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
        color: #333;
    }

    .btn-gradient:active {
        transform: translateY(0);
    }

.hero-title {
    font-size: 63px;
    font-family: sans-serif;
    margin-bottom: 15px;
}



/* ===== SECCIÓN DE BENEFICIOS ===== */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 0 !important;
}

    /* Elementos decorativos de fondo */
    .services-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .services-section::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(100, 100, 255, 0.03) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

/* Encabezado de sección */
.section-header {
    margin-top:60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #0f2027, #203a43);
    color: #FFD700;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.section-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: #0f2027;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.gradient-text-simple {
    background: linear-gradient(135deg, #0f2027, #203a43);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    margin: 20px auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Tarjetas de servicio */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    cursor: pointer;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.3);
    }

    /* Colores distintivos para cada tipo de servicio */
    .service-card.software-card:hover {
        border-color: #0f2027;
    }

    .service-card.software-card .service-icon-wrapper {
        background: linear-gradient(135deg, rgba(15, 32, 39, 0.05), rgba(32, 58, 67, 0.05));
    }

    .service-card.software-card:hover .service-icon-wrapper {
        background: linear-gradient(135deg, #0f2027, #203a43);
    }

    .service-card.web-card:hover {
        border-color: #FFD700;
    }

    .service-card.web-card .service-icon-wrapper {
        background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.05));
    }

    .service-card.web-card:hover .service-icon-wrapper {
        background: linear-gradient(135deg, #FFD700, #FFA500);
    }

    .service-card.consulting-card:hover {
        border-color: #667eea;
    }

    .service-card.consulting-card .service-icon-wrapper {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
    }

    .service-card.consulting-card:hover .service-icon-wrapper {
        background: linear-gradient(135deg, #667eea, #764ba2);
    }

/* Wrapper de icono con efecto */
.service-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(15, 32, 39, 0.05), rgba(32, 58, 67, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover .service-icon-wrapper {
    background: linear-gradient(135deg, #0f2027, #203a43);
    transform: scale(1.1) rotate(360deg);
}

.service-icon {
    font-size: 48px;
    color: #0f2027;
    transition: all 0.3s ease;
}

.service-card.software-card .service-icon {
    color: #0f2027;
}

.service-card.software-card:hover .service-icon {
    color: #FFD700;
}

.service-card.web-card .service-icon {
    color: #FFD700;
}

.service-card.web-card:hover .service-icon {
    color: #0f2027;
}

.service-card.consulting-card .service-icon {
    color: #667eea;
}

.service-card.consulting-card:hover .service-icon {
    color: white;
}

.service-card:hover .service-icon {
    color: #FFD700;
    transform: scale(1.1);
}

/* Título y descripción */
.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f2027;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-card:hover .service-title {
    color: #203a43;
}

.service-description {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Efecto hover con características adicionales */
.service-hover-effect {
    max-height: 0;
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card:hover .service-hover-effect {
    max-height: 100px;
    opacity: 1;
    margin-top: 20px;
}

.service-feature {
    display: block;
    font-size: 14px;
    color: #0f2027;
    margin-bottom: 8px;
    font-weight: 500;
}

    .service-feature:last-child {
        margin-bottom: 0;
    }

.service-card.software-card .service-feature {
    color: #203a43;
}

.service-card.web-card .service-feature {
    color: #b45f06;
}

.service-card.consulting-card .service-feature {
    color: #553c9a;
}

/* Lista de características visibles */
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    text-align: left;
}

    .service-features-list li {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
        font-size: 13px;
        color: #4a5568;
    }

        .service-features-list li i {
            color: #FFD700;
            font-size: 14px;
        }

.service-card.software-card .service-features-list li i {
    color: #0f2027;
}

.service-card.web-card .service-features-list li i {
    color: #FFD700;
}

.service-card.consulting-card .service-features-list li i {
    color: #667eea;
}

/* Botón CTA */
.btn-services-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #0f2027, #203a43);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

    .btn-services-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(15, 32, 39, 0.2);
        color: #FFD700;
        text-decoration: none;
        border-color: #FFD700;
    }

    .btn-services-cta i:first-child {
        transition: transform 0.3s ease;
    }

    .btn-services-cta:hover i:first-child {
        transform: scale(1.1);
    }

    .btn-services-cta i:last-child {
        transition: transform 0.3s ease;
    }

    .btn-services-cta:hover i:last-child {
        transform: translateX(5px);
    }

/******************************/

/* ===== SECCIÓN DE PRODUCTO ===== */
.product-showcase {
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Contenido del producto */
.product-content {
    max-width: 600px;
    margin-left: auto;
}

.product-badge {
    display: inline-block;
}

.badge-software {
    background: linear-gradient(135deg, #0f2027, #203a43);
    color: #FFD700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.product-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    color: #0f2027;
    line-height: 1.2;
    margin-bottom: 5px;
}

    .product-title .registered {
        font-size: 16px;
        top: -0.5em;
        position: relative;
        color: #FFD700;
    }

.product-subtitle {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #203a43;
    margin-top: 5px;
}

.product-highlight {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
}

.product-description {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin: 20px 0;
}

/* Lista de características */
.product-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #2d3748;
}

    .feature-item i {
        font-size: 18px;
    }

/* Botón de producto */
.btn-product {
    background: linear-gradient(135deg, #0f2027, #203a43);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

    .btn-product:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(15, 32, 39, 0.3);
        color: #FFD700;
    }

    .btn-product:active {
        transform: translateY(0);
    }

/* Imagen del producto */
.product-image-wrapper {
    position: relative;
    padding: 20px;
    text-align: center;
}

.product-image {
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

    .product-image:hover {
        transform: scale(1.02);
    }

.image-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1), transparent 70%);
    border-radius: 20px;
    pointer-events: none;
}

/* Badges flotantes */
.floating-badge {
    position: absolute;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #0f2027;
    animation: float 3s ease-in-out infinite;
}

    .floating-badge i {
        color: #FFD700;
    }

.badge-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    right: 5%;
    animation-delay: 1.5s;
}

.badge-3 {
    top: 20%;
    right: 5%;
    animation-delay: 1.5s;
}

/* Separador */
.feature-divider {
    padding: 40px 0 20px;
    position: relative;
}

    .feature-divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #FFD700, transparent);
    }

.feature-divider-text {
    background: white;
    padding: 0 30px;
    color: #0f2027;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

/* Grid de características */
.features-grid {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #FFD700, #FFA500);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(15, 32, 39, 0.05), rgba(32, 58, 67, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
    background: linear-gradient(135deg, #0f2027, #203a43);
    transform: scale(1.1) rotate(360deg);
}

.feature-icon-wrapper i {
    font-size: 30px;
    color: #0f2027;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper i {
    color: #FFD700;
}

.feature-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f2027;
    margin-bottom: 12px;
}

.feature-card-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-card-hover {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 500;
    color: #FFD700;
}

.feature-card:hover .feature-card-hover {
    max-height: 50px;
    opacity: 1;
}

/* CTA adicional */
.feature-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f2027;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 30px;
}

.btn-cta-gradient {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0f2027;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

    .btn-cta-gradient:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
        color: #0f2027;
    }
/**********************************/

/* ===== SECCIÓN DE GIROS COMERCIALES ===== */
.business-types-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

/* Tarjetas de categoría */
.business-category {
    background: white;
    border-radius: 20px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

    .business-category::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #FFD700, #FFA500);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .business-category:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

        .business-category:hover::before {
            transform: scaleX(1);
        }

    /* Categoría destacada (la de "muchos más") */
    .business-category.highlight {
        background: linear-gradient(135deg, #0f2027, #203a43);
        border-color: rgba(255, 215, 0, 0.2);
    }

        .business-category.highlight .category-header h3,
        .business-category.highlight .category-header i {
            color: #FFD700;
        }

        .business-category.highlight .category-items p {
            color: rgba(255, 255, 255, 0.7) !important;
        }

/* Header de categoría */
.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.1);
}

    .category-header i {
        font-size: 28px;
        color: #0f2027;
        transition: all 0.3s ease;
    }

.business-category:hover .category-header i {
    color: #FFD700;
    transform: scale(1.1);
}

.category-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f2027;
    margin: 0;
}

/* Grid de items */
.category-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Tags de negocios */
.business-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(15, 32, 39, 0.03);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: #2d3748;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

    .business-tag i {
        font-size: 12px;
        color: #FFD700;
    }

    .business-tag:hover {
        background: rgba(255, 215, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.3);
        transform: translateX(3px);
    }

/* Tag especial para "muchos más" */
.more-tag {
    background: rgba(255, 215, 0, 0.15);
    color: #0f2027;
    font-weight: 600;
    cursor: pointer;
}

    .more-tag:hover {
        background: rgba(255, 215, 0, 0.25);
        transform: translateX(0);
    }

/* Badge de versatilidad */
.versatility-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 40px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    font-size: 16px;
    font-weight: 600;
    color: #0f2027;
    margin-top: 30px;
}

    .versatility-badge i:first-child {
        animation: spin 10s linear infinite;
    }

    .versatility-badge i:last-child {
        animation: spin 10s linear infinite reverse;
    }

/* Sección de casos de éxito */
.success-stories-section {
    padding: 40px 0;
}

.success-content {
    padding-right: 40px;
}

.success-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f2027;
    line-height: 1.3;
    margin-bottom: 20px;
}

.success-text {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.success-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #0f2027;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.success-image-wrapper {
    position: relative;
    text-align: center;
}

    .success-image-wrapper::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        z-index: 0;
    }

    .success-image-wrapper img {
        position: relative;
        z-index: 1;
        max-width: 100%;
        height: auto;
    }
/****************************************/

.comparison-section {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .comparison-table th,
    .comparison-table td {
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid #e9ecef;
    }

    .comparison-table th {
        background: #f8f9fa;
        font-weight: 700;
        color: #0f2027;
    }

        .comparison-table th:first-child,
        .comparison-table td:first-child {
            text-align: left;
            font-weight: 600;
        }

    .comparison-table .highlight-column {
        background: linear-gradient(135deg, #0f2027, #203a43);
        color: white;
    }

        .comparison-table .highlight-column .text-success {
            color: #FFD700 !important;
        }

    .comparison-table td i {
        font-size: 20px;
    }
/****************************************/

/* ===== SECCIÓN DE PRECIOS ===== */
.pricing-preview-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

    /* Elementos decorativos de fondo */
    .pricing-preview-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .pricing-preview-section::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(15, 32, 39, 0.02) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

/* Tarjeta de precio base */
.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 30px 25px;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.1);
        border-color: rgba(255, 215, 0, 0.2);
    }

    /* Tarjeta destacada */
    .pricing-card.featured {
        background: linear-gradient(135deg, #0f2027, #203a43);
        border: none;
        color: white;
        transform: scale(1.05);
        z-index: 2;
        box-shadow: 0 20px 40px rgba(15, 32, 39, 0.2);
    }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

/* Badge de plan regular */
.pricing-badge {
    display: inline-block;
    background: rgba(15, 32, 39, 0.05);
    color: #0f2027;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.pricing-card.featured .pricing-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #FFD700;
}

/* Badge de plan destacado */
.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0f2027;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    z-index: 3;
}

    .featured-badge i {
        margin-right: 5px;
    }

/* Header del plan */
.pricing-header {
    text-align: left;
    margin-bottom: 25px;
}

.plan-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0f2027;
}

.pricing-card.featured .plan-name {
    color: white;
}

/* Precio */
.plan-price {
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: top;
    margin-right: 2px;
    color: #FFD700;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: #0f2027;
}

.pricing-card.featured .amount {
    color: white;
}

.period {
    font-size: 16px;
    color: #6c757d;
    font-weight: 400;
    margin-left: 5px;
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.6);
}

.plan-description {
    font-size: 14px;
    color: #6c757d;
    margin: 10px 0 0;
}

.pricing-card.featured .plan-description {
    color: rgba(255, 255, 255, 0.7);
}

/* Características */
.pricing-features {
    flex: 1;
    margin-bottom: 25px;
}

.features-title {
    font-size: 14px;
    font-weight: 600;
    color: #0f2027;
    margin-bottom: 15px;
}

.pricing-card.featured .features-title {
    color: #FFD700;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #2d3748;
}

.pricing-card.featured .feature-item {
    color: rgba(255, 255, 255, 0.9);
}

.feature-item i {
    color: #FFD700;
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-card.featured .feature-item i {
    color: #FFD700;
}

.feature-item strong {
    color: #0f2027;
    font-weight: 700;
}

.pricing-card.featured .feature-item strong {
    color: white;
}

/* Footer del plan */
.pricing-footer {
    text-align: center;
}

/* Botón de precio */
.btn-pricing {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #0f2027, #203a43);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 10px;
}

    .btn-pricing:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(15, 32, 39, 0.2);
        color: #FFD700;
        text-decoration: none;
    }

    .btn-pricing.featured-btn {
        background: linear-gradient(135deg, #FFD700, #FFA500);
        color: #0f2027;
        font-weight: 700;
    }

        .btn-pricing.featured-btn:hover {
            box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
        }

    .btn-pricing i {
        transition: transform 0.3s ease;
    }

    .btn-pricing:hover i {
        transform: translateX(5px);
    }

.pricing-note {
    font-size: 12px;
    color: #6c757d;
    margin: 0;
}

.pricing-card.featured .pricing-note {
    color: rgba(255, 255, 255, 0.5);
}

/* Botón ver todos los planes */
.btn-view-all {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: white;
    border: 2px solid #0f2027;
    border-radius: 50px;
    color: #0f2027;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .btn-view-all:hover {
        background: #0f2027;
        color: #FFD700;
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(15, 32, 39, 0.1);
        text-decoration: none;
    }

    .btn-view-all i {
        transition: transform 0.3s ease;
    }

    .btn-view-all:hover i {
        transform: translateX(5px);
    }
/**************************************************/

/* ===== CTA SECTION FINAL ===== */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, #0f2027, #203a43);
    margin: 0;
    padding: 0 !important;
}

.cta-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 30px;
    padding: 50px;
    margin: 50px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-main-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-main-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.btn-cta-final {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0f2027;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 250px;
    position: relative;
    overflow: hidden;
}

    .btn-cta-final:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 215, 0, 0.3);
        color: #0f2027;
    }

    .btn-cta-final:active {
        transform: translateY(0);
    }
/*******************************/

/* ===== SECCIÓN DE CONTACTO ===== */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 0 !important;
    position: relative;
    overflow: hidden;
}

    /* Efectos de fondo */
    .contact-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

/* Wrapper de contacto */
.contact-wrapper {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

/* Tarjeta del formulario */
.contact-form-card {
    background: white;
    padding: 40px;
    height: 100%;
    position: relative;
}

.form-header {
    margin-bottom: 30px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

    .form-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #FFD700, #FFA500);
        border-radius: 2px;
    }

.form-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* Inputs modernos */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.modern-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: white;
}

    .modern-input:focus {
        outline: none;
        border-color: #FFD700;
        box-shadow: 0 0 0 4px rgba(255, 215, 0, 0.1);
    }

    .modern-input:hover {
        border-color: #cbd5e0;
    }

textarea.modern-input {
    resize: vertical;
    min-height: 120px;
}

/* Wrapper de ReCaptcha */
.recaptcha-wrapper {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    display: inline-block;
}

/* Botón de contacto */
.btn-contact {
    background: linear-gradient(135deg, #0f2027, #203a43);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

    .btn-contact:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(15, 32, 39, 0.3);
        color: #FFD700;
    }

    .btn-contact:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        background: linear-gradient(135deg, #6c757d, #495057);
    }

    .btn-contact i {
        transition: transform 0.3s ease;
    }

    .btn-contact:hover:not(:disabled) i {
        transform: translateX(5px);
    }

/* Tarjeta de información */
.contact-info-card {
    background: linear-gradient(135deg, #0f2027, #203a43);
    padding: 40px;
    height: 100%;
    color: white;
    position: relative;
    overflow: hidden;
}

    /* Elementos decorativos en la info card */
    .contact-info-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

.info-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.info-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

    .info-title::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #FFD700, #FFA500);
        border-radius: 2px;
    }

.info-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 10px;
}

/* Items de información */
.info-items {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

    .info-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(5px);
    }

.info-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FFD700;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

    .info-content h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 5px;
        color: white;
    }

    .info-content a {
        color: #FFD700;
        text-decoration: none;
        font-size: 15px;
        transition: all 0.3s ease;
        display: inline-block;
    }

        .info-content a:hover {
            color: white;
            transform: translateX(3px);
        }

    .info-content p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        margin-bottom: 2px;
    }

.info-note {
    font-size: 12px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 3px;
}

/* Redes sociales */
.social-links {
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

    .social-links h4 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 15px;
    }

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        background: #FFD700;
        color: #0f2027;
        transform: translateY(-3px);
    }

/* Badge de seguridad */
.security-badge {
    margin-top: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

    .security-badge i {
        font-size: 18px;
    }

/* Modal mejorado */
.modern-modal {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

    .modern-modal .modal-header {
        background: linear-gradient(135deg, #0f2027, #203a43);
        color: white;
        border: none;
        padding: 20px 25px;
    }

        .modern-modal .modal-header i {
            color: #FFD700;
            margin-right: 8px;
        }

    .modern-modal .modal-title {
        font-weight: 700;
        font-size: 20px;
    }

    .modern-modal .modal-header .close {
        color: white;
        opacity: 0.8;
        text-shadow: none;
    }

    .modern-modal .modal-body {
        padding: 25px;
        font-size: 15px;
        color: #2d3748;
    }

    .modern-modal .modal-footer {
        border: none;
        padding: 15px 25px 25px;
    }

.btn-modal-close {
    background: linear-gradient(135deg, #0f2027, #203a43);
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-modal-close:hover {
        background: linear-gradient(135deg, #FFD700, #FFA500);
        color: #0f2027;
        transform: translateY(-2px);
    }

.modal.fade .modal-bottom {
    display: flex;
    align-items: flex-end; /* Alinea al fondo */
    min-height: 100%;
    margin: 0 auto; /* Centra horizontalmente */
    /* pointer-events: none;  Asegura que se pueda hacer clic atrás si es necesario */
}

/* Ajustes para el contenido del modal */
.modal-bottom .modal-content {
    margin-bottom: 20px; /* Espacio respecto al borde inferior de la pantalla */
    width: 100%;
    border-radius: 15px; /* Bordes redondeados para un look moderno */
    pointer-events: auto;
}

/* Animación opcional: que suba desde abajo */
.modal.fade .modal-bottom {
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-bottom {
    transform: translateY(0);
}

/*************************************/

/* ===== SECCIÓN DE PREGUNTAS FRECUENTES ===== */
.faq-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

    .faq-section::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.faq-contact-link {
    color: #FFD700;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

    .faq-contact-link:hover {
        color: #0f2027;
        border-bottom-color: #FFD700;
        text-decoration: none;
    }

/* Tarjetas de FAQ */
.faq-card {
    background: white;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    overflow: hidden;
}

    .faq-card:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border-color: rgba(255, 215, 0, 0.2);
    }

/* Header de la pregunta */
.faq-header {
    margin: 0;
}

.faq-button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: white;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #0f2027;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .faq-button:hover {
        background: rgba(255, 215, 0, 0.02);
    }

    .faq-button:focus {
        outline: none;
    }

    .faq-button i:first-child {
        font-size: 20px;
        color: #FFD700;
        min-width: 24px;
    }

    .faq-button .toggle-icon {
        margin-left: auto;
        font-size: 14px;
        color: #6c757d;
        transition: transform 0.3s ease;
    }

    .faq-button[aria-expanded="true"] .toggle-icon {
        transform: rotate(180deg);
        color: #FFD700;
    }

/* Cuerpo de la respuesta */
.faq-body {
    padding: 0 25px 25px 64px;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
}

/* Badges de seguridad */
.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 215, 0, 0.05);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    color: #0f2027;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

    .security-badge i {
        color: #FFD700;
        font-size: 12px;
    }

/* Listas dentro de FAQ */
.faq-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
}

    .faq-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
        font-size: 14px;
    }

        .faq-list li i {
            color: #FFD700;
            font-size: 14px;
        }

/* Caja comparativa */
.comparison-box {
    background: rgba(15, 32, 39, 0.02);
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

    .comparison-item:last-child {
        margin-bottom: 0;
    }

    .comparison-item i {
        font-size: 16px;
    }

/* Lista de requisitos */
.requirements-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

    .requirements-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
        font-size: 14px;
    }

/* Grid de beneficios */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 215, 0, 0.03);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: #0f2027;
}

    .benefit-item i {
        color: #FFD700;
        font-size: 14px;
    }

/* Opciones de soporte */
.support-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 215, 0, 0.03);
    border-radius: 10px;
    font-size: 14px;
}

    .support-item i {
        color: #FFD700;
        font-size: 16px;
        min-width: 20px;
    }

/* Botón de prueba gratuita */
.btn-trial {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #0f2027;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-trial:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
        color: #0f2027;
        text-decoration: none;
    }

/* CTA de contacto */
.faq-contact-cta {
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

    .faq-contact-cta h4 {
        font-size: 20px;
        font-weight: 700;
        color: #0f2027;
        margin-bottom: 10px;
    }

    .faq-contact-cta p {
        color: #6c757d;
        margin-bottom: 20px;
    }

.btn-contact-faq {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(135deg, #0f2027, #203a43);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-contact-faq:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(15, 32, 39, 0.2);
        color: #FFD700;
        text-decoration: none;
    }
/*********************************************/

/* ===== PÁGINA ACERCA DE NOSOTROS ===== */
.about-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px 0 60px;
    position: relative;
    overflow: hidden;
}

/* Hero Section */
.about-hero {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

    .about-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 10s ease-in-out infinite;
    }

    .about-hero::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -5%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        border-radius: 50%;
        animation: float 8s ease-in-out infinite reverse;
    }

.about-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.15);
    color: #FFD700;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(5px);
}

.about-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.about-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.hero-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.decoration-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.decoration-icon {
    color: #FFD700;
    font-size: 24px;
    animation: spin 10s linear infinite;
}

/* Tarjeta principal */
.about-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.1);
    margin-bottom: 40px;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.about-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

    .about-logo:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 15px 30px rgba(255, 215, 0, 0.2));
    }

.logo-decoration {
    position: absolute;
    bottom: -10px;
    right: -10px;
    display: flex;
    gap: 5px;
}

    .logo-decoration i {
        color: #FFD700;
        font-size: 14px;
        animation: pulse 2s ease-in-out infinite;
    }

        .logo-decoration i:nth-child(2) {
            animation-delay: 0.3s;
        }

        .logo-decoration i:nth-child(3) {
            animation-delay: 0.6s;
        }

.about-main-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f2027;
    line-height: 1.4;
    margin-bottom: 25px;
}

.emoji-rocket {
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

/* Grid de información */
.company-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(15, 32, 39, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .info-item:hover {
        background: rgba(255, 215, 0, 0.05);
        transform: translateX(5px);
    }

    .info-item i {
        font-size: 24px;
        color: #FFD700;
    }

    .info-item strong {
        display: block;
        font-size: 12px;
        color: #6c757d;
        margin-bottom: 3px;
    }

    .info-item span {
        font-size: 14px;
        font-weight: 600;
        color: #0f2027;
    }

/* Tarjetas de Visión y Misión */
.vision-card, .mision-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .vision-card::before, .mision-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #FFD700, #FFA500);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .vision-card:hover::before, .mision-card:hover::before {
        transform: scaleX(1);
    }

    .vision-card:hover, .mision-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

.card-header-vm {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

    .card-header-vm i {
        font-size: 32px;
        color: #FFD700;
    }

    .card-header-vm h3 {
        font-size: 24px;
        font-weight: 700;
        color: #0f2027;
        margin: 0;
    }

.card-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.card-footer-vm {
    text-align: right;
}

.highlight {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(255, 215, 0, 0.1);
    color: #0f2027;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 40px 0;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, transparent, #FFD700, #FFA500, transparent);
        transform: translateX(-50%);
    }

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.timeline-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #0f2027;
    border: 3px solid #FFD700;
    border-radius: 50px;
    padding: 8px 20px;
    z-index: 2;
}

.year {
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.timeline-content {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 40px;
    color: rgba(255, 215, 0, 0.1);
}

.timeline-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin: 0;
    padding-left: 30px;
}

/* Tarjeta del fundador */
.founder-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.founder-image-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #0f2027, #203a43);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 5px solid #FFD700;
}

    .founder-image-placeholder i {
        font-size: 80px;
        color: #FFD700;
    }

.founder-name {
    font-size: 28px;
    font-weight: 700;
    color: #0f2027;
    margin-bottom: 5px;
}

.founder-title {
    font-size: 16px;
    color: #FFD700;
    font-weight: 600;
    margin-bottom: 15px;
}

.founder-description {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

/* Filosofía cards */
.philosophy-card {
    background: linear-gradient(135deg, #0f2027, #203a43);
    border-radius: 20px;
    padding: 40px;
    color: white;
    margin: 40px 0;
}

.philosophy-item {
    text-align: center;
    padding: 20px;
}

    .philosophy-item i {
        font-size: 48px;
        color: #FFD700;
        margin-bottom: 20px;
    }

    .philosophy-item h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .philosophy-item p {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.7;
    }

/* Productos */
.product-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

.product-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .product-icon i {
        font-size: 30px;
        color: #FFD700;
    }

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f2027;
    margin-bottom: 15px;
}

.product-description {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .product-features li {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 8px;
        font-size: 14px;
        color: #4a5568;
    }

        .product-features li i {
            color: #FFD700;
            font-size: 14px;
        }

/* Innovación y futuro */
.innovation-card, .future-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

    .innovation-card h3, .future-card h3 {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 22px;
        font-weight: 700;
        color: #0f2027;
        margin-bottom: 20px;
    }

        .innovation-card h3 i, .future-card h3 i {
            color: #FFD700;
        }

.innovation-stats {
    display: flex;
    gap: 30px;
    margin-top: 25px;
}

    .innovation-stats .stat {
        text-align: center;
    }

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #0f2027;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: #6c757d;
}

.future-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

    .future-badges .badge {
        background: rgba(255, 215, 0, 0.1);
        color: #0f2027;
        padding: 8px 15px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
    }

/* Cita del fundador */
.founder-quote {
    margin: 60px 0;
}

.quote-wrapper {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.quote-mark {
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 60px;
    color: rgba(255, 215, 0, 0.1);
}

.quote-wrapper blockquote {
    font-size: 20px;
    line-height: 1.8;
    color: #0f2027;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto 30px;
}

.quote-author {
    display: flex;
    flex-direction: column;
}

    .quote-author strong {
        font-size: 18px;
        color: #0f2027;
    }

    .quote-author span {
        font-size: 14px;
        color: #FFD700;
    }

/* Newsletter Section */
.newsletter-section {
    margin-top: 60px;
}

.newsletter-card {
    background: linear-gradient(135deg, #0f2027, #203a43);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

    .newsletter-card::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

.newsletter-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.newsletter-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.newsletter-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    background: white;
    margin-bottom: 10px;
}

.newsletter-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: 10px;
    color: #0f2027;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .newsletter-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    }

.newsletter-footer {
    margin-top: 15px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

    .newsletter-footer a {
        color: #FFD700;
        text-decoration: none;
    }

        .newsletter-footer a:hover {
            text-decoration: underline;
        }
/*****************************************************/


/* ===== FOOTER SAAS ===== */
.footer-saas {
    background: linear-gradient(135deg, #0a1a1f, #0f2027, #1a2f38);
    color: #fff;
    position: relative;
    overflow: hidden;
}

    /* Elementos decorativos del footer */
    .footer-saas::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, #FFD700, #FFA500, #FFD700, transparent);
    }

    .footer-saas::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

/* Main footer area */
.footer-main {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

/* Logo */
.footer-logo {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

    .footer-logo .registered {
        font-size: 12px;
        background: none;
        -webkit-text-fill-color: rgba(255, 255, 255, 0.5);
        color: rgba(255, 255, 255, 0.5);
        margin-left: 2px;
        top: -0.5em;
        position: relative;
    }

/* Descripción */
.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 14px;
}

/* Títulos de secciones */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #FFD700, #FFA500);
        border-radius: 2px;
    }

/* Menús del footer */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-menu li {
        margin-bottom: 12px;
    }

    .footer-menu a {
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
    }

        .footer-menu a i {
            font-size: 12px;
            margin-right: 8px;
            color: #FFD700;
            transition: transform 0.3s ease;
        }

        .footer-menu a:hover {
            color: #FFD700;
            transform: translateX(5px);
        }

            .footer-menu a:hover i {
                transform: translateX(3px);
            }

/* Redes sociales */
.footer-social {
    margin-top: 20px;
}

.social-title {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

    .social-link:hover {
        background: linear-gradient(135deg, #FFD700, #FFA500);
        color: #0f2027;
        transform: translateY(-3px);
        border-color: transparent;
    }

/* Items de contacto */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

    .contact-text a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .contact-text a:hover {
            color: #FFD700;
        }

/* Newsletter */
.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.newsletter-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 50px;
    color: white;
    font-size: 13px;
    transition: all 0.3s ease;
}

    .newsletter-input:focus {
        outline: none;
        border-color: #FFD700;
        background: rgba(255, 255, 255, 0.1);
    }

    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.3);
    }

.newsletter-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border: none;
    border-radius: 50%;
    color: #0f2027;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .newsletter-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    }

/* Footer bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

.copyright-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

    .copyright-link:hover {
        color: white;
    }

.footer-bottom-links {
    text-align: right;
}

    .footer-bottom-links a {
        color: rgba(255, 255, 255, 0.5);
        text-decoration: none;
        font-size: 13px;
        margin-left: 20px;
        transition: color 0.3s ease;
        display: inline-block;
    }

        .footer-bottom-links a:first-child {
            margin-left: 0;
        }

        .footer-bottom-links a:hover {
            color: #FFD700;
        }

/**************************************/






#portafolio h2, #portafolio h4, #perfil h2, #clientes h2, #clientes h4, #services h2, #services h4, #contacto h2, #faq h2, #faq h4, #about h2, #about h4, #values h2, #values h4 {
    color: #303030;
    font-weight: 600;
}

.icono-web, .icono-pc {
    display: block;
    background-image: url(../img/532704-512.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.icono-pc {
    background-image: url(../img/532716-512.png);
}

/* ===== PÁGINA DE PRECIOS ===== */
.pricing-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

/* Hero de precios */
.pricing-hero {
    background: linear-gradient(135deg, #0f2027, #203a43);
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

    .pricing-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
        border-radius: 50%;
    }

    .pricing-hero::after {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
        border-radius: 50%;
    }

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.pricing-hero .hero-title {
    font-size: clamp(36px, 6vw, 52px);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.pricing-hero .hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Toggle de periodo */
.period-toggle-container {
    margin-top: 40px;
}

.toggle-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-weight: 600;
}

.period-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.period-option {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

    .period-option.active {
        color: #FFD700;
    }

.save-badge {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 50px;
    margin-left: 8px;
    font-weight: 600;
}

.toggle-switch {
    width: 60px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.toggle-slider {
    width: 26px;
    height: 26px;
    background: #FFD700;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s ease;
}

.period-toggle.active .toggle-slider {
    transform: translateX(30px);
}

/* Sección características incluidas */
.features-included-section {
    margin-top: -40px;
    position: relative;
    z-index: 2;
    padding: 0 15px;
}

.features-card {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.features-header {
    text-align: center;
    margin-bottom: 30px;
}

    .features-header h2 {
        font-size: 28px;
        font-weight: 800;
        color: #0f2027;
        margin-bottom: 10px;
    }

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.feature-tag {
    background: rgba(15, 32, 39, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #2d3748;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .feature-tag:hover {
        background: rgba(255, 215, 0, 0.1);
        border-color: #FFD700;
        transform: translateY(-2px);
    }

    .feature-tag i {
        color: #FFD700;
        font-size: 14px;
    }

.feature-group {
    background: rgba(15, 32, 39, 0.02);
    border-radius: 16px;
    padding: 15px;
    margin: 20px 0;
    border-left: 3px solid #FFD700;
}

.feature-sublist {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.subfeature {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.2s ease;
}

    .subfeature:hover {
        background: rgba(255, 215, 0, 0.05);
        border-color: #FFD700;
        transform: translateY(-2px);
    }

    .subfeature i {
        color: #FFD700;
        font-size: 10px;
    }
/****************************************/

/* ===== PÁGINA DE CHECKOUT ===== */
.checkout-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

    .checkout-page::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

/* Alertas modernas */
.alert-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    position: relative;
    animation: slideDown 0.3s ease;
}

    .alert-modern.alert-danger {
        background: rgba(220, 53, 69, 0.1);
        border: 1px solid rgba(220, 53, 69, 0.2);
        color: #dc3545;
    }

    .alert-modern.alert-warning {
        background: rgba(255, 193, 7, 0.1);
        border: 1px solid rgba(255, 193, 7, 0.2);
        color: #856404;
    }

    .alert-modern i {
        font-size: 20px;
    }

.alert-close {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

    .alert-close:hover {
        opacity: 1;
    }

/* Resumen del pedido */
.order-summary {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    position: sticky;
    top: 90px;
}

.summary-header {
    background: linear-gradient(135deg, #0f2027, #203a43);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .summary-header i {
        font-size: 24px;
        color: #FFD700;
    }

    .summary-header h4 {
        margin: 0;
        color: white;
        font-weight: 700;
        font-size: 18px;
    }

.summary-content {
    padding: 25px;
}

/* Producto en resumen */
.product-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: #0f2027;
    margin-bottom: 8px;
}

.product-meta {
    display: flex;
    gap: 8px;
}

.badge-plan {
    background: rgba(255, 215, 0, 0.1);
    color: #0f2027;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 50px;
}

.product-price {
    text-align: right;
}

.price-label {
    font-size: 14px;
    color: #6c757d;
    margin-right: 2px;
}

.price-amount {
    font-size: 20px;
    font-weight: 800;
    color: #0f2027;
}

/* Código promocional */
.promo-section {
    margin-bottom: 20px;
}

.promo-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #0f2027;
    margin-bottom: 10px;
}

    .promo-label i {
        color: #FFD700;
    }

.promo-input-group {
    display: flex;
    gap: 8px;
}

.promo-input {
    flex: 1;
    padding: 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .promo-input:focus {
        outline: none;
        border-color: #FFD700;
        box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    }

.promo-btn {
    padding: 10px 20px;
    background: linear-gradient(135deg, #0f2027, #203a43);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .promo-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(15, 32, 39, 0.2);
        color: #FFD700;
    }

.promo-response {
    display: block;
    margin-top: 8px;
    font-size: 13px;
}

/* Total */
.total-section {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 20px;
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

    .total-row span {
        font-size: 16px;
        font-weight: 600;
        color: #0f2027;
    }

.total-amount {
    font-size: 24px;
    font-weight: 800;
    color: #0f2027;
    margin: 0;
}

.tax-note {
    font-size: 12px;
    color: #6c757d;
    margin: 5px 0 0;
}

    .tax-note i {
        color: #FFD700;
        margin-right: 4px;
    }

/* Badges de seguridad en resumen */
.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 50px;
    font-size: 12px;
    color: #0f2027;
}

    .security-badge i {
        color: #FFD700;
        font-size: 12px;
    }

/* Formulario de cliente */
.customer-form {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, #0f2027, #203a43);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .form-header i {
        font-size: 24px;
        color: #FFD700;
    }

    .form-header h4 {
        margin: 0;
        color: white;
        font-weight: 700;
        font-size: 18px;
    }

.form-content {
    padding: 25px;
}

/* Grupos de formulario */
.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #0f2027;
    margin-bottom: 6px;
}

    .form-label i {
        color: #FFD700;
        font-size: 14px;
    }

.modern-input {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .modern-input:focus {
        outline: none;
        border-color: #FFD700;
        box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    }

.modern-select {
    width: 100%;
    padding: 10px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .modern-select:focus {
        outline: none;
        border-color: #FFD700;
        box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    }

/* Divisor */
.form-divider {
    margin: 30px 0;
    border: 0;
    border-top: 2px solid rgba(255, 215, 0, 0.1);
}

/* Métodos de pago */
.payment-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #0f2027;
    margin-bottom: 20px;
}

    .payment-title i {
        color: #FFD700;
    }

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-option {
    position: relative;
}

.payment-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-radio:checked + .payment-label {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.02);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

.payment-label i:first-child {
    font-size: 20px;
    color: #FFD700;
}

.payment-label span {
    flex: 1;
    font-weight: 600;
    color: #0f2027;
}

.payment-icons {
    display: flex;
    gap: 8px;
}

    .payment-icons i {
        font-size: 20px;
        color: #6c757d;
    }

/* Botones de acción */
.action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-cancel {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: #6c757d;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-cancel:hover {
        border-color: #dc3545;
        color: #dc3545;
        transform: translateY(-2px);
    }

.btn-continue {
    flex: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, #0f2027, #203a43);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-continue:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(15, 32, 39, 0.2);
        color: #FFD700;
    }

    .btn-continue i {
        transition: transform 0.3s ease;
    }

    .btn-continue:hover i:last-child {
        transform: translateX(5px);
    }

/* Notas de seguridad */
.security-notes {
    margin-top: 25px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.02);
    border-radius: 16px;
}

    .security-notes p {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
        color: #6c757d;
        margin-bottom: 8px;
    }

        .security-notes p:last-child {
            margin-bottom: 0;
        }

    .security-notes i {
        font-size: 14px;
    }
/*************************************************/

/* ===== PÁGINA DE CONFIRMACIÓN ===== */
.confirmation-page, .payment-page, .payment-card-page, .payment-oxxo-page, .oxxo-instructions-page, .unsubscribe-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

    .oxxo-instructions-page, .unsubscribe-page{
        padding-top: 0;
    }

    .confirmation-page::before, .payment-page::before,
    .payment-card-page::before, .payment-oxxo-page::before,
    .oxxo-instructions-page::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .oxxo-instructions-page::before {
        background: radial-gradient(circle, rgba(227, 6, 19, 0.03) 0%, transparent 70%);
    }

    .confirmation-page::after, .payment-page::after,
    .payment-card-page::after, .payment-oxxo-page::after,
    .oxxo-instructions-page::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(15, 32, 39, 0.02) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

    .oxxo-instructions-page::after {
        background: radial-gradient(circle, rgba(255, 215, 0, 0.02) 0%, transparent 70%);
    }

/* Header de confirmación */
.confirmation-header, .payment-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.header-icon{
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0f2027, #203a43);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid #FFD700;
    animation: pulse 2s ease-in-out infinite;
}

    .header-icon i {
        font-size: 40px;
        color: #FFD700;
    }

.header-title {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    color: #0f2027;
    margin-bottom: 10px;
}

.header-subtitle {
    font-size: 16px;
    color: #6c757d;
    max-width: 500px;
    margin: 0 auto;
}

/* Tarjetas de confirmación */
.confirmation-card, .payment-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

    .confirmation-card:hover, .payment-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    }

.card-header-custom {
    background: linear-gradient(135deg, #0f2027, #203a43);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

    .card-header-custom i {
        font-size: 24px;
        color: #FFD700;
    }

    .card-header-custom h3 {
        margin: 0;
        color: white;
        font-size: 18px;
        font-weight: 700;
    }

.card-body-custom {
    padding: 25px;
}

/* Resumen de producto */
.product-summary {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.1);
}

.product-main {
    position: relative;
}

.product-label {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-size: 20px;
    font-weight: 800;
    color: #0f2027;
    margin-bottom: 10px;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #0f2027;
}

    .product-badge i {
        color: #FFD700;
    }

/* Detalle de costos */
.cost-details {
    margin-bottom: 25px;
}

.cost-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

    .cost-row.discount .cost-label i {
        color: #FFD700;
        margin-right: 5px;
    }

.cost-label {
    font-size: 14px;
    color: #6c757d;
}

.cost-value {
    font-size: 14px;
    font-weight: 600;
    color: #0f2027;
}

    .cost-value.text-success {
        color: #28a745 !important;
    }

.cost-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, #FFA500, #FFD700, transparent);
    margin: 15px 0;
}

.cost-row.total {
    padding: 10px 0;
}

.total-label {
    font-size: 16px;
    font-weight: 700;
    color: #0f2027;
}

.total-value {
    font-size: 24px;
    font-weight: 800;
    color: #0f2027;
}

/* Resumen de pago */
.payment-summary {
    background: rgba(255, 215, 0, 0.02);
    border-radius: 16px;
    padding: 15px;
}

.confirmation-header, .payment-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.confirmation-header i, .payment-header i {
        color: #FFD700;
        font-size: 16px;
    }

    .confirmation-header span, .payment-header span {
        /*        font-size: 13px;
        font-weight: 600;*/
        color: #0f2027;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.payment-method-display {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
}

    .payment-method-display i:first-child {
        font-size: 24px;
        color: #FFD700;
    }

    .payment-method-display span {
        flex: 1;
        font-size: 15px;
        font-weight: 600;
        color: #0f2027;
    }

.card-icons {
    display: flex;
    gap: 8px;
}

    .card-icons i {
        font-size: 20px;
        color: #6c757d;
    }

/* Grid de información del cliente */
.customer-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(15, 32, 39, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .info-item:hover {
        background: rgba(255, 215, 0, 0.03);
    }

    .info-item.full-width {
        grid-column: 1 / -1;
    }

.info-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .info-icon i {
        color: #FFD700;
        font-size: 14px;
    }

.info-content {
    flex: 1;
}

.info-label {
    display: block;
    font-size: 11px;
    color: #6c757d;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 14px;
    font-weight: 600;
    color: #0f2027;
    line-height: 1.4;
}

/* Sección de edición */
.edit-section {
    text-align: center;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 215, 0, 0.3);
}

.edit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 25px;
    background: white;
    border: 2px solid #0f2027;
    border-radius: 50px;
    color: #0f2027;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .edit-link:hover {
        background: #0f2027;
        color: #FFD700;
        transform: translateY(-2px);
        text-decoration: none;
    }

    .edit-link i {
        transition: transform 0.3s ease;
    }

    .edit-link:hover i {
        transform: rotate(180deg);
    }

.edit-note {
    font-size: 12px;
    color: #6c757d;
    margin-top: 10px;
}

/* Nota de seguridad */
.security-note-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

    .security-note-card i {
        font-size: 32px;
        color: #FFD700;
    }

.note-content {
    flex: 1;
}

    .note-content strong {
        display: block;
        font-size: 14px;
        color: #0f2027;
        margin-bottom: 5px;
    }

    .note-content span {
        font-size: 13px;
        color: #6c757d;
        line-height: 1.5;
    }

/* Sección de acciones */
.action-section {
    margin-top: 40px;
    text-align: center;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 25px;
}

.btn-cancel, .btn-cancel-payment {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: #6c757d;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-cancel:hover, .btn-cancel-payment:hover {
        border-color: #dc3545;
        color: #dc3545;
        transform: translateY(-2px);
    }

.btn-pay {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: linear-gradient(135deg, #0f2027, #203a43);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .btn-pay:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(15, 32, 39, 0.2);
        color: #FFD700;
    }

    .btn-pay i:first-child {
        margin-right: 5px;
    }

    .btn-pay i:last-child {
        transition: transform 0.3s ease;
    }

    .btn-pay:hover i:last-child {
        transform: translateX(5px);
    }

/* Badges de confianza */
.trust-badges, .trust-badges-payment {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

    .trust-badge, .trust-badges-payment .trust-badge {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 6px 15px;
        background: rgba(255, 215, 0, 0.05);
        border-radius: 50px;
        font-size: 13px;
        color: #0f2027;
    }

        .trust-badge i, .trust-badges-payment .trust-badge i {
            color: #FFD700;
            font-size: 12px;
        }
/******************************************/

/* ===== PÁGINA DE PAGO CON PAYPAL ===== */

    .payment-page::before {
        background: radial-gradient(circle, rgba(0, 48, 135, 0.03) 0%, transparent 70%);
    }

    .payment-page::after {
        background: radial-gradient(circle, rgba(255, 215, 0, 0.02) 0%, transparent 70%);
    }

/* Header de la página */
.header-icon-paypal {
    background: linear-gradient(135deg, #003087, #009cde);
}

    .header-icon-paypal i {
        font-size: 40px;
        color: white;
    }

.paypal-gradient {
    background: linear-gradient(135deg, #003087, #009cde);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Tarjetas de pago */
    .card-header-custom-paypal h3 {
        flex: 1;
    }

    .card-header-custom.paypal-header {
        background: linear-gradient(135deg, #003087, #009cde);
    }

.paypal-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

/* Highlight de pago */
.payment-highlight, .oxxo-info-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(0, 48, 135, 0.05), rgba(0, 156, 222, 0.05));
    border-radius: 16px;
    padding: 15px;
    border: 1px solid rgba(0, 48, 135, 0.1);
}

    .payment-highlight i {
        font-size: 32px;
        color: #003087;
    }

.highlight-text, .highlight-text {
    flex: 1;
}

    .highlight-text strong {
        display: block;
        font-size: 14px;
        color: #0f2027;
        margin-bottom: 3px;
    }

    .highlight-text span {
        font-size: 12px;
        color: #6c757d;
        line-height: 1.4;
    }

/* Resumen del cliente */
.customer-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

    .summary-item i {
        width: 32px;
        height: 32px;
        background: rgba(255, 215, 0, 0.1);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #FFD700;
        font-size: 14px;
    }

    .summary-item .item-label {
        display: block;
        font-size: 11px;
        color: #6c757d;
        margin-bottom: 2px;
        text-transform: uppercase;
    }

    .summary-item .item-value {
        font-size: 14px;
        font-weight: 600;
        color: #0f2027;
    }

/* Información de PayPal */
.paypal-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
    background: rgba(0, 48, 135, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .info-box:hover {
        background: rgba(0, 48, 135, 0.05);
        transform: translateX(5px);
    }

    .info-box i {
        font-size: 24px;
        color: #003087;
    }

    .info-box div {
        flex: 1;
    }

    .info-box strong {
        display: block;
        font-size: 14px;
        color: #0f2027;
        margin-bottom: 2px;
    }

    .info-box span {
        font-size: 12px;
        color: #6c757d;
    }

/* Botón de PayPal */
.paypal-button-container-wrapper {
    margin: 25px 0;
    padding: 10px;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 16px;
    border: 1px solid rgba(0, 48, 135, 0.1);
}

.paypal-button {
    min-height: 45px;
    display: flex;
    justify-content: center;
}

/* Notas de PayPal */
.paypal-notes {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.02);
    border-radius: 12px;
}

    .paypal-notes p {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 12px;
        color: #6c757d;
        margin-bottom: 10px;
    }

        .paypal-notes p:last-child {
            margin-bottom: 0;
        }

        .paypal-notes p i {
            color: #FFD700;
            font-size: 14px;
        }

/* Botón de cancelar */
.cancel-section {
    text-align: center;
    margin-top: 20px;
}

    .btn-cancel-payment:hover {
        border-color: #dc3545;
        color: #dc3545;
        transform: translateY(-2px);
    }

.cancel-note {
    font-size: 12px;
    color: #6c757d;
    margin-top: 10px;
}

/* Badges de confianza */
.trust-badges-payment {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

    .trust-badges-payment .trust-badge {
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(255, 215, 0, 0.1);
    }

/* Alertas */
.alerts-container {
    margin-top: 20px;
}

    .alerts-container.hidden {
        display: none;
    }
/***************************************************/

/* ===== PAGO CON TARJETA =====*/

.card-header-custom.card-header-gradient {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

    .card-header-custom.card-header-gradient i,
    .card-header-custom.card-header-gradient h3 {
        color: #0f2027;
    }

.secure-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.card-header-custom.card-header-gradient .secure-badge {
    background: rgba(15, 32, 39, 0.2);
    color: #0f2027;
}

.payment-highlight-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

    .payment-highlight-card i {
        font-size: 24px;
        color: #FFD700;
    }

.edit-link-container {
    text-align: right;
    padding-top: 10px;
    border-top: 1px dashed rgba(255, 215, 0, 0.3);
}

.edit-link-card {
    padding: 5px 12px;
    background: rgba(255, 215, 0, 0.05);
}

    .edit-link-card:hover {
        color: #0f2027;
    }

/* Tarjetas aceptadas */
.accepted-cards {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    padding: 12px 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.cards-label {
    font-size: 13px;
    color: #6c757d;
    font-weight: 500;
}

.cards-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .cards-icons i {
        font-size: 28px;
        color: #0f2027;
        transition: all 0.3s ease;
    }

        .cards-icons i:hover {
            transform: translateY(-2px);
        }

.more-cards {
    font-size: 12px;
    color: #6c757d;
    margin-left: 5px;
}

/* Formulario de pago */
.payment-form {
    width: 100%;
}

.stripe-element-container {
    background: white;
    border-radius: 16px;
    padding: 5px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stripe-element {
    min-height: 200px;
}

/* Botón de pago */
.btn-pay-card, .btn-oxxo-pay {
    width: 100%;
    padding: 16px 25px;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Botón de pago OXXO */
.btn-oxxo-pay {
    background: linear-gradient(135deg, #e30613, #ff4d4d);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

    .btn-pay-card::before, .btn-oxxo-pay::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: left 0.5s ease;
    }

    .btn-oxxo-pay:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(227, 6, 19, 0.3);
        color: white;
    }

        .btn-pay-card:hover::before, .btn-oxxo-pay:hover::before {
            left: 100%;
        }

    .btn-pay-card:disabled, .btn-oxxo-pay:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

    .btn-pay-card i, .btn-oxxo-pay i {
        font-size: 16px;
    }

.spinner {
    display: inline-block;
}

    .spinner i {
        font-size: 18px;
        color: white;
    }

    .spinner.hidden {
        display: none;
    }

#button-text.hidden {
    display: none;
}

/* Mensaje de pago */
.payment-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

    .payment-message.success {
        background: rgba(40, 167, 69, 0.1);
        border: 1px solid rgba(40, 167, 69, 0.2);
        color: #28a745;
    }

    .payment-message.error {
        background: rgba(220, 53, 69, 0.1);
        border: 1px solid rgba(220, 53, 69, 0.2);
        color: #dc3545;
    }

    .payment-message.info {
        background: rgba(23, 162, 184, 0.1);
        border: 1px solid rgba(23, 162, 184, 0.2);
        color: #17a2b8;
    }

    .payment-message.hidden {
        display: none;
    }

/* Información de seguridad */
.card-security-info {
    margin-top: 25px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.02);
    border-radius: 12px;
}

    .card-security-info .info-row {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        font-size: 13px;
        color: #4a5568;
    }

        .card-security-info .info-row:last-child {
            margin-bottom: 0;
        }

        .card-security-info .info-row i {
            color: #FFD700;
            font-size: 14px;
        }

.cancel-form {
    display: inline-block;
}

.trust-badges-payment .trust-badge {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

/*******************************************/

/* ===== PÁGINA DE PAGO CON OXXO ===== */

/* Header con gradiente OXXO */
.oxxo-gradient {
    background: linear-gradient(135deg, #e30613, #ff4d4d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Highlight de OXXO */
.oxxo-info-highlight {
    background: rgba(227, 6, 19, 0.05);
    margin-top: 15px;
}

    .oxxo-info-highlight i {
        font-size: 24px;
        color: #e30613;
    }

/* Header de OXXO */
.card-header-custom.oxxo-header {
    background: linear-gradient(135deg, #e30613, #c20510);
}

    .card-header-custom.oxxo-header i {
        color: white;
    }

.oxxo-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(5px);
}

/* Beneficios de OXXO */
.oxxo-benefits {
    margin-top: 15px;
    padding: 15px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 13px;
    color: #4a5568;
}

    .benefit-item i {
        width: 24px;
        color: #e30613;
        font-size: 14px;
    }

/* Instrucciones OXXO */
.oxxo-instructions {
    margin-bottom: 25px;
}

.instruction-step {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(255, 215, 0, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .instruction-step:hover {
        background: rgba(227, 6, 19, 0.02);
        transform: translateX(5px);
    }

/* Sección de pasos */
.steps-section {
    margin-bottom: 30px;
}

.steps-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f2027;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .steps-title i {
        color: #e30613;
    }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.step-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: rgba(227, 6, 19, 0.02);
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .step-card:hover {
        transform: translateY(-2px);
        background: rgba(227, 6, 19, 0.05);
    }

.step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #e30613, #c20510);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-text, .step-content {
    flex: 1;
}

    .step-text strong, .step-content strong {
        display: block;
        font-size: 15px;
        color: #0f2027;
        margin-bottom: 4px;
    }

    .step-text p, .step-content p {
        font-size: 13px;
        color: #6c757d;
        margin: 0;
        line-height: 1.4;
    }

.amount-highlight {
    color: #e30613;
    font-weight: 700;
}

.voucher-body {
    padding: 30px;
}

/* Sección de referencia */
.reference-section {
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 30px;
    border: 2px dashed #e30613;
}

.reference-label {
    display: block;
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.reference-number {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #e30613;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-family: monospace;
    word-break: break-all;
}

.copy-reference-btn {
    background: white;
    border: 2px solid #e30613;
    color: #e30613;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .copy-reference-btn:hover {
        background: #e30613;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(227, 6, 19, 0.2);
    }

/* Mensaje de error */
.oxxo-error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #dc3545;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 20px;
    display: none;
    animation: slideDown 0.3s ease;
}

/* Información adicional OXXO */
.oxxo-additional-info {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.02);
    border-radius: 12px;
}

    .oxxo-additional-info .info-row {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        font-size: 13px;
        color: #4a5568;
    }

        .oxxo-additional-info .info-row:last-child {
            margin-bottom: 0;
        }

        .oxxo-additional-info .info-row i {
            color: #e30613;
            font-size: 14px;
        }

/* Tarjeta principal */
.voucher-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.voucher-header {
    background: linear-gradient(135deg, #e30613, #c20510);
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

    .voucher-header i {
        font-size: 24px;
    }

    .voucher-header h5 {
        margin: 0;
        font-size: 18px;
        font-weight: 700;
        flex: 1;
    }

/* Sección de descarga PDF */
.voucher-download-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 215, 0, 0.02);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 30px;
    border: 1px solid rgba(227, 6, 19, 0.1);
}

.download-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pdf-icon {
    font-size: 32px;
    color: #dc3545;
}

.download-info strong {
    display: block;
    font-size: 14px;
    color: #0f2027;
}

.download-info span {
    font-size: 12px;
    color: #6c757d;
}

.btn-download-pdf {
    background: linear-gradient(135deg, #e30613, #c20510);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .btn-download-pdf:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(227, 6, 19, 0.3);
        color: white;
        text-decoration: none;
    }

/* Sección de expiración */
.expiration-section {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(15, 32, 39, 0.02);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.expiration-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .expiration-icon i {
        font-size: 24px;
        color: #FFD700;
    }

.expiration-content {
    flex: 1;
}

.expiration-label {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-timer {
    font-size: 28px;
    font-weight: 800;
    color: #0f2027;
    line-height: 1;
    margin-bottom: 5px;
}

    .countdown-timer.expired {
        color: #dc3545;
    }

.expiration-date {
    font-size: 12px;
    color: #6c757d;
}

/* Footer de la tarjeta */
.voucher-footer {
    background: #f8f9fa;
    padding: 20px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.footer-actions {
    margin-bottom: 10px;
}

.btn-email {
    background: white;
    border: 2px solid #0f2027;
    color: #0f2027;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .btn-email:hover {
        background: #0f2027;
        color: #FFD700;
        transform: translateY(-2px);
    }

    .btn-email:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

.help-link {
    text-align: center;
    font-size: 13px;
}

    .help-link i {
        color: #e30613;
        margin-right: 5px;
    }

    .help-link a {
        color: #6c757d;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .help-link a:hover {
            color: #e30613;
        }

/* Sección de verificación automática */
.auto-verify-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.verify-content {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

    .verify-content i {
        color: #e30613;
        font-size: 20px;
    }

    .verify-content p {
        margin: 0;
        color: #6c757d;
        font-size: 14px;
    }

.progress-bar-container {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar-animated {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #e30613, #ff4d4d);
    animation: progressPulse 2s ease-in-out infinite;
}

/* Mensaje de éxito */
.success-message {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    border-radius: 12px;
    padding: 20px;
    color: #28a745;
    animation: slideDown 0.3s ease;
}

    .success-message i {
        font-size: 32px;
    }

    .success-message strong {
        display: block;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .success-message p {
        margin: 0;
        font-size: 14px;
    }

/* Estado de error */
.error-state {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 12px;
    padding: 20px;
}

    .error-state i {
        font-size: 32px;
        color: #dc3545;
    }

    .error-state strong {
        display: block;
        color: #dc3545;
        margin-bottom: 5px;
    }

    .error-state p {
        margin: 0 0 10px 0;
        color: #6c757d;
    }

.btn-retry-small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1px solid #dc3545;
    color: #dc3545;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn-retry-small:hover {
        background: #dc3545;
        color: white;
        text-decoration: none;
    }

/* Notificaciones */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    animation: slideInRight 0.3s ease;
    border-left: 4px solid;
}

    .notification.success {
        border-left-color: #28a745;
    }

        .notification.success i {
            color: #28a745;
        }

    .notification.error {
        border-left-color: #dc3545;
    }

        .notification.error i {
            color: #dc3545;
        }

    .notification.fade-out {
        animation: slideOutRight 0.3s ease forwards;
    }

.help-list {
    margin: 20px 0;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #4a5568;
}

    .help-item i {
        color: #28a745;
        font-size: 14px;
    }

.help-divider {
    margin: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info {
    background: rgba(255, 215, 0, 0.02);
    padding: 15px;
    border-radius: 12px;
}

.contact-title {
    margin-bottom: 10px;
    color: #0f2027;
}

.contact-item-oxxo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 14px;
}

    .contact-item-oxxo i {
        color: #FFD700;
        width: 20px;
    }

    .contact-item-oxxo a {
        color: #0f2027;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .contact-item-oxxo a:hover {
            color: #e30613;
        }

/*******************************************/

/* ===== PÁGINA DE PROCESAMIENTO ===== */
.processing-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top:20px;
    padding-bottom:20px;
}

    /* Fondo animado */
    .processing-page::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: floatBackground 15s ease-in-out infinite;
    }

    .processing-page::after {
        content: '';
        position: absolute;
        bottom: -50%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        animation: floatBackground 20s ease-in-out infinite reverse;
    }

/* Tarjeta principal */
.processing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

/* Header de la tarjeta */
.card-header-processing {
    background: linear-gradient(135deg, #0f2027, #203a43);
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .card-header-processing::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
        animation: rotate 20s linear infinite;
    }

.header-icon {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: pulseProcessing 2s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

    .icon-circle i {
        font-size: 40px;
        color: #0f2027;
        animation: spin 10s linear infinite;
    }

.header-title-processing {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin: 0;
    position: relative;
    z-index: 2;
}

.header-icon-card {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

    .header-icon-card i {
        font-size: 40px;
        color: #0f2027;
    }

.header-icon-oxxo {
    background: linear-gradient(135deg, #e30613, #c20510);
}

    .header-icon-oxxo i {
        font-size: 40px;
        color: white;
    }

.card-gradient {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Cuerpo de la tarjeta */
.card-body-processing {
    padding: 40px 30px;
}

/* Spinner personalizado */
.spinner-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.custom-spinner {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.spinner-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

    .spinner-ring:nth-child(1) {
        border-top-color: #FFD700;
        animation-delay: 0s;
    }

    .spinner-ring:nth-child(2) {
        border-right-color: #FFA500;
        animation-delay: 0.2s;
    }

    .spinner-ring:nth-child(3) {
        border-bottom-color: #0f2027;
        animation-delay: 0.4s;
    }

.spinner-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseProcessing 2s ease-in-out infinite;
}

    .spinner-center i {
        font-size: 24px;
        color: #0f2027;
    }

.spinner-text {
    font-size: 18px;
    font-weight: 600;
    color: #0f2027;
    margin: 10px 0 0;
}

/* Mensajes de estado */
.status-messages {
    margin-bottom: 30px;
}

.message-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #4a5568;
    transition: all 0.3s ease;
}

    .message-item:hover {
        transform: translateX(5px);
        background: rgba(255, 215, 0, 0.1);
    }

    .message-item i {
        font-size: 18px;
        color: #FFD700;
    }

    .message-item.highlight {
        background: rgba(0, 128, 0, 0.05);
        border-left: 3px solid #28a745;
    }

        .message-item.highlight i {
            color: #25D366;
        }

    .message-item.warning {
        background: rgba(255, 193, 7, 0.05);
        border-left: 3px solid #ffc107;
    }

        .message-item.warning i {
            color: #ffc107;
        }

/* Nota importante */
.important-note {
    display: flex;
    gap: 15px;
    background: linear-gradient(135deg, #0f2027, #203a43);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    color: white;
}

.note-icon i {
    font-size: 24px;
    color: #FFD700;
}

.note-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
    color: #FFD700;
}

.note-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.5;
}
/****************************************/

/* ===== PÁGINA DE CONFIGURACIÓN DE SUSCRIPCIONES ===== */

/* Header de la página */
.page-header {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.header-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    margin: 0 auto;
    border-radius: 2px;
}

/* Tarjeta principal */
.unsubscribe-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.privacy-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

    .privacy-badge i {
        font-size: 14px;
        color: #FFD700;
    }

/* Mensaje informativo */
.info-message {
    display: flex;
    gap: 15px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid #FFD700;
}

    .info-message i {
        font-size: 24px;
        color: #FFD700;
        flex-shrink: 0;
    }

    .info-message strong {
        display: block;
        font-size: 16px;
        color: #0f2027;
        margin-bottom: 5px;
    }

    .info-message p {
        margin: 0;
        font-size: 14px;
        color: #4a5568;
        line-height: 1.6;
    }

/* Formulario */
.unsubscribe-form {
    margin-bottom: 30px;
}

.input-hint {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
}

.recaptcha-container {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

/* Botón de actualizar */
.btn-unsubscribe {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #0f2027, #203a43);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    opacity: 0.7;
}

    .btn-unsubscribe.ready {
        opacity: 1;
    }

    .btn-unsubscribe:not(:disabled):hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(15, 32, 39, 0.2);
        color: #FFD700;
    }

    .btn-unsubscribe:disabled {
        cursor: not-allowed;
        background: #6c757d;
    }

    .btn-unsubscribe i {
        transition: transform 0.3s ease;
    }

    .btn-unsubscribe:hover:not(:disabled) i {
        transform: rotate(180deg);
    }

/* Mensaje de respuesta */
.response-message {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(40, 167, 69, 0.1);
    border-radius: 12px;
    color: #28a745;
    animation: slideDown 0.3s ease;
}

    .response-message i {
        font-size: 20px;
    }

    .response-message span {
        font-size: 14px;
        font-weight: 500;
    }

/* Información adicional */
.additional-info {
    background: rgba(15, 32, 39, 0.02);
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
}

.info-title-subscriptions {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #0f2027;
    margin-bottom: 15px;
}

    .info-title-subscriptions i {
        color: #FFD700;
    }

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .info-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 12px;
        font-size: 14px;
        color: #4a5568;
    }

        .info-list li:last-child {
            margin-bottom: 0;
        }

        .info-list li i {
            color: #28a745;
            font-size: 14px;
        }

/* Footer de la tarjeta */
.card-footer-custom {
    background: #f8f9fa;
    padding: 20px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

/* Badge de confianza simple */
.trust-badge-simple {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.6;
}

    .trust-badge-simple i {
        color: #FFD700;
        margin-right: 5px;
    }

/****************************************/

/* ===== ICONOS DE ESTADO ===== */
.status-icon-wrapper {
    margin: 0 0 25px 0;
    animation: bounceIn 0.5s ease;
}

.success-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    animation: pulseSuccess 2s ease-in-out infinite;
}

    .success-icon-circle i {
        font-size: 48px;
        color: white;
    }

.error-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
    animation: pulseError 2s ease-in-out infinite;
}

    .error-icon-circle i {
        font-size: 48px;
        color: white;
    }

/* Alertas de estado */
.status-alert-container {
    margin-bottom: 25px;
}

/* Alerta de estado */
.status-alert {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-radius: 16px;
    margin-bottom: 25px;
    animation: slideDown 0.3s ease;
}

.status-alert-instructions {
    align-items: center;
    background: linear-gradient(135deg, #0f2027, #203a43);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .status-alert.success {
        background: rgba(40, 167, 69, 0.1);
        border: 1px solid rgba(40, 167, 69, 0.2);
        color: #28a745;
    }

    .status-alert.error {
        background: rgba(220, 53, 69, 0.1);
        border: 1px solid rgba(220, 53, 69, 0.2);
        color: #dc3545;
    }

    .status-alert i {
        font-size: 24px;
    }

    .status-alert-instructions i {
        font-size: 32px;
        color: #FFD700;
    }

.status-alert .alert-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.status-alert .alert-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.alert-content strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.alert-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Información de transacción */
.transaction-info {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 25px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.info-label {
    color: #6c757d;
    font-weight: 500;
}

.info-value {
    font-family: monospace;
    font-weight: 600;
    color: #0f2027;
    background: white;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    flex: 1;
}

.copy-btn {
    background: none;
    border: none;
    color: #FFD700;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

    .copy-btn:hover {
        background: rgba(255, 215, 0, 0.1);
        transform: scale(1.1);
    }

    .copy-btn.copied {
        color: #28a745;
    }

/* Botones de acción */
.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: #6c757d;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

    .btn-home:hover {
        border-color: #0f2027;
        color: #0f2027;
        transform: translateY(-2px);
        text-decoration: none;
    }

.btn-check-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, #0f2027, #203a43);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

    .btn-check-status:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(15, 32, 39, 0.2);
        color: #FFD700;
    }

    .btn-check-status:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

/* Badges de confianza */
.trust-badges-processing {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

    .trust-badges-processing .trust-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 15px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border-radius: 50px;
        color: white;
        font-size: 13px;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

        .trust-badges-processing .trust-badge i {
            color: #FFD700;
        }
/****************************************/


@media (max-width: 768px) {
    .glass-card {
        padding: 30px 20px !important;
    }

    .hero-title {
        font-size: 36px;
    }

    .gradient-text {
        font-size: 40px;
    }

    .services-section {
        padding: 60px 0 !important;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .service-icon {
        font-size: 36px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-description {
        font-size: 13px;
    }

    .service-features-list li {
        font-size: 12px;
    }

    .btn-services-cta {
        padding: 12px 25px;
        font-size: 14px;
    }

    .product-content {
        margin: 0 auto;
        text-align: center;
    }

    .product-features-list {
        justify-content: center;
    }

    .product-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

        .product-cta .btn-link {
            margin-left: 0 !important;
        }

    .floating-badge {
        display: none;
    }

    .feature-divider-text {
        padding: 0 15px;
        font-size: 12px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 16px;
    }

    .category-header h3 {
        font-size: 16px;
    }

    .business-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .versatility-badge {
        padding: 12px 20px;
        font-size: 14px;
    }

    .success-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 30px;
    }

    .success-stats {
        justify-content: center;
    }

    .success-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 30px;
    }

    .comparison-table {
        font-size: 14px;
    }

        .comparison-table th,
        .comparison-table td {
            padding: 12px 8px;
        }

    .pricing-card.featured {
        transform: scale(1);
        margin: 20px 0;
    }

        .pricing-card.featured:hover {
            transform: scale(1) translateY(-10px);
        }

    .amount {
        font-size: 40px;
    }

    .btn-pricing {
        font-size: 15px;
        padding: 12px 15px;
    }

    .stat-label {
        font-size: 12px;
    }

    .cta-card {
        padding: 30px 20px;
        margin: 30px 0;
    }

    .cta-main-title {
        text-align: center;
        margin-bottom: 30px;
    }

    .cta-main-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .btn-cta-final {
        margin: 0 auto;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 30px 20px;
    }

    .info-item {
        padding: 12px;
    }

    .info-icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .info-content h4 {
        font-size: 15px;
    }

    .info-content a,
    .info-content p {
        font-size: 14px;
    }

    .btn-contact {
        width: 100%;
    }

    .recaptcha-wrapper {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer-main {
        padding: 40px 0 20px;
    }

    .footer-title {
        margin-top: 20px;
    }

    .footer-bottom-links {
        text-align: center;
        margin-top: 15px;
    }

        .footer-bottom-links a {
            margin: 0 10px;
        }

    .copyright {
        text-align: center;
    }

    .pricing-hero {
        padding: 40px 0 60px;
    }

    .features-card {
        padding: 25px;
    }

    .feature-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .subfeature {
        padding: 5px 10px;
        font-size: 11px;
    }

    .faq-button {
        padding: 15px 20px;
        font-size: 15px;
    }

    .faq-body {
        padding: 0 20px 20px 52px;
        font-size: 14px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .faq-contact-cta {
        padding: 20px;
    }

    .btn-contact-faq {
        padding: 10px 25px;
        font-size: 14px;
    }
    .about-card {
        padding: 25px;
        margin-top: -40px;
    }

    .company-info-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-badge {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }

    .founder-card {
        padding: 25px;
    }

    .founder-image-placeholder {
        margin-bottom: 20px;
    }

    .innovation-stats {
        flex-direction: column;
        gap: 15px;
    }

    .newsletter-card {
        padding: 30px;
    }

    .newsletter-title {
        font-size: 24px;
    }

    .checkout-page {
        padding: 50px 0 40px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-cancel, .btn-continue {
        width: 100%;
    }

    .payment-icons {
        display: none;
    }

    .security-badges {
        flex-direction: column;
    }

    .security-badge {
        justify-content: center;
    }

    .order-summary {
        margin-bottom: 30px;
        position: relative;
        top: 0;
    }

    .confirmation-page, .payment-page, .payment-card-page, .payment-oxxo-page {
        padding: 100px 0 40px;
    }

    .header-icon {
        width: 60px;
        height: 60px;
    }

        .header-icon i {
            font-size: 30px;
        }

    .instruction-step {
        padding: 8px;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .step-text strong {
        font-size: 14px;
    }

    .step-text p {
        font-size: 12px;
    }

    .customer-info-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 20px;
    }

    .btn-cancel, .btn-pay {
        width: 100%;
        justify-content: center;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .security-note-card {
        margin: 20px 15px 0;
    }

    .card-header-custom {
        padding: 15px 20px;
    }

    .card-body-custom {
        padding: 20px;
    }

    .total-value {
        font-size: 20px;
    }

    .info-box {
        padding: 10px;
    }

        .info-box i {
            font-size: 20px;
        }

    .accepted-cards {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .btn-pay-card, .btn-oxxo-pay {
        padding: 14px 20px;
        font-size: 15px;
    }

    .trust-badges-payment {
        gap: 15px;
        margin-top: 30px;
    }

        .trust-badges-payment .trust-badge {
            padding: 6px 15px;
            font-size: 12px;
        }

    .card-header-processing {
        padding: 30px 20px;
    }

    .header-title, .header-title-processing {
        font-size: 24px;
    }

    .card-body-processing {
        padding: 30px 20px;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

        .icon-circle i {
            font-size: 30px;
        }

    .custom-spinner {
        width: 80px;
        height: 80px;
    }

    .spinner-center {
        width: 50px;
        height: 50px;
    }

        .spinner-center i {
            font-size: 20px;
        }

    .spinner-text {
        font-size: 16px;
    }

    .message-item {
        padding: 10px 12px;
        font-size: 13px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-home, .btn-check-status {
        width: 100%;
    }

    .trust-badges-processing {
        flex-direction: column;
        align-items: center;
    }

        .trust-badges-processing .trust-badge {
            width: 100%;
            justify-content: center;
        }

    .status-alert {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .voucher-body {
        padding: 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .expiration-section {
        flex-direction: column;
        text-align: center;
    }

    .voucher-download-section {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .download-info {
        flex-direction: column;
        text-align: center;
    }

    .btn-download-pdf {
        width: 100%;
        justify-content: center;
    }

    .notification {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: 20px;
    }

    .page-header {
        margin-top: 80px !important;
    }

    .privacy-badge {
        width: 100%;
        justify-content: center;
    }

    .info-message {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 32px;
    }

    .service-title {
        flex-direction: column;
        gap: 5px;
    }

    .badge-custom {
        margin-left: 0;
    }

    .service-card {
        margin-bottom: 20px;
    }

    .service-hover-effect {
        text-align: left;
    }

    .service-feature {
        font-size: 12px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .btn-cta-gradient {
        padding: 10px 30px;
        font-size: 14px;
    }

    .business-category {
        padding: 20px;
    }

    .category-items {
        gap: 8px;
    }

    .business-tag {
        padding: 5px 10px;
        font-size: 11px;
    }

    .success-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        text-align: center;
    }

    .contact-wrapper {
        border-radius: 20px;
    }

    .form-title,
    .info-title {
        font-size: 22px;
    }

    .social-icons {
        justify-content: center;
    }

    .security-badge {
        flex-direction: column;
        text-align: center;
    }

    .pricing-card {
        padding: 25px 20px;
    }

    .plan-name {
        font-size: 22px;
    }

    .amount {
        font-size: 36px;
    }

    .feature-group {
        padding: 12px;
    }

    .feature-sublist {
        gap: 5px;
    }

    .feature-item {
        font-size: 13px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-title {
        font-size: 16px;
    }

    .social-links {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }

    .footer-bottom-links a {
        display: block;
        margin: 10px 0;
    }

    .faq-button {
        flex-wrap: wrap;
        gap: 10px;
    }

        .faq-button span {
            flex: 1;
        }

    .security-badges {
        flex-direction: column;
    }

    .support-item {
        font-size: 13px;
    }

    .form-content {
        padding: 20px 15px;
    }

    .payment-label {
        padding: 12px 15px;
    }

        .payment-label span {
            font-size: 14px;
        }

    .summary-content {
        padding: 20px 15px;
    }

    .card-body-custom {
        padding: 20px 15px;
    }

    .payment-method-display {
        flex-wrap: wrap;
    }

        .payment-method-display span {
            width: 100%;
            order: -1;
        }

    .card-icons {
        margin-left: auto;
    }

    .cards-icons-card {
        flex-wrap: wrap;
    }

    .card-security-info .info-row {
        flex-direction: column;
        text-align: center;
    }

    .info-item {
        padding: 10px;
    }

    .total-value {
        font-size: 20px;
    }

    .confirmation-header, .payment-header {
        margin-bottom: 30px;
    }

    .product-name {
        font-size: 16px;
    }

    .payment-highlight {
        flex-direction: column;
        text-align: center;
    }

        .payment-highlight i {
            font-size: 40px;
        }

    .summary-item {
        flex-direction: column;
        text-align: center;
    }

    .trust-badges-payment {
        flex-direction: column;
        align-items: center;
    }

        .trust-badges-payment .trust-badge {
            width: 100%;
            justify-content: center;
        }

    .btn-cancel-payment {
        width: 100%;
        justify-content: center;
    }

    .header-title, .header-title-processing {
        font-size: 22px;
    }

    .important-note {
        flex-direction: column;
        text-align: center;
    }

    .info-row {
        flex-wrap: wrap;
    }

    .info-value {
        width: 100%;
        order: 3;
    }

    .copy-btn {
        width: 100%;
        padding: 8px;
    }

    .benefit-item {
        font-size: 12px;
    }

    .oxxo-benefits {
        padding: 12px;
    }

    .instruction-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        margin-bottom: 5px;
    }

    .oxxo-additional-info .info-row {
        flex-direction: column;
        text-align: center;
    }

    .reference-number {
        font-size: 28px;
    }

    .countdown-timer {
        font-size: 24px;
    }

    .step-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-number {
        margin-bottom: 5px;
    }

    .help-item {
        flex-direction: column;
        text-align: center;
    }

    .info-list li {
        flex-direction: column;
        text-align: center;
    }

    .btn-unsubscribe {
        font-size: 14px;
        padding: 12px 15px;
    }
}

/* Estilos específicos para el botón de PayPal */
.paypal-button {
    width: 100%;
}

    .paypal-button > div {
        width: 100% !important;
    }

    .paypal-button iframe {
        width: 100% !important;
        border-radius: 50px !important;
        overflow: hidden;
    }

/* Animaciones */
@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes progressPulse {
    0%, 100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes pulseProcessing {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes pulseSuccess {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(40, 167, 69, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(40, 167, 69, 0.5);
    }
}

@keyframes pulseError {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(220, 53, 69, 0.5);
    }
}

@keyframes floatBackground {
    0%, 100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}