* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #261F5A;
    --secondary-color: #792181;
    --accent-color: #BF3B93;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.loading {
    overflow: hidden;
}

/* Loading Screen — liviano: fondo claro, sin animaciones extra (solo spinner) */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.14s ease-out, visibility 0.14s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: var(--text-color);
}

.loading-logo {
    margin-bottom: 16px;
}

.loading-logo-img {
    max-width: 200px;
    height: auto;
}

.loading-spinner {
    margin: 12px auto 0;
    width: 36px;
    height: 36px;
}

.spinner {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(38, 31, 90, 0.12);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.85s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .spinner {
        animation: none;
        border-color: var(--primary-color);
        opacity: 0.65;
    }
}

.loading-text {
    font-size: 13px;
    font-weight: 500;
    margin-top: 12px;
    color: rgba(51, 51, 51, 0.65);
    letter-spacing: 0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
}

.header-top .contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    font-size: 14px;
}

.header-top .contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu li.dropdown {
    position: relative;
}

.nav-menu li.dropdown:hover {
    z-index: 1001;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 5px;
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    display: block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.dropdown .btn-acceso {
    overflow: visible;
}

.dropdown .btn-acceso::before {
    display: none !important;
}

.dropdown .btn-acceso:hover::before {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
}

.dropdown .btn-acceso {
    pointer-events: auto;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    font-size: 15px;
}

.dropdown-menu a:hover {
    background: rgba(38, 31, 90, 0.05);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-menu a i {
    color: var(--accent-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a:hover {
    color: #BF3B93 !important;
    background: rgba(38, 31, 90, 0.05);
    transform: translateY(-2px);
}

.nav-menu a:hover::before {
    width: 80%;
}

.nav-menu a:active {
    transform: translateY(0);
}

.btn-comprar {
    background: var(--accent-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-comprar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-comprar:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(38, 31, 90, 0.3);
}

.btn-comprar:hover::before {
    width: 300px;
    height: 300px;
}

.btn-ingresar {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-ingresar:hover {
    background: var(--secondary-color);
}

.btn-acceso {
    background: var(--accent-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.btn-acceso::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease-out, height 0.4s ease-out, opacity 0.4s ease-out;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

.btn-acceso > * {
    position: relative;
    z-index: 1;
}

.btn-acceso:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 31, 90, 0.4);
}

.btn-acceso:hover::before {
    width: 250px;
    height: 250px;
    opacity: 1;
}

.btn-acceso:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(38, 31, 90, 0.3);
}

/* Desactivar efecto de onda en el dropdown */
.dropdown .btn-acceso::before {
    display: none;
}

.dropdown .btn-acceso:hover::before {
    display: none;
}

.btn-carrito {
    position: relative;
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: visible;
    z-index: 1;
    border: none;
    cursor: pointer;
}

.btn-carrito::before {
    display: none;
}

.btn-carrito > * {
    position: relative;
    z-index: 1;
}

.btn-carrito:hover {
    background: var(--secondary-color);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(38, 31, 90, 0.4);
}

.btn-carrito:hover::before {
    display: none;
}

.btn-carrito:active {
    transform: translateY(0) scale(1.02);
    box-shadow: 0 3px 10px rgba(38, 31, 90, 0.3);
}

.btn-carrito:hover .carrito-contador {
    transform: scale(1.2);
    background: var(--accent-color);
}

.carrito-contador {
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    top: -5px;
    right: -5px;
    transition: all 0.3s ease;
    z-index: 1;
    padding: 0 5px;
    box-sizing: border-box;
}

.carrito-contador:not(:empty) {
    display: flex;
}

/* Modal Carrito */
.carrito-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.carrito-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrito-modal-content {
    background: var(--white);
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.carrito-header {
    padding: 25px 30px;
    border-bottom: 2px solid var(--light-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 15px 15px 0 0;
}

.carrito-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.carrito-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.carrito-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.carrito-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
    max-height: calc(90vh - 250px);
}

.carrito-vacio {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.carrito-vacio i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.carrito-vacio p {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.carrito-vacio-texto {
    font-size: 14px;
    opacity: 0.7;
}

.carrito-items {
    display: none;
}

.carrito-items.active {
    display: block;
}

.carrito-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--light-bg);
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
}

.carrito-item-info {
    flex: 1;
}

.carrito-item-nombre {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.carrito-item-precio {
    color: var(--text-color);
    font-size: 16px;
}

.carrito-item-cantidad {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 20px;
}

.cantidad-btn {
    background: var(--light-bg);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--primary-color);
    transition: all 0.3s;
}

.cantidad-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.cantidad-numero {
    font-weight: 700;
    font-size: 18px;
    min-width: 30px;
    text-align: center;
}

.carrito-item-total {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
    min-width: 100px;
    text-align: right;
}

.carrito-item-eliminar {
    background: #ff4444;
    color: var(--white);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    transition: all 0.3s;
}

.carrito-item-eliminar:hover {
    background: #cc0000;
    transform: scale(1.1);
}

.carrito-footer {
    padding: 25px 30px;
    border-top: 2px solid var(--light-bg);
    background: var(--light-bg);
    border-radius: 0 0 15px 15px;
}

.carrito-total {
    margin-bottom: 20px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 16px;
}

.total-line.total-final {
    border-top: 2px solid var(--primary-color);
    margin-top: 10px;
    padding-top: 15px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.carrito-acciones {
    display: flex;
    gap: 15px;
}

.btn-carrito-limpiar {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-carrito-limpiar:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-carrito-comprar {
    flex: 2;
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-carrito-comprar:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.02);
}

.btn-carrito-comprar.btn-carrito-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    border-color: #25d366;
}

.btn-carrito-comprar.btn-carrito-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
}

/* Formulario de Pago Stripe en el Carrito */
.carrito-pago-stripe {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--light-bg);
}

.stripe-payment-form h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stripe-card-element {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    border: 2px solid var(--light-bg);
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.stripe-card-element:focus-within {
    border-color: var(--primary-color);
}

.stripe-card-errors {
    color: #f44336;
    font-size: 14px;
    margin-bottom: 15px;
    display: none;
    padding: 10px;
    background: #ffebee;
    border-radius: 5px;
    border-left: 4px solid #f44336;
}

.stripe-payment-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-carrito-cancelar {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-carrito-cancelar:hover {
    background: var(--light-bg);
    border-color: var(--text-color);
}

.btn-carrito-pagar {
    flex: 2;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-carrito-pagar:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(38, 31, 90, 0.3);
}

.btn-carrito-pagar:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.carrito-metodos-alternativos {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid var(--light-bg);
}

.carrito-metodos-alternativos .checkout-methods {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.carrito-metodos-alternativos .btn-whatsapp-checkout,
.carrito-metodos-alternativos .btn-email-checkout {
    flex: 1;
    padding: 12px 20px;
    font-size: 14px;
}

/* Campo RFC */
.form-group-rfc {
    margin-bottom: 20px;
}

.form-group-rfc label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.form-group-rfc label .required {
    color: #f44336;
}

.input-rfc {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s ease;
    text-transform: uppercase;
}

.input-rfc:focus {
    outline: none;
    border-color: var(--primary-color);
}

.input-rfc:invalid {
    border-color: #f44336;
}

.rfc-help {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

.form-group-card {
    margin-bottom: 20px;
}

.form-group-card label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 14px;
}

.form-group-card label .required {
    color: #f44336;
}

/* Mensaje de pago exitoso */
.pago-exitoso-mensaje {
    padding: 30px;
    background: var(--white);
    border-radius: 12px;
    margin-top: 20px;
}

.success-content {
    text-align: center;
}

.success-icon {
    font-size: 64px;
    color: #4caf50;
    margin-bottom: 20px;
}

.success-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 24px;
}

.success-content > p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.whatsapp-info-box {
    background: #f5f5f5;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: left;
}

.info-item {
    margin-bottom: 12px;
    font-size: 14px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item strong {
    color: var(--primary-color);
    display: inline-block;
    min-width: 120px;
}

.info-item span {
    color: var(--text-color);
}

.btn-whatsapp-enviar {
    display: inline-block;
    padding: 15px 30px;
    background: #25D366;
    color: var(--white);
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    margin: 20px 10px 10px;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-whatsapp-enviar:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-cerrar-modal {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--light-bg);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.3s;
}

.btn-cerrar-modal:hover {
    background: var(--light-bg);
    border-color: var(--text-color);
}

@media (max-width: 768px) {
    .pago-exitoso-mensaje {
        padding: 20px;
    }
    
    .success-icon {
        font-size: 48px;
    }
    
    .success-content h3 {
        font-size: 20px;
    }
    
    .whatsapp-info-box {
        padding: 15px;
    }
    
    .info-item {
        font-size: 13px;
    }
    
    .info-item strong {
        min-width: 100px;
        display: block;
        margin-bottom: 5px;
    }
    
    .btn-whatsapp-enviar {
        padding: 12px 20px;
        font-size: 14px;
        display: block;
        margin: 15px 0 10px;
    }
}

/* Modal de Checkout */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.checkout-modal.active {
    opacity: 1;
    visibility: visible;
}

.checkout-modal-content {
    background: var(--white);
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.checkout-modal.active .checkout-modal-content {
    transform: scale(1);
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid var(--light-bg);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 15px 15px 0 0;
}

.checkout-header h2 {
    margin: 0;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 32px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.checkout-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.checkout-body {
    padding: 30px;
}

.checkout-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.checkout-items {
    margin-bottom: 25px;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 10px;
}

.checkout-item span:first-child {
    flex: 1;
    font-weight: 600;
    color: var(--primary-color);
}

.checkout-item span:nth-child(2) {
    margin: 0 15px;
    color: var(--text-color);
}

.checkout-item span:last-child {
    font-weight: 700;
    color: var(--primary-color);
    min-width: 100px;
    text-align: right;
}

.checkout-totals {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.checkout-total-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 16px;
}

.checkout-total-line.checkout-total-final {
    border-top: 2px solid var(--primary-color);
    margin-top: 10px;
    padding-top: 15px;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.checkout-stripe {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--light-bg);
}

.checkout-instructions h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-instructions p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 20px;
}

.checkout-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-whatsapp-checkout,
.btn-email-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.btn-whatsapp-checkout {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp-checkout:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-email-checkout {
    background: var(--primary-color);
    color: var(--white);
}

.btn-email-checkout:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(38, 31, 90, 0.3);
}

.checkout-note {
    background: rgba(38, 31, 90, 0.05);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-top: 20px;
}

.checkout-note p {
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

@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;
    }
}

/* Responsive Carrito */
@media (max-width: 768px) {
    .carrito-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .checkout-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .checkout-header {
        padding: 20px;
    }
    
    .checkout-header h2 {
        font-size: 20px;
    }
    
    .checkout-body {
        padding: 20px;
    }
    
    .checkout-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .checkout-item span {
        width: 100%;
    }
    
    .checkout-methods {
        flex-direction: column;
    }
    
    .carrito-header {
        padding: 20px;
    }
    
    .carrito-header h2 {
        font-size: 20px;
    }
    
    .carrito-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .carrito-item-cantidad {
        margin: 0;
        width: 100%;
        justify-content: space-between;
    }
    
    .carrito-item-total {
        width: 100%;
        text-align: left;
        padding-top: 10px;
        border-top: 1px solid var(--light-bg);
    }
    
    .carrito-acciones {
        flex-direction: column;
    }
    
    .btn-carrito-limpiar,
    .btn-carrito-comprar {
        width: 100%;
    }
    
    .carrito-body {
        padding: 15px;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: 0.3s;
}

/* Hero Section Slider */
.hero-slider {
    position: relative;
    color: var(--white);
    height: 600px;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(38, 31, 90, 0.6) 0%, rgba(121, 33, 129, 0.6) 50%, rgba(191, 59, 147, 0.6) 100%);
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-hero {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Controles del Hero Slider */
.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-prev {
    left: 30px;
}

.hero-slider-next {
    right: 30px;
}

.hero-slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Indicadores del Hero Slider */
.hero-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-indicator.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
    border-color: var(--white);
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.hero-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    max-width: 800px;
    margin: 30px auto;
    opacity: 0.95;
    line-height: 1.8;
}

.hashtag {
    font-size: 24px;
    margin: 20px 0;
    font-weight: bold;
}

.security-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cta-card {
    background: var(--white);
    color: var(--text-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cta-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.btn-secondary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Comprobantes Section */
.comprobantes {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-title {
    text-align: center;
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.comprobantes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.comprobante-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.comprobante-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.comprobante-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.comprobante-item p {
    font-weight: 500;
    color: var(--text-color);
}

.comprobantes-footer {
    text-align: center;
    font-size: 18px;
    color: var(--text-color);
    margin-top: 40px;
    font-weight: 500;
}

/* Beneficios Section */
.beneficios {
    padding: 80px 0;
    background: var(--white);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.beneficio-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.beneficio-card:hover {
    transform: translateY(-5px);
}

.beneficio-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.beneficio-icon i {
    font-size: 35px;
    color: var(--white);
}

.beneficio-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.beneficio-card p {
    color: var(--text-color);
    line-height: 1.8;
}

.promocion {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.promocion-content i {
    font-size: 50px;
    margin-bottom: 20px;
}

.promocion-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.promocion-content p {
    font-size: 18px;
    opacity: 0.95;
}

/* Acciones Section */
.acciones {
    padding: 80px 0;
    background: var(--light-bg);
}

.acciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.accion-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.accion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.accion-card.destacado {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

.accion-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.accion-card p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-action {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.accion-card.destacado .btn-action {
    background: var(--white);
    color: var(--primary-color);
}

.btn-action:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.payment-methods {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-methods i {
    font-size: 35px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.payment-methods i:hover {
    opacity: 1;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-media a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.social-media a:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.footer-links {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

/* Servicios Principales */
.servicios-principales {
    padding: 80px 0;
    background: var(--white);
}

.servicios-slider-wrapper {
    position: relative;
    margin-top: 50px;
    overflow: hidden;
    padding: 0 80px;
}

.servicios-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    justify-content: flex-start;
}

.servicio-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
    flex: 0 0 calc(50% - 15px);
    min-width: calc(50% - 15px);
    max-width: calc(50% - 15px);
}

@media (max-width: 767px) {
    .servicio-card {
        min-width: calc(50% - 15px);
    }
    
    .servicios-slider {
        gap: 15px;
    }
    
    .servicio-card {
        padding: 30px 20px;
    }
}

.servicio-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* Botones del slider */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.slider-btn:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
    left: 20px;
}

.slider-btn-next {
    right: 20px;
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Dots del slider */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.dot:hover {
    background: var(--accent-color);
}

.servicio-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.servicio-icon i {
    font-size: 35px;
    color: var(--white);
}

.servicio-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.servicio-card p {
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 400;
}

.btn-servicio {
    display: inline-block;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-servicio:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Beneficios Destacados */
.beneficios-destacados {
    padding: 80px 0;
    background: var(--light-bg);
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.beneficio-item {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.beneficio-item:hover {
    transform: translateY(-5px);
}

.beneficio-item i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.beneficio-item h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.beneficio-item p {
    color: var(--text-color);
    margin-bottom: 10px;
}

.beneficio-item .destacado {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 18px;
}

.btn-beneficio {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-beneficio:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

/* Productos */
.productos {
    padding: 80px 0;
    background: var(--white);
}

/* Bootstrap Grid Overrides para Productos */
.productos .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.productos .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 15px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .productos .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.producto-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    overflow: hidden;
}

.producto-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.producto-header h3 {
    font-size: 28px;
    margin: 0;
}

.producto-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

.producto-content {
    padding: 30px;
}

.producto-precio {
    margin-bottom: 30px;
}

.precio-label {
    display: block;
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 10px;
}

.precio {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
}

.producto-caracteristicas {
    list-style: none;
    margin-bottom: 30px;
}

.producto-caracteristicas li {
    padding: 10px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.producto-caracteristicas i {
    color: var(--accent-color);
}

/* Paquetes de Facturación - Cards Mejoradas */
.paquetes-facturacion-section {
    padding: 60px 0;
    background: var(--light-bg);
    margin-bottom: 40px;
}

.precio-label-center {
    text-align: center;
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 40px;
    font-weight: 500;
}

.paquetes-grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.paquete-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.paquete-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.paquete-card:hover::before {
    transform: scaleX(1);
}

.paquete-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.paquete-card.destacado {
    border: 3px solid var(--accent-color);
    background: linear-gradient(135deg, rgba(38, 31, 90, 0.02), rgba(191, 59, 147, 0.02));
}

.paquete-card.destacado::before {
    height: 5px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transform: scaleX(1);
}

.paquete-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.paquete-badge.mejor-precio {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--primary-color);
    font-weight: 800;
}

.paquete-folios {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 20px 0 5px;
    line-height: 1;
    letter-spacing: -2px;
}

.paquete-card.destacado .paquete-folios {
    font-size: 52px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.paquete-label {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.paquete-precio {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.paquete-card.destacado .paquete-precio {
    color: var(--accent-color);
    font-size: 36px;
}

.paquete-precio-folio {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
    font-weight: 500;
}

.btn-paquete {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 15px;
    border: 2px solid var(--primary-color);
}

.paquete-card.destacado .btn-paquete {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-paquete:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.02);
}

.paquete-card.destacado .btn-paquete:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.paquetes-info-footer {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(38, 31, 90, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.paquetes-info-footer span {
    color: rgba(38, 31, 90, 0.3);
}

.producto-acciones {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn-producto {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

.btn-producto:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Constituye Empresa */
.constituye-empresa {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    text-align: center;
}

.constituye-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.constituye-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Siguiente Nivel */
.siguiente-nivel {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.nivel-content h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.nivel-content p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Nosotros */
.nosotros {
    padding: 80px 0;
    background: var(--white);
}

.nosotros-content {
    max-width: 900px;
    margin: 0 auto;
}

.nosotros-texto h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.nosotros-texto h4 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.nosotros-texto p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-color);
}

.ventajas-lista {
    list-style: none;
    margin-top: 20px;
}

.ventajas-lista li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: var(--text-color);
}

.ventajas-lista i {
    color: var(--accent-color);
    font-size: 20px;
    margin-top: 2px;
}

/* Formulario de Contacto */
.contacto-form {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.formulario-wrapper {
    max-width: 900px;
    margin: 40px auto 0;
}

.formulario-contacto {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 15px;
}

.form-group label i {
    color: var(--accent-color);
    font-size: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(38, 31, 90, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23261F5A' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.checkbox-group {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
    color: var(--text-color);
    font-size: 14px;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--accent-color);
}

.btn-enviar {
    width: 100%;
    padding: 18px 30px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-enviar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(38, 31, 90, 0.3);
}

/* reCAPTCHA Styles */
.recaptcha-group {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.recaptcha-group .g-recaptcha {
    margin-bottom: 10px;
}

.recaptcha-error {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background-color: #fee;
    border: 1px solid #fcc;
    border-radius: 8px;
    margin-top: 10px;
    animation: shake 0.5s ease;
}

.recaptcha-error i {
    font-size: 16px;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

/* Responsive reCAPTCHA */
@media (max-width: 768px) {
    .recaptcha-group {
        align-items: center;
    }
    
    .recaptcha-group .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}

/* Detalles de Servicios */
.detalles-servicios {
    padding: 80px 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.detalle-servicio {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--light-bg);
    border-radius: 10px;
}

.detalle-servicio h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.detalle-servicio h3 i {
    color: var(--accent-color);
}

.detalle-servicio ul {
    list-style: none;
    margin-bottom: 25px;
}

.detalle-servicio ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
    line-height: 1.8;
}

.detalle-servicio ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 20px;
}

.servicio-beneficios {
    margin-top: 30px;
    padding: 25px;
    background: var(--white);
    border-radius: 5px;
}

.servicio-beneficios h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 20px;
}

.servicio-beneficios ul {
    list-style: none;
}

.servicio-beneficios ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.servicio-beneficios i {
    color: var(--accent-color);
}

.servicio-cta {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 10px;
    text-align: center;
}

.servicio-cta h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.servicio-cta p {
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Soporte 24/7 */
.soporte-24 {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    text-align: center;
}

.soporte-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.soporte-content p {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.95;
}

.soporte-content .destacado {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
}

/* Facturación Electrónica */
.facturacion-electronica {
    padding: 80px 0;
    background: var(--light-bg);
}

.facturacion-content {
    max-width: 1000px;
    margin: 0 auto;
}

.facturacion-content h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.facturacion-content > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    text-align: center;
    color: var(--text-color);
}

.facturacion-info {
    margin-bottom: 50px;
}

.info-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.info-item h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-item p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 15px;
}

.info-item ul {
    list-style: none;
    margin-top: 15px;
}

.info-item ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-color);
    line-height: 1.8;
}

.info-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.tipos-cfdi {
    margin-bottom: 50px;
}

.tipos-cfdi h4 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cfdi-intro {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cfdi-lista {
    text-align: left;
    padding: 0;
}

.cfdi-lista-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-color);
    font-size: 16px;
    transition: all 0.3s ease;
}

.cfdi-lista-item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.cfdi-lista-item i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.cfdi-footer {
    font-size: 16px;
    color: var(--text-color);
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.beneficios-facturacion {
    margin-bottom: 50px;
}

.beneficios-facturacion h4 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.beneficio-factura {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.beneficio-factura h5 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.beneficio-factura p {
    color: var(--text-color);
    line-height: 1.8;
}

.cancelacion-cfdi {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
    box-shadow: var(--shadow);
}

.cancelacion-cfdi h4 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cancelacion-cfdi p {
    color: var(--text-color);
    line-height: 1.8;
}

.dirigido-a {
    margin-bottom: 50px;
}

.dirigido-a h4 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.dirigido-a > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.dirigido-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.dirigido-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.dirigido-item:hover {
    transform: translateY(-5px);
}

.dirigido-item h5 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.dirigido-item p {
    color: var(--text-color);
    line-height: 1.8;
}

/* Auditalo */
.auditalo {
    padding: 80px 0;
    background: var(--white);
}

.auditalo-content {
    max-width: 1000px;
    margin: 0 auto;
}

.auditalo-intro {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.8;
}

.auditalo-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.auditalo-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-color);
    text-align: center;
}

.auditalo-caracteristicas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.caracteristica-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.caracteristica-item:hover {
    transform: translateY(-5px);
}

.caracteristica-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.caracteristica-item p {
    font-size: 16px;
    color: var(--text-color);
    margin: 0;
}

.ventajas-auditalo {
    list-style: none;
    margin-top: 30px;
}

.ventajas-auditalo li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 16px;
}

.ventajas-auditalo li i {
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 20px;
}

/* Servicios de Marketing */
.servicios-marketing {
    padding: 80px 0;
    background: var(--white);
}

.marketing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.marketing-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--accent-color);
}

.marketing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.marketing-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marketing-icon i {
    font-size: 30px;
    color: var(--white);
}

.marketing-card h3 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.marketing-card p {
    color: var(--text-color);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 15px;
}

.marketing-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-marketing {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-marketing:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.btn-marketing-secondary {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-marketing-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

/* Estadísticas */
.estadisticas {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

.estadisticas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.estadistica-item {
    padding: 30px;
}

.estadistica-numero {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
    letter-spacing: -2px;
}

.estadistica-label {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.95;
}

/* Acceso al Sistema */
.acceso-sistema {
    padding: 80px 0;
    background: var(--light-bg);
}

.acceso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.acceso-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid var(--primary-color);
}

.acceso-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    color: var(--text-color);
}

.acceso-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.acceso-icon i {
    font-size: 35px;
    color: var(--white);
}

.acceso-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.acceso-card p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
}

/* Guías y Apoyo */
.guias-apoyo {
    padding: 80px 0;
    background: var(--light-bg);
}

.guias-sistema-block {
    margin-bottom: 48px;
}

.guias-sistema-block:last-of-type {
    margin-bottom: 32px;
}

.guias-sistema-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 24px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(38, 31, 90, 0.12);
}

.guias-sistema-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--white);
    flex-shrink: 0;
}

.guias-sistema-icon.facturacion {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.guias-sistema-icon.contabilidad {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.guias-sistema-header > div:not(.guias-sistema-icon) {
    flex: 1;
    min-width: 220px;
}

.guias-sistema-title {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.3 !important;
}

.guias-sistema-desc {
    margin: 0;
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 640px;
}

.btn-guia-sistema {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--primary-color);
    color: var(--white) !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-guia-sistema:hover {
    background: var(--secondary-color);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.guias-videos-wrap {
    margin-bottom: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.guias-videos-wrap .row {
    row-gap: 24px;
}

.guias-videos-grid {
    width: 100%;
}

.guia-video-card {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #1a1a2e;
    box-shadow: var(--shadow);
}

.guia-video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.guias-videos-empty {
    width: 100%;
    padding: 24px;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

.youtube-channel {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: var(--shadow);
}

.channel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.channel-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.channel-info i {
    font-size: 48px;
    color: #FF0000;
}

.channel-info h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 0 0 5px 0;
}

.channel-info p {
    color: var(--text-color);
    margin: 0;
    font-size: 16px;
}

.btn-youtube {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: #FF0000;
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-youtube:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.youtube-preview {
    margin: 40px 0;
}

.youtube-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow);
    background: #000;
    margin-bottom: 20px;
}

.youtube-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-channel-card {
    background: linear-gradient(135deg, #FF0000, #CC0000);
    border-radius: 15px;
    padding: 50px 40px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow);
    margin: 40px 0;
}

.channel-preview i {
    font-size: 80px;
    margin-bottom: 25px;
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.channel-preview h3 {
    font-size: 36px;
    margin: 0 0 20px 0;
    color: var(--white);
    font-weight: 700;
}

.channel-preview p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.youtube-channel-link {
    text-align: center;
    margin-top: 20px;
}

.btn-youtube-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #FF0000;
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-youtube-inline:hover {
    background: #CC0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.guias-links {
    margin-top: 60px;
}

.guias-links h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.guia-link {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.guia-link:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--accent-color);
}

.guia-link i {
    font-size: 32px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.guia-link h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin: 0 0 8px 0;
    font-weight: 700;
}

.guia-link p {
    margin: 0;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
}

/* FAQ */
.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--light-bg);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(38, 31, 90, 0.05);
}

.faq-question h3 {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.3px;
}

.faq-question i {
    color: var(--accent-color);
    font-size: 18px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--text-color);
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

/* Contacto */
.contacto {
    padding: 80px 0;
    background: var(--white);
}

.contacto-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
}

.contacto-info-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    max-width: 80%;
    margin: 0 auto;
}

.contacto-header-card {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: 50px 40px;
    text-align: center;
}

.contacto-header-card i {
    font-size: 60px;
    margin-bottom: 20px;
    display: block;
}

.contacto-header-card h3 {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
}

.contacto-item-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 35px 40px;
    border-bottom: 1px solid var(--light-bg);
    transition: all 0.3s ease;
}

.contacto-item-card:last-child {
    border-bottom: none;
}

.contacto-item-card:hover {
    background: var(--light-bg);
    transform: translateX(10px);
    padding-left: 50px;
}

.contacto-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(38, 31, 90, 0.2);
    transition: all 0.3s ease;
}

.contacto-item-card:hover .contacto-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(38, 31, 90, 0.3);
}

.contacto-icon-wrapper.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.contacto-icon-wrapper.facebook {
    background: linear-gradient(135deg, #1877F2, #0C63D4);
}

.contacto-text {
    flex: 1;
}

.contacto-text h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.contacto-text p {
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.7;
}

.contacto-text p strong {
    color: var(--primary-color);
    font-weight: 700;
}

.contacto-text a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.contacto-text a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    text-decoration: underline;
}

.contacto-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
}

.contacto-mapa-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
    min-height: 500px;
}

.mapa-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(38, 31, 90, 0.05), rgba(191, 59, 147, 0.05));
}

.mapa-placeholder i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.5;
}

.mapa-placeholder h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.mapa-placeholder p {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 5px;
}

.mapa-note {
    font-size: 14px;
    color: #999;
    font-style: italic;
    margin-top: 15px;
}

/* Estilos Modernos para Contacto */
.contacto-header-modern {
    text-align: center;
    margin-bottom: 50px;
}

.contacto-header-modern .section-title {
    font-size: 42px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contacto-header-modern .section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Contacto con 2 Columnas y Fondo */
.contacto {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.contacto-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.contacto-bg-image {
    position: absolute;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    filter: blur(2px);
}

.contacto-bg-left {
    left: 0;
    background-image: url('home2.jpg');
    background-position: left center;
}

.contacto-bg-right {
    right: 0;
    background-image: url('home3.jpg');
    background-position: right center;
}

.contacto .container {
    position: relative;
    z-index: 1;
}

.contacto-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contacto-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contacto-column-left {
    animation: fadeInLeft 0.8s ease-out;
}

.contacto-column-right {
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contacto-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.contact-card-modern {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.contact-card-modern:hover::before {
    transform: scaleX(1);
}

.card-icon-modern {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 20px rgba(38, 31, 90, 0.25);
    transition: all 0.4s ease;
}

.contact-card-modern:hover .card-icon-modern {
    transform: rotate(5deg) scale(1.1);
}

.card-icon-modern.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.card-icon-modern.email-icon {
    background: linear-gradient(135deg, var(--accent-color), #E91E63);
}

.card-icon-modern.web-icon {
    background: linear-gradient(135deg, #2196F3, #1976D2);
}

.card-icon-modern.social-icon {
    background: linear-gradient(135deg, #667EEA, #764BA2);
}

.card-content-modern h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-link-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.contact-link-modern:hover {
    background: linear-gradient(135deg, rgba(38, 31, 90, 0.05), rgba(191, 59, 147, 0.05));
    transform: translateX(5px);
    color: var(--primary-color);
}

.contact-link-modern .contact-value {
    flex: 1;
}

.contact-link-modern i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.contact-link-modern:hover i {
    transform: translateX(5px);
}

.contact-note {
    font-size: 14px;
    color: #999;
    margin-top: 8px;
    font-style: italic;
}

.badge-modern {
    display: inline-block;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(18, 140, 126, 0.15));
    color: #25D366;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.horarios-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.horario-item:hover {
    background: linear-gradient(135deg, rgba(38, 31, 90, 0.05), rgba(191, 59, 147, 0.05));
}

.horario-item .dia {
    font-weight: 600;
    color: var(--text-color);
}

.horario-item .hora {
    font-weight: 700;
    color: var(--primary-color);
}

.horario-item .hora.cerrado {
    color: #999;
    font-weight: 500;
}

.social-links-modern {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link-modern {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.social-link-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link-modern.facebook-link:hover {
    background: #1877F2;
    color: white;
}

.social-link-modern.youtube-link:hover {
    background: #FF0000;
    color: white;
}

.social-link-modern i {
    font-size: 20px;
}

/* Botones de Acción Rápida Modernos */
.contacto-acciones-modern {
    margin-top: 60px;
    padding: 50px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 25px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contacto-acciones-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.acciones-header {
    position: relative;
    z-index: 1;
    margin-bottom: 35px;
}

.acciones-header i {
    font-size: 48px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.acciones-header h3 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.acciones-header p {
    font-size: 18px;
    opacity: 0.9;
}

.acciones-buttons-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 1;
}

.btn-accion-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-accion-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-accion-modern:hover::before {
    left: 100%;
}

.btn-accion-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.btn-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.btn-text-wrapper {
    flex: 1;
    text-align: left;
}

.btn-title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.btn-subtitle {
    display: block;
    font-size: 14px;
    opacity: 0.7;
    font-weight: 500;
}

.btn-arrow {
    font-size: 20px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.btn-accion-modern:hover .btn-arrow {
    transform: translateX(5px);
    opacity: 1;
}

.btn-accion-modern.whatsapp-modern .btn-icon-wrapper {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-accion-modern.whatsapp-modern:hover {
    background: #25D366;
    color: white;
}

.btn-accion-modern.telefono-modern .btn-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.btn-accion-modern.telefono-modern:hover {
    background: var(--primary-color);
    color: white;
}

.btn-accion-modern.email-modern .btn-icon-wrapper {
    background: linear-gradient(135deg, var(--accent-color), #E91E63);
    color: white;
}

.btn-accion-modern.email-modern:hover {
    background: var(--accent-color);
    color: white;
}

.btn-accion-modern:hover .btn-title,
.btn-accion-modern:hover .btn-subtitle {
    color: white;
}

@media (max-width: 968px) {
    .contacto-two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contacto-bg-image {
        width: 100%;
        height: 50%;
    }
    
    .contacto-bg-left {
        top: 0;
        left: 0;
        width: 100%;
    }
    
    .contacto-bg-right {
        bottom: 0;
        right: 0;
        width: 100%;
        top: auto;
    }
}

@media (max-width: 768px) {
    .contacto-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contacto-header-modern .section-title {
        font-size: 32px;
    }
    
    .acciones-buttons-modern {
        grid-template-columns: 1fr;
    }
    
    .contacto-acciones-modern {
        padding: 35px 25px;
    }
    
    .acciones-header h3 {
        font-size: 24px;
    }
    
    .btn-accion-modern {
        padding: 20px;
    }
    
    .contacto {
        padding: 60px 0;
    }
    
    .contacto-two-columns {
        gap: 20px;
    }
}

/* Botones Flotantes Izquierda */
.floating-buttons-left {
    position: fixed;
    left: 30px;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9998;
}

.floating-btn {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(38, 31, 90, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.floating-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateX(5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(38, 31, 90, 0.4);
    width: auto;
    padding: 0 20px;
    border-radius: 30px;
}

.floating-btn:hover::before {
    width: 300px;
    height: 300px;
}

.floating-btn:hover .floating-btn-text {
    opacity: 1;
    margin-left: 10px;
    width: auto;
}

.floating-btn-text {
    opacity: 0;
    width: 0;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    margin-left: 0;
}

.floating-btn i {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.floating-btn:hover i {
    transform: scale(1.1);
}

.floating-btn.contacto-btn {
    background: #33D56F;
}

.floating-btn.contacto-btn:hover {
    background: #33D56F;
}

.floating-btn.soporte-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.floating-btn.soporte-btn:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
}

/* Botón Subir al Inicio */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(38, 31, 90, 0.3);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(20px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(38, 31, 90, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px);
}

.scroll-to-top i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        border-radius: 0;
    }
    
    .nav-menu a::before {
        display: none;
    }
    
    .nav-menu a:hover {
        background: rgba(38, 31, 90, 0.1);
        transform: none;
        color: var(--primary-color);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        background: rgba(38, 31, 90, 0.05);
        border-radius: 0;
        margin-left: 20px;
        margin-top: 5px;
        margin-bottom: 10px;
        display: none;
    }
    
    .dropdown-menu a {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .dropdown-toggle i {
        transform: rotate(0deg);
    }
    
    .dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .dropdown:hover .dropdown-toggle i {
        transform: rotate(0deg);
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }

    .hero-slider {
        height: 500px;
    }
    
    .hero-slider-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .hero-slider-prev {
        left: 15px;
    }
    
    .hero-slider-next {
        right: 15px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h2 {
        font-size: 20px;
    }
    
    .btn-hero {
        padding: 12px 30px;
        font-size: 16px;
    }

    .hashtag {
        font-size: 18px;
    }

    .section-title {
        font-size: 22px;
    }

    .cta-buttons {
        grid-template-columns: 1fr;
    }

    .comprobantes-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
    }

    .acciones-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .header-top .contact-info {
        flex-direction: column;
        gap: 10px;
        font-size: 12px;
    }

    .beneficios-grid,
    .cfdi-lista {
        grid-template-columns: 1fr;
    }
    
    .cfdi-grid,
    .dirigido-grid,
    .marketing-grid,
    .estadisticas-grid,
    .acceso-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-btn-prev {
        left: 10px;
    }
    
    .slider-btn-next {
        right: 10px;
    }
    
    .servicio-card {
        padding: 30px 20px;
    }
    
    .servicio-card h3 {
        font-size: 20px;
    }
    
    .servicio-card p {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .estadistica-numero {
        font-size: 48px;
    }
    
    .estadistica-label {
        font-size: 18px;
    }
    
    .marketing-card {
        padding: 25px 20px;
    }
    
    .faq-question h3 {
        font-size: 18px;
    }

    .paquetes-grid-cards {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .paquete-folios {
        font-size: 40px;
    }
    
    .paquete-card.destacado .paquete-folios {
        font-size: 44px;
    }
    
    .paquete-precio {
        font-size: 28px;
    }
    
    .paquete-card.destacado .paquete-precio {
        font-size: 32px;
    }
    
    .paquete-card {
        padding: 25px 20px;
    }

    .auditalo-caracteristicas {
        grid-template-columns: 1fr;
    }

    .hero-description {
        font-size: 16px;
    }

    .constituye-content h2,
    .soporte-content h2 {
        font-size: 28px;
    }

    .nivel-content h3 {
        font-size: 24px;
    }
    
    .channel-header {
        flex-direction: column;
        text-align: center;
    }
    
    .channel-info {
        flex-direction: column;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
    
    .youtube-channel-card {
        padding: 30px 20px;
    }
    
    .channel-preview i {
        font-size: 60px;
    }
    
    .channel-preview h3 {
        font-size: 28px;
    }
    
    .channel-preview p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 450px;
    }
    
    .hero-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero-slider-prev {
        left: 10px;
    }
    
    .hero-slider-next {
        right: 10px;
    }
    
    .hero-slider-indicators {
        bottom: 20px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h2 {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .btn-hero {
        padding: 10px 25px;
        font-size: 14px;
    }

    .servicios-principales,
    .beneficios-destacados,
    .productos,
    .constituye-empresa,
    .siguiente-nivel,
    .nosotros,
    .contacto-form,
    .detalles-servicios,
    .soporte-24,
    .facturacion-electronica,
    .auditalo,
    .contacto {
        padding: 50px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .formulario-contacto {
        padding: 30px 20px;
    }
    
    .contacto-grid {
        grid-template-columns: 1fr;
    }
    
    .contacto-mapa-card {
        min-height: 500px;
    }
    
    .acciones-buttons {
        flex-direction: column;
    }
    
    .btn-accion {
        width: 100%;
        justify-content: center;
    }
    
    .contacto-acciones-rapidas {
        padding: 30px 20px;
    }
    
    .contacto-acciones-rapidas h3 {
        font-size: 22px;
    }

    .producto-header h3 {
        font-size: 20px;
    }

    .precio {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }
    
    .servicios-slider-wrapper {
        padding: 0 50px;
    }
    
    .servicio-card {
        width: calc((100% - 15px) / 2);
        min-width: calc((100% - 15px) / 2);
        max-width: calc((100% - 15px) / 2);
        padding: 25px 15px;
    }
    
    .servicios-slider {
        gap: 15px;
    }
    
    .slider-btn-prev {
        left: 5px;
    }
    
    .slider-btn-next {
        right: 5px;
    }
    
    .servicio-card h3 {
        font-size: 18px;
    }
    
    .servicio-card p {
        font-size: 13px;
    }
    
    .paquetes-grid-cards {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
    
    .paquete-card {
        padding: 20px 15px;
    }
    
    .paquete-folios {
        font-size: 36px;
    }
    
    .paquete-card.destacado .paquete-folios {
        font-size: 40px;
    }
    
    .paquete-precio {
        font-size: 24px;
    }
    
    .paquete-card.destacado .paquete-precio {
        font-size: 28px;
    }
    
    .paquete-label {
        font-size: 14px;
    }
    
    .paquete-precio-folio {
        font-size: 11px;
    }
    
    .btn-paquete {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .paquete-badge {
        font-size: 9px;
        padding: 4px 8px;
        top: 10px;
        right: 10px;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 16px;
    }
    
    .floating-buttons-left {
        left: 15px;
        bottom: 15px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .floating-btn:hover {
        padding: 0 15px;
    }
    
    .floating-btn-text {
        font-size: 12px;
    }
}

