/* =========================================================================
   PÁGINA DE GRACIAS - ESTILOS PRINCIPALES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="rgba(255,255,255,0.05)" d="M0 0h1v20H0zM10 0h1v20h-1zM20 0h1v20h-1zM0 0h20v1H0zM0 10h20v1H0zM0 20h20v1H0z"/></svg>');
}

:root {
    --color-surface: rgba(255, 255, 255, 0.03);
    --text-primary: #ffffff;
    --text-secondary: #e4e4e7;
    --accent-purple: #8b5cf6;
    --gradient-primary: linear-gradient(135deg, #8b5cf6, #ec4899);
    --space-sm: 0.8rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-3xl: 3rem;
    --radius-xl: 12px;
    --radius-2xl: 15px;
    --font-h1: 3.5rem;
    --font-body-large: 1.1rem;
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.bg-shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.bg-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    top: 50%;
    right: -5%;
    animation-delay: 5s;
}

.bg-shape-3 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    bottom: -10%;
    left: 30%;
    animation-delay: 10s;
}

.bg-shape-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    top: 20%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    25% {
        transform: translateY(-25px) translateX(15px) scale(1.1);
    }
    50% {
        transform: translateY(20px) translateX(-20px) scale(0.9);
    }
    75% {
        transform: translateY(-15px) translateX(25px) scale(1.05);
    }
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3xl);
}

.hero-title {
    font-size: var(--font-h1);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    max-width: 900px;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.highlight-blue {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--font-body-large);
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.7;
    margin: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.success-icon {
    font-size: 80px;
    color: #22c55e;
    margin-bottom: -20px;
    animation: successPulse 2s ease-in-out infinite;
}

.success-icon i {
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.5));
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.access-info-box {
    width: 100%;
    max-width: 700px;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
}

.access-info-box:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.access-icon {
    font-size: 40px;
    color: var(--accent-purple);
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.access-text h3 {
    margin: 0 0 var(--space-md) 0;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.access-text p {
    margin: 0 0 var(--space-md) 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.access-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.access-text ul li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: 1rem;
}

.access-text ul li i {
    color: #22c55e;
    font-size: 18px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-footer {
    background: transparent;
    margin-top: 100px;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 30px;
}

.traffic-lights-footer {
    display: flex;
    gap: 6px;
    margin-bottom: 30px;
}

.traffic-light-footer {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.traffic-light-footer.red {
    background-color: #ff5f57;
}

.traffic-light-footer.yellow {
    background-color: #ffbd2e;
}

.traffic-light-footer.green {
    background-color: #28c940;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.logo-icon i {
    font-size: 1.5rem;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-description {
    color: #a1a1aa;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 350px;
}

.footer-links h4 {
    color: #fafafa;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links ul li a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links ul li a:hover::after {
    width: 100%;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #a1a1aa;
    font-size: 0.95rem;
}

.contact-item i {
    color: #8b5cf6;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.contact-item a {
    color: #a1a1aa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.contact-item span {
    color: #a1a1aa;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
    align-items: center;
}

.copyright {
    color: #a1a1aa;
    font-size: 0.85rem;
    margin: 0;
}

.company-info {
    color: #71717a;
    font-size: 0.8rem;
    margin: 0;
}

.address {
    color: #71717a;
    font-size: 0.75rem;
    margin: 0;
}

::selection {
    background: var(--accent-purple);
    color: white;
}

::-moz-selection {
    background: var(--accent-purple);
    color: white;
}

/* =========================================================================
   1. RESET Y CONFIGURACIÓN BASE
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    /* Patrón de cuadros pequeños en el fondo (igual al proyecto principal) */
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20"><path fill="rgba(255,255,255,0.05)" d="M0 0h1v20H0zM10 0h1v20h-1zM20 0h1v20h-1zM0 0h20v1H0zM0 10h20v1H0zM0 20h20v1H0z"/></svg>');
}

/* =========================================================================
   2. VARIABLES CSS (MISMO DISEÑO DEL PROYECTO PRINCIPAL)
   ========================================================================== */

:root {
    /* Colores de Fondo */
    --color-background: #000000;
    --color-surface: rgba(255, 255, 255, 0.03);
    --color-surface-hover: rgba(255, 255, 255, 0.05);

    /* Bordes */
    --border-primary: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(255, 255, 255, 0.2);

    /* Texto */
    --text-primary: #ffffff;
    --text-secondary: #e4e4e7;
    --text-tertiary: #a0a0a0;

    /* Colores de Acento */
    --accent-orange: #f59e0b;
    --accent-orange-dark: #ef4444;
    --accent-purple: #8b5cf6;
    --accent-purple-light: #a78bfa;
    --accent-blue: #3b82f6;

    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #8b5cf6, #ec4899);
    --gradient-secondary: linear-gradient(135deg, #f59e0b, #ef4444);
    --gradient-orange: linear-gradient(135deg, #f59e0b, #ef4444);

    /* Espaciado */
    --space-xs: 0.5rem;
    --space-sm: 0.8rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 2.5rem;
    --space-3xl: 3rem;
    --space-4xl: 4rem;

    /* Tipografía */
    --font-h1: 3.5rem;
    --font-body: 1rem;
    --font-body-large: 1.1rem;

    /* Border Radius */
    --radius-md: 8px;
    --radius-lg: 10px;
    --radius-xl: 12px;
    --radius-2xl: 15px;

    /* Sombras */
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-button-hover: 0 8px 25px rgba(245, 158, 11, 0.3);
}

/* =========================================================================
   3. FONDO ANIMADO (IGUAL AL PROYECTO PRINCIPAL)
   ========================================================================== */

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.bg-shape-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.bg-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    top: 50%;
    right: -5%;
    animation-delay: 5s;
}

.bg-shape-3 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    bottom: -10%;
    left: 30%;
    animation-delay: 10s;
}

.bg-shape-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    top: 20%;
    right: 20%;
    animation-delay: 15s;
}

/* Animación de flotación */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }

    25% {
        transform: translateY(-25px) translateX(15px) scale(1.1);
    }

    50% {
        transform: translateY(20px) translateX(-20px) scale(0.9);
    }

    75% {
        transform: translateY(-15px) translateX(25px) scale(1.05);
    }
}

/* =========================================================================
   4. SECCIÓN HERO
   ========================================================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    position: relative;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3xl);
}

/* =========================================================================
   5. TÍTULO PRINCIPAL
   ========================================================================== */

.hero-title {
    font-size: var(--font-h1);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
    max-width: 900px;
}

/* Highlights de colores */
.highlight-purple {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-orange {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-blue {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =========================================================================
   6. DESCRIPCIÓN
   ========================================================================== */

.hero-description {
    font-size: var(--font-body-large);
    color: var(--text-secondary);
    max-width: 700px;
    line-height: 1.7;
    margin: 0;
}

/* =========================================================================
   8. BOTÓN CTA
   ========================================================================== */

.cta-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 15px 30px;
    font-size: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-button-hover);
}

.btn-cta {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-cta i {
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(5px);
}

/* Efecto ripple en botones */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

/* =========================================================================
   9. ANIMACIONES DE ENTRADA
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.hero-description {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.video-container {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

.cta-container {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

/* =========================================================================
   10. UTILIDADES
   ========================================================================== */

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selección de texto */
::selection {
    background: var(--accent-purple);
    color: white;
}

::-moz-selection {
    background: var(--accent-purple);
    color: white;
}



.icon-orange {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.icon-purple {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.icon-cyan {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 5px 15px rgba(6, 182, 212, 0.3);
}

/* Título de característica */
.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Descripción de característica */
.feature-description {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin: 0;
}

.main-footer {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid var(--border-primary);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-accent);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Wrapper del video */
.testimonial-video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* Aspect ratio 9:16 (vertical) */
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.testimonial-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

/* Overlay del video con botón de play */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.testimonial-video-wrapper:hover .video-overlay {
    opacity: 0;
}

.testimonial-video-wrapper.playing .video-overlay {
    display: none;
}

/* Botón de play personalizado */
.video-play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    pointer-events: all;
}

.video-play-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.video-play-btn i {
    font-size: 1.5rem;
    color: white;
    margin-left: 4px; /* Centrar visualmente el ícono */
}

/* =========================================================================
   13. SECCIÓN DE PRECIOS
   ========================================================================== */

.pricing-section {
    padding: 100px 40px;
    width: 100%;
    background: transparent;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--text-tertiary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Tarjetas de precios */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-2xl);
    padding: 35px 25px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-accent);
}

/* Tarjeta destacada */
.pricing-card.featured {
    border: 2px solid #22c55e;
    background: rgba(34, 197, 94, 0.08);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    border-color: #22c55e;
    box-shadow: 0 15px 50px rgba(34, 197, 94, 0.3);
    transform: translateY(-8px) scale(1.02);
}

/* Badge de recomendado */
.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: #000;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.plan-description {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    margin-bottom: 25px;
    min-height: 40px;
}

/* Lista de características */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.plan-features i {
    color: #22c55e;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Precios */
.plan-price {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px 0;
}

.plan-price .currency {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    font-weight: 600;
}

.plan-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 5px;
}

.plan-price .period {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* Precio de contacto */
.plan-price-contact {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 25px;
}

.contact-text {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Botones de planes */
.btn-plan {
    display: block;
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-lg);
    background: transparent;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-plan:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Botón del plan destacado - MEJORADO */
.btn-plan-featured {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #000;
    border: none;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

.btn-plan-featured:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    box-shadow: 0 12px 35px rgba(34, 197, 94, 0.5);
    transform: translateY(-3px);
}

/* Botón de contacto */
.btn-plan-contact {
    background: transparent;
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.btn-plan-contact:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: var(--accent-orange);
}

/* Garantía */
.plan-guarantee {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-top: 15px;
}

/* =========================================================================
   14. SECCIÓN DE PREGUNTAS FRECUENTES (FAQ)
   ========================================================================== */

.faq-section {
    padding: 100px 40px;
    width: 100%;
    background: transparent;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Header de FAQ */
.faq-header {
    margin-bottom: 50px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 20px;
}

.faq-badge span:first-child {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-purple);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-badge-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}

.faq-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 15px;
}

.faq-intro strong {
    color: var(--text-primary);
    font-weight: 600;
}

.faq-description {
    font-size: 1rem;
    color: var(--text-tertiary);
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Lista de preguntas */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Item individual de FAQ */
.faq-item {
    background: var(--color-surface);
    border: 1px solid var(--border-primary);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-accent);
}

.faq-item.active {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.2);
}

/* Pregunta (botón) */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-purple);
}

.faq-question span {
    flex: 1;
    padding-right: 20px;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--accent-purple);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Respuesta */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px 25px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-tertiary);
    line-height: 1.7;
    margin: 0;
}

.main-footer {
    background: transparent;
    margin-top: 100px;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 40px 30px;
    background: transparent;
    position: relative;
}

/* Semáforos en la esquina superior izquierda */
.traffic-lights-footer {
    display: flex;
    gap: 6px;
    margin-bottom: 30px;
}

.traffic-light-footer {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.traffic-light-footer.red {
    background-color: #ff5f57;
}

.traffic-light-footer.yellow {
    background-color: #ffbd2e;
}

.traffic-light-footer.green {
    background-color: #28c940;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 40px;
}

/* Columna del logo y descripción */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.logo-icon i {
    font-size: 1.5rem;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.logo-accent {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.footer-description {
    color: #a1a1aa;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 350px;
}

/* Columna de enlaces legales */
.footer-links h4 {
    color: #fafafa;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links ul li a {
    color: #a1a1aa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-links ul li a:hover::after {
    width: 100%;
}

/* Columna de contacto */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #a1a1aa;
    font-size: 0.95rem;
}

.contact-item i {
    color: #8b5cf6;
    font-size: 1.1rem;
    width: 20px;
    flex-shrink: 0;
}

.contact-item a {
    color: #a1a1aa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.contact-item span {
    color: #a1a1aa;
    transition: all 0.3s ease;
    cursor: default;
}

.contact-item span:hover {
    color: #ffffff;
    transform: translateX(3px);
}

/* Línea divisoria */
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

/* Información inferior del footer */
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    text-align: center;
    align-items: center;
}

.copyright {
    color: #a1a1aa;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

.company-info {
    color: #71717a;
    font-size: 0.8rem;
    margin: 0;
    line-height: 1.5;
}

.address {
    color: #71717a;
    font-size: 0.75rem;
    margin: 0;
    line-height: 1.5;
}

/* =========================================================================
   ESTILOS ADICIONALES PARA PÁGINA DE GRACIAS
   ========================================================================== */

/* ==========================================================================
   ICONO DE ÉXITO
   ========================================================================== */
.success-icon {
    font-size: 80px;
    color: #22c55e;
    margin-bottom: -20px;
    animation: successPulse 2s ease-in-out infinite;
}

.success-icon i {
    filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.5));
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* ==========================================================================
   CAJA DE INFORMACIÓN DE ACCESO
   ========================================================================== */
.access-info-box {
    width: 100%;
    max-width: 700px;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    display: flex;
    gap: var(--space-xl);
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s ease;
}

.access-info-box:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.access-icon {
    font-size: 40px;
    color: var(--accent-purple);
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
}

.access-text h3 {
    margin: 0 0 var(--space-md) 0;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.access-text p {
    margin: 0 0 var(--space-md) 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.access-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.access-text ul li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
    font-size: 1rem;
}

.access-text ul li i {
    color: #22c55e;
    font-size: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 16px 32px;
    border-radius: var(--radius-xl);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 2px solid #22c55e;
}

.btn-secondary:hover {
    background: rgba(34, 197, 94, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

/* ==========================================================================
   RESPONSIVE - PÁGINA DE GRACIAS
   ========================================================================== */
@media (max-width: 768px) {
    .success-icon {
        font-size: 60px;
    }

    .access-info-box {
        flex-direction: column;
        text-align: center;
        padding: var(--space-xl);
    }

    .access-text {
        width: 100%;
    }

    .access-text ul li {
        justify-content: center;
    }

    .video-title {
        font-size: 1.4rem;
    }

    .btn {
        width: 100%;
        max-width: 350px;
    }
}