/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
}

/* Configuración de fuentes Inter */
/* Google Fonts se enlazarán en el HTML */

/* Estilos para el video de introducción */
#intro-video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100001;
    background-color: #0A0512;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

#intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(160, 48, 255, 0.1) 0%, rgba(10, 5, 18, 0.92) 70%);
    z-index: 1;
    opacity: 0.5;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

.content-hidden {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.content-visible {
    opacity: 1;
}

html {
    scroll-behavior: smooth;
}

#fluid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100dvw;
    height: 100dvh;
    z-index: 100000;
    pointer-events: none;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0512;
    color: #F5F5F5;
    line-height: 1.6;
    background-image: linear-gradient(45deg, rgba(10, 5, 18, 0.97) 25%, rgba(15, 10, 25, 0.97) 25%, rgba(15, 10, 25, 0.97) 50%, rgba(10, 5, 18, 0.97) 50%, rgba(10, 5, 18, 0.97) 75%, rgba(15, 10, 25, 0.97) 75%, rgba(15, 10, 25, 0.97) 100%);
    background-size: 20px 20px;
    background-attachment: fixed;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #F5F5F5;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

h1 {
    font-weight: 900;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: #A030FF;
    color: #F5F5F5;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #8c52ff;
    box-shadow: 0 0 15px rgba(160, 48, 255, 0.5);
    z-index: 1;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #12b0e9, transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-primary:hover {
    background-color: #8c52ff;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(160, 48, 255, 0.7);
}

.btn-primary:hover:before {
    left: 100%;
}

/* Header */
.header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 5, 18, 0.9);
    border-bottom: 1px solid #8c52ff;
    box-shadow: 0 5px 15px rgba(59, 12, 110, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 100px;
    height: auto;
}

.navbar ul {
    display: flex;
}

.navbar ul li {
    margin-left: 30px;
}

.navbar ul li a {
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.navbar ul li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #A030FF;
    transition: width 0.3s ease;
}

.navbar ul li a:hover {
    color: #A030FF;
    text-shadow: 0 0 10px rgba(160, 48, 255, 0.5);
}

.navbar ul li a:hover:before {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: #0A0512;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(160, 48, 255, 0.1) 0%, rgba(10, 5, 18, 0.92) 70%);
    z-index: 0;
    opacity: 0.9;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(18, 176, 233, 0.2) 30%, rgba(160, 48, 255, 0.2) 100%);
    position: relative;
    border-top: 1px solid #8c52ff;
    border-bottom: 1px solid #8c52ff;
}

.hero-feature-video {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(160, 48, 255, 0.6);
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: cover;
}

.stats:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(10, 5, 18, 0.97) 25%, rgba(15, 10, 25, 0.97) 25%, rgba(15, 10, 25, 0.97) 50%, rgba(10, 5, 18, 0.97) 50%, rgba(10, 5, 18, 0.97) 75%, rgba(15, 10, 25, 0.97) 75%, rgba(15, 10, 25, 0.97) 100%);
    background-size: 20px 20px;
    opacity: 0.1;
}

.stats-title {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    line-height: 1.2;
    font-size: 48px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    margin-bottom: 40px;
    letter-spacing: 2px;
    margin-top: 40px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    gap: 25px;
    z-index: 1;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 25px 15px;
    min-width: 280px;
    min-height: 150px;
    background-color: rgba(10, 5, 18, 0.7);
    border-radius: 10px;
    border: 1px solid #8c52ff;
    box-shadow: 0 0 20px rgba(59, 12, 110, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(18, 176, 233, 0.7);
}

.stat-item h2 {
    font-size: 36px;
    color: #A030FF;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(160, 48, 255, 0.5);
    white-space: nowrap;
}

.stat-item h2.long-word {
    font-size: 24px;
}

.stat-item p {
    font-size: 14px;
    color: #F5F5F5;
    line-height: 1.4;
    padding: 0 10px;
}

/* About Section */
.about {
    padding: 100px 0;
    background-color: #0A0512;
    position: relative;
}

.about-title {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 50px;
    color: #F5F5F5;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about-text {
    width: 100%;
    max-width: 800px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 24px;
    color: #F5F5F5;
    line-height: 1.8;
    text-align: center;
}

.about-image img {
    width: 160%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    transform: translateX(-20%);
}

/* Secrets Section */
.secrets {
    padding: 100px 0;
    background-color: #0A0512;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 16px;
    color: #A030FF;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.secrets h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #F5F5F5;
}

.secrets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.secret-card {
    background-color: #010021;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #8c52ff;
    box-shadow: 0 0 15px rgba(59, 12, 110, 0.3);
    position: relative;
    overflow: hidden;
}

.secret-card:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(160, 48, 255, 0.1), transparent);
    z-index: 0;
    transition: transform 0.5s ease;
}

.secret-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(160, 48, 255, 0.5);
}

.secret-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(140, 82, 255, 0.3);
}

.secret-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0AE4FB;
    position: relative;
    z-index: 1;
}

.secret-card p {
    font-size: 14px;
    color: #F5F5F5;
    position: relative;
    z-index: 1;
}

/* Not a Course Section */
.not-course {
    padding: 100px 0;
    text-align: center;
    background-color: #0A0512;
    position: relative;
    border-top: 1px solid #8c52ff;
    border-bottom: 1px solid #8c52ff;
}

.not-course:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(160, 48, 255, 0.1) 0%, rgba(10, 5, 18, 0.95) 70%);
    z-index: 0;
}

.not-course .container {
    position: relative;
    z-index: 1;
}

.not-course h1 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #F5F5F5;
}

.not-course-list {
    font-size: 20px;
}

.not-course-list li {
    margin-bottom: 10px;
}

/* Application Process Section */
.process {
    padding: 100px 0;
    background-color: #0A0512;
    position: relative;
}

.process p {
    text-align: center;
    font-size: 14px;
    color: #A030FF;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.process h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #F5F5F5;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30px;
    position: relative;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background-color: #A030FF;
    border-radius: 50%;
    margin-top: 30px;
    box-shadow: 0 0 15px rgba(160, 48, 255, 0.7);
    z-index: 300000;
}

.timeline-line {
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: linear-gradient(to bottom, #A030FF, #8c52ff);
    box-shadow: 0 0 10px rgba(160, 48, 255, 0.5);
    z-index: 1;
}

.step-content {
    flex: 1;
    background-color: rgba(10, 5, 18, 0.7);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid #8c52ff;
    box-shadow: 0 0 15px rgba(59, 12, 110, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 300px;
}

.step-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.step-number {
    font-size: 14px;
    color: #A030FF;
    font-weight: 600;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(160, 48, 255, 0.5);
    letter-spacing: 1px;
    text-align: left;
}

.step-content h3 {
    font-size: 24px;
    color: #F5F5F5;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: left;
}

.step-description {
    font-size: 16px;
    color: #F5F5F5;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.step-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    border: 1px solid rgba(140, 82, 255, 0.3);
    transition: transform 0.3s ease;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(160, 48, 255, 0.5);
}

.step-content:hover .step-image img {
    transform: scale(1.03);
}

.apply-button-container {
    text-align: center;
    margin-top: 50px;
}

.apply-button-container .btn-primary {
    font-size: 18px;
    padding: 15px 40px;
    letter-spacing: 2px;
}

/* Success Rate Section */
.cta-btn-section3 {
    display: inline-block;
    background-color: #A030FF;
    color: #F5F5F5;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #8c52ff;
    box-shadow: 0 0 15px rgba(160, 48, 255, 0.5);
    z-index: 1;
    margin-bottom: 30px;
}

.cta-btn-section3:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #12b0e9, transparent);
    transition: 0.5s;
    z-index: -1;
}

.cta-btn-section3:hover {
    background-color: #8c52ff;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(160, 48, 255, 0.7);
}

.success-rate {
    padding: 100px 0;
    text-align: center;
    background-color: #0A0512;
    position: relative;
    border-top: 1px solid #8c52ff;
}

.success-rate:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(160, 48, 255, 0.1) 0%, rgba(10, 5, 18, 0.95) 70%);
    z-index: 0;
}

.success-rate .container {
    position: relative;
    z-index: 1;
}

.success-rate p {
    font-size: 14px;
    color: #A030FF;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.success-rate h1 {
    font-size: 36px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #F5F5F5;
}

/* Trustpilot Section */
.trustpilot-section {
    padding: 100px 0;
    text-align: center;
    background-color: #0A0512;
    position: relative;
    border-top: 1px solid #8c52ff;
}

.trustpilot-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(160, 48, 255, 0.1) 0%, rgba(10, 5, 18, 0.95) 70%);
    z-index: 0;
}

.trustpilot-section .container {
    position: relative;
    z-index: 1;
}

.trustpilot-section .section-title {
    text-align: center;
    font-size: 14px;
    color: #A030FF;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.trustpilot-section h1 {
    text-align: center;
    font-size: 36px;
    color: #F5F5F5;
}

.trustpilot-section .trustpilot-widget {
    margin: 0 auto;
    max-width: 800px;
}

/* Estilos para la galería de reseñas */
.reviews-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.carousel-container {
    overflow: hidden;
    margin-bottom: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.carousel-slide img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 5px 15px rgba(160, 48, 255, 0.2);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(160, 48, 255, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background-color: rgba(160, 48, 255, 1);
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(160, 48, 255, 0.3);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: rgba(160, 48, 255, 1);
}

.review-item {
    background-color: rgba(10, 5, 18, 0.7);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #8c52ff;
    box-shadow: 0 0 15px rgba(160, 48, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(160, 48, 255, 0.5);
}

.review-image {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background-color: #0A0512;
    position: relative;
}

.faq p {
    text-align: center;
    font-size: 14px;
    color: #A030FF;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.faq h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    color: #F5F5F5;
}

.faq-logo {
    text-align: center;
    margin-bottom: 50px;
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    background-color: rgba(10, 5, 18, 0.7);
    border-radius: 50%;
    margin: 0 auto;
    border: 1px solid #8c52ff;
    box-shadow: 0 0 15px rgba(59, 12, 110, 0.5);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.faq-item {
    background-color: rgba(10, 5, 18, 0.7);
    border-radius: 10px;
    padding: 20px;
    position: relative;
    border-left: 3px solid #A030FF;
    box-shadow: 0 0 15px rgba(59, 12, 110, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(160, 48, 255, 0.5);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    padding-right: 30px;
    color: #F5F5F5;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-item h3:hover {
    color: #A030FF;
}

.faq-item p {
    font-size: 14px;
    color: #F5F5F5;
    text-align: left;
    text-transform: none;
    letter-spacing: normal;
}

.faq-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 20px;
    color: #A030FF;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #A030FF;
    transition: all 0.3s ease;
    line-height: 0;
    padding-bottom: 2px;
}

.faq-icon:hover {
    background-color: #A030FF;
    color: #F5F5F5;
    box-shadow: 0 0 10px rgba(160, 48, 255, 0.7);
}

/* Footer */
.footer {
    padding: 30px 0;
    background-color: #0A0512;
    border-top: 1px solid #8c52ff;
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(10, 5, 18, 0.97) 25%, rgba(15, 10, 25, 0.97) 25%, rgba(15, 10, 25, 0.97) 50%, rgba(10, 5, 18, 0.97) 50%, rgba(10, 5, 18, 0.97) 75%, rgba(15, 10, 25, 0.97) 75%, rgba(15, 10, 25, 0.97) 100%);
    background-size: 20px 20px;
    opacity: 0.05;
    z-index: 0;
}

.footer .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-logo {
    margin-bottom: 0;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-logo span {
    color: #F5F5F5;
    font-weight: 300;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.footer-links a {
    font-size: 14px;
    color: #F5F5F5;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 3px;
}

.footer-links a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #A030FF;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #A030FF;
    text-shadow: 0 0 5px rgba(160, 48, 255, 0.5);
}

.footer-links a:hover:before {
    width: 100%;
}

.social-icons {
    display: flex;
    justify-content: center;
    width: 140%;
}

.social-icon {
    font-size: 48px;
    color: #F5F5F5;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #A030FF;
    transform: scale(1.2);
}

.social-icon .fa-instagram {
    font-size: 24px;
}

a[href*="instagram.com"] .fab {
    font-size: 24px;
    transform: scale(1.2);
}

.footer-cta {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.footer-cta p {
    font-size: 14px;
    color: #F5F5F5;
}

.footer-cta .btn-primary {
    margin-top: 20px;
    margin-bottom: 10px;
    padding: 8px 20px;
    font-size: 14px;
}

.developer-signature {
    text-align: center;
    padding: 15px 0 5px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dev-link {
    font-size: 12px;
    color: rgba(245, 245, 245, 0.6);
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 2px;
    text-decoration: none;
    opacity: 0.7;
    margin-bottom: 30px;
}

.dev-link:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #A030FF, #12B0E9);
    transition: width 0.4s ease;
}

.dev-link:hover {
    color: #F5F5F5;
    opacity: 1;
    text-shadow: 0 0 8px rgba(160, 48, 255, 0.6);
    animation: pulse 1.5s infinite ease-in-out;
}

.dev-link:hover:before {
    width: 100%;
}

/* Animations */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(160, 48, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 20px rgba(160, 48, 255, 0.8), 0 0 30px rgba(18, 176, 233, 0.4), 0 0 40px rgba(241, 84, 245, 0.4);
    }

    100% {
        box-shadow: 0 0 5px rgba(160, 48, 255, 0.5);
    }
}

@keyframes neonFlicker {

    0%,
    19%,
    21%,
    23%,
    25%,
    54%,
    56%,
    100% {
        text-shadow: 0 0 10px #A030FF, 0 0 20px #A030FF, 0 0 30px #A030FF, 0 0 40px #12B0E9, 0 0 70px #F154F5;
    }

    20%,
    24%,
    55% {
        text-shadow: none;
    }
}

.animate {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.rocket-sheep {
    position: absolute;
    width: 150px;
    height: auto;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    animation-fill-mode: forwards;
    bottom: 0;
    right: 0;
}

@keyframes rocketFlyDiagonal {
    0% {
        opacity: 0;
        transform: translate(0, 0) rotate(10deg);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-100vw, -100vh) rotate(-10deg);
    }
}

@keyframes flyTopRight {
    0% {
        opacity: 0;
        transform: translate(-100%, 100%) rotate(15deg);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(100%, -100%) rotate(30deg);
    }
}

@keyframes flyBottomRight {
    0% {
        opacity: 0;
        transform: translate(-100%, -100%) rotate(-15deg);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(100%, 100%) rotate(-30deg);
    }
}

@keyframes flyTopLeft {
    0% {
        opacity: 0;
        transform: translate(100%, 100%) rotate(-15deg);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-100%, -100%) rotate(-30deg);
    }
}

@keyframes flyBottomLeft {
    0% {
        opacity: 0;
        transform: translate(100%, -100%) rotate(15deg);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-100%, 100%) rotate(30deg);
    }
}

.legal-section {
    padding: 120px 0 80px;
    background-color: #0A0512;
    position: relative;
}

.legal-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(160, 48, 255, 0.1) 0%, rgba(10, 5, 18, 0.95) 70%);
    z-index: 0;
}

.legal-section .container {
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.legal-section h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #F5F5F5;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-item {
    margin-bottom: 40px;
    background-color: rgba(10, 5, 18, 0.7);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #8c52ff;
    box-shadow: 0 0 15px rgba(59, 12, 110, 0.3);
}

.legal-item h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0AE4FB;
}

.legal-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #F5F5F5;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }

    .stats .container {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }

    .secrets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .planes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    #intro-video {
        object-position: 55% center;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        align-items: flex-start;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: 36px;
        margin-top: 160px;
        margin-bottom: 20px;
    }

    .navbar {
        display: none;
    }


    .stats-grid {
        flex-direction: column;
    }

    .stat-item {
        flex: 0 0 100%;
        min-width: 100%;
        margin-bottom: 20px;
    }

    .stats-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .secrets-grid {
        grid-template-columns: 1fr;
    }

   .planes-grid {
        /* Sobrescribimos el display: grid de escritorio */
        display: grid !important; 
        
        /* Cambiamos a 1 sola columna para que se apilen verticalmente */
        grid-template-columns: 1fr !important; 
        
        /* Ajustamos espaciados para móvil */
        gap: 30px;
        padding: 0 20px;
        width: 100%;
    }

  .plan-card {
        /* Aseguramos que la tarjeta no se deforme */
        width: 100%;
        max-width: 450px; /* Un ancho máximo razonable */
        margin: 0 auto;   /* Centrado */
    }
    .plan-content h3 {
        font-size: 1.5rem;
    }

    .plan-card:last-child {
        margin-bottom: 0;
    }

    .process-steps {
        gap: 0px;
    }

    .process-timeline {
        display: none;
    }

    .timeline-dot {
        display: none;
    }

    .timeline-line-vertical {
        display: none;
    }

    .timeline-line {
        display: none;
        width: calc(100% - 25px);
        height: 2px;
        margin-top: 0;
        margin-left: 5px;
    }

    .step-image img {
        max-width: 100%;
    }

    .step-number {
        margin-bottom: 10px;
    }

    /* Mejoras de legibilidad en móvil */
    .plan-features li {
        flex-direction: column;
        align-items: flex-start;
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .plan-features li:last-child {
        border-bottom: none;
    }

    .plan-features li strong {
        display: block;
        margin-bottom: 5px;
        font-size: 1.05rem;
        color: #A030FF;
    }
}

/* Animaciones Mejoradas */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes rotateGlow {
    0% {
        box-shadow: 0 0 15px rgba(160, 48, 255, 0.5);
        transform: rotate(0deg);
    }

    50% {
        box-shadow: 0 0 25px rgba(160, 48, 255, 0.8), 0 0 35px rgba(18, 176, 233, 0.4);
        transform: rotate(180deg);
    }

    100% {
        box-shadow: 0 0 15px rgba(160, 48, 255, 0.5);
        transform: rotate(360deg);
    }
}

@keyframes borderGlow {
    0% {
        border-color: #8c52ff;
    }

    50% {
        border-color: #12B0E9;
    }

    100% {
        border-color: #8c52ff;
    }
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-20px) translateX(10px);
    }

    50% {
        transform: translateY(0) translateX(20px);
    }

    75% {
        transform: translateY(20px) translateX(10px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease-out forwards;
}

.fade-in-left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    opacity: 0;
    animation: fadeInRight 0.8s ease-out forwards;
}

.fade-in-down {
    opacity: 0;
    animation: fadeInDown 0.8s ease-out forwards;
}

.pulse {
    animation: pulse 2s infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

.particle {
    animation: floatParticle 15s ease-in-out infinite, pulse 5s ease-in-out infinite;
}

/* --- SECCIÓN PLANES FUTURISTA (REDDISEÑO) --- */
.planes-section {
    padding: 120px 0;
    background-color: #0A0512;
    position: relative;
    overflow: hidden;
}

.planes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(160, 48, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.planes-section .container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
}

.planes-subsection {

    margin-bottom: 80px;
}

.subsection-title {
    text-align: center;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 80px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(90deg, #fff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    width: 100%;
    align-items: stretch;
}

.plan-card {
    background: rgba(15, 10, 25, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.plan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(160, 48, 255, 0.3), rgba(18, 176, 233, 0.1), rgba(160, 48, 255, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px -10px rgba(160, 48, 255, 0.3);
}

.plan-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, #A030FF, #12B0E9, #F154F5);
}

.plan-image {
    width: 100%;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.plan-card:hover .plan-image img {
    transform: scale(1.1);
}

.plan-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.plan-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(90deg, #fff, #A030FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.neon-text {
    margin-top: 40px;
    font-size: 36px;
    text-align: center;
}

.plan-features {
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

.plan-features li {
    margin-bottom: 12px;
    color: #d1d1d1;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.plan-features li strong {
    color: #fff;
    font-weight: 600;
}

.plan-features li::before {
    content: "✓";
    color: #12B0E9;
    font-weight: bold;
}

.plan-price {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin: auto 0 30px 0;
    color: #fff;
    text-shadow: 0 0 20px rgba(160, 48, 255, 0.5);
}

.plan-btn {
    width: 100%;
    margin-top: auto;
    background: linear-gradient(90deg, #A030FF, #6a00ff);
    border: none;
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 16px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

.plan-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(160, 48, 255, 0.6);
}

.plan-btn:hover::after {
    left: 100%;
}

.telegram-float-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.telegram-float-button a {
    display: block;
    position: relative;
}

.telegram-icon {
    width: 60px;
    height: 60px;
    background-color: #0088cc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 136, 204, 0.5);
    transition: all 0.3s ease;
}

.telegram-icon i {
    font-size: 30px;
    color: white;
}

.telegram-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.telegram-tooltip:after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 8px 0 8px 8px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

.telegram-float-button a:hover .telegram-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 136, 204, 0.7);
}

.telegram-float-button a:hover .telegram-tooltip {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .telegram-tooltip {
        display: none;
    }
}

/* Alineaci�n de caracter�sticas en escritorio */
@media (min-width: 769px) {
    .plan-features li {
        display: grid;
        /* auto para el check, 140px para el t�tulo, 1fr para la descripci�n */
        grid-template-columns: auto 140px 1fr;
        align-items: start;
        gap: 15px;
    }

    /* Aseguramos que el check ocupe su espacio natural */
    .plan-features li::before {
        grid-column: 1;
    }

    /* El t�tulo ocupa la segunda columna */
    .plan-features li strong {
        grid-column: 2;
        display: block;
        /* Asegura que se comporte como bloque en el grid */
    }
}

/* FIXES FOR REGRESSIONS */
/* Task 1: Clean Hero Text */
.hero .container,
.hero h1,
.hero p {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

/* Task 2: Restore Stats Background */
.stats {
    background: linear-gradient(180deg, #0f0a19 0%, #2a1b4e 100%) !important;
    border-top: 1px solid rgba(140, 82, 255, 0.3) !important;
    border-bottom: 1px solid rgba(140, 82, 255, 0.3) !important;
}

/* Task 3: Hero Video */
.hero-video {
    width: 100%;
    max-width: 650px;
    margin: 30px auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.5);
}


/* ALIGNMENT FIX FOR PLAN CARDS */
.plan-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.plan-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.plan-price {
    margin-top: auto;
}


/* Featured Plan Highlight */
.featured-plan {
    transform: scale(1.05);
    border: 2px solid transparent;
    background-image: linear-gradient(rgba(15, 10, 25, 0.9), rgba(15, 10, 25, 0.9)),
        linear-gradient(135deg, #A030FF, #12B0E9, #F154F5);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 0 40px rgba(160, 48, 255, 0.4);
    z-index: 2;
    position: relative;
    /* Ensure z-index works */
}

.featured-plan:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 0 60px rgba(160, 48, 255, 0.6);
}

.featured-plan::before {
    display: none;
}

/* Adjust for mobile */
@media (max-width: 768px) {
    .featured-plan {
        transform: scale(1);
        margin-bottom: 40px;
    }

    .featured-plan:hover {
        transform: translateY(-5px);
    }
}