/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #00060F;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Matrix Background */
.matrix-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 1;
    background-color: rgba(0, 6, 15, 0.1);
}

#matrix-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 6, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #1D212B;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    color: #BFFD11;
    font-size: 24px;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #BFFD11;
}

/* Hero Section */
.hero {
    padding: 80px 0 80px;
    background: linear-gradient(135deg, #00060F 0%, #0D111C 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(191, 253, 17, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Logo pequeño en el hero */
.hero-logo {
    margin-bottom: 30px;
    text-align: center;
}

.logo-small {
    width: 80px;
    height: auto;
    border-radius: 10px;
    border: 2px solid #BFFD11;
    box-shadow: 0 10px 30px rgba(191, 253, 17, 0.3);
    transition: transform 0.3s ease;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight {
    color: #BFFD11;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #BFFD11, transparent);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Imagen de Cursor */
.cursor-image-container {
    margin: 40px auto;
    max-width: 600px;
    text-align: center;
}

.cursor-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(191, 253, 17, 0.2);
    border: 2px solid #BFFD11;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cursor-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 80px rgba(191, 253, 17, 0.3);
}

/* Video Container */
.video-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #1D212B;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    pointer-events: none;
}

.video-container:hover .video-overlay {
    opacity: 1;
}

.play-button {
    transition: transform 0.3s ease;
}

.video-container:hover .play-button {
    transform: scale(1.1);
}

/* Control de audio en esquina superior derecha */
.audio-control {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
    pointer-events: auto;
}

/* Título cerca del video */
.video-title-section {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.video-section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

/* Flecha hacia abajo */
.arrow-down {
    margin-top: 20px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.audio-button {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #BFFD11;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(191, 253, 17, 0.4);
    backdrop-filter: blur(10px);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.audio-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(191, 253, 17, 0.6);
    background: rgba(191, 253, 17, 0.1);
}

/* Benefits Section */
.benefits {
    padding: 60px 0 80px;
    background: #0D111C;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #ffffff;
    line-height: 1.2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit-card {
    background: rgba(29, 33, 43, 0.5);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #1D212B;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(191, 253, 17, 0.1);
    border-color: #BFFD11;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #BFFD11;
}

.benefit-card p {
    color: #cccccc;
    font-size: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #00060F 0%, #0D111C 100%);
}

.pricing-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.pricing .section-title {
    margin-bottom: 20px;
}

.price-card {
    background: rgba(29, 33, 43, 0.8);
    border-radius: 20px;
    padding: 50px 40px;
    border: 2px solid #1D212B;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

/* Logo en el cuadro de precios */
.price-logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo-price {
    width: 100px;
    height: auto;
    border-radius: 15px;
    border: 2px solid #BFFD11;
    box-shadow: 0 10px 30px rgba(191, 253, 17, 0.3);
    transition: transform 0.3s ease;
}

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

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #BFFD11, #00ff88);
}

.price-header h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.price-title {
    color: #ffffff !important;
}

.price {
    margin-bottom: 15px;
}

.old-price {
    font-size: 1.2rem;
    color: #666;
    text-decoration: line-through;
    margin-right: 15px;
}

.current-price {
    font-size: 3rem;
    font-weight: 700;
    color: #BFFD11;
}

.price-description {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.features {
    text-align: left;
    margin-bottom: 40px;
}

.features ul {
    list-style: none;
}

.features li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: #ffffff;
    border-bottom: 1px solid rgba(29, 33, 43, 0.5);
}

.features li:last-child {
    border-bottom: none;
}

/* Purchase Section */
.purchase-section {
    text-align: center;
}

.guarantee {
    background: rgba(191, 253, 17, 0.1);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 1px solid rgba(191, 253, 17, 0.3);
}

.guarantee p {
    color: #BFFD11;
    font-weight: 500;
    margin: 0;
}

.hotmart-button-container {
    margin: 30px 0;
}

.hotmart__button-checkout {
    display: inline-block;
    transition: transform 0.3s ease;
}

.hotmart__button-checkout:hover {
    transform: scale(1.05);
}

/* Botón de compra personalizado */
.custom-buy-button {
    display: inline-block;
    background: linear-gradient(135deg, #BFFD11 0%, #00ff88 100%);
    color: #00060F;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(191, 253, 17, 0.3);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.custom-buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(191, 253, 17, 0.5);
    background: linear-gradient(135deg, #00ff88 0%, #BFFD11 100%);
}

.custom-buy-button:active {
    transform: translateY(-1px);
}

.buy-button-text {
    position: relative;
    z-index: 2;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.hotmart__button-checkout img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.payment-info {
    margin-top: 20px;
}

.payment-info p {
    color: #999;
    font-size: 0.9rem;
    margin: 5px 0;
}

/* Footer */
.footer {
    background: #00060F;
    padding: 60px 0 30px;
    border-top: 1px solid #1D212B;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h5 {
    color: #BFFD11;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 10px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #BFFD11;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #1D212B;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-logo {
        margin-bottom: 20px;
    }
    
    .logo-small {
        width: 60px;
    }
    
    .cursor-image-container {
        margin: 30px auto;
        max-width: 90%;
    }
    
    .audio-control {
        bottom: 15px;
        right: 15px;
    }
    
    .audio-button {
        padding: 8px;
    }
    
    .audio-button {
        width: 35px;
        height: 35px;
        padding: 6px;
    }
    
    .video-section-title {
        font-size: 2rem;
    }
    
    .arrow-down {
        margin-top: 15px;
        margin-bottom: 15px;
    }
    
    .benefits {
        padding: 40px 0 60px;
    }
    
    .custom-buy-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .nav {
        gap: 20px;
    }
    
    .nav a {
        font-size: 0.9rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
    
    .price-card {
        padding: 40px 20px;
    }
    
    .logo-price {
        width: 80px;
    }
    
    .current-price {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-logo {
        margin-bottom: 15px;
    }
    
    .logo-small {
        width: 50px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .price-card {
        padding: 30px 15px;
    }
    
    .logo-price {
        width: 60px;
    }
    
    .current-price {
        font-size: 2rem;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-card {
    animation: fadeInUp 0.6s ease forwards;
}

.benefit-card:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}
