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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: white;
    background-color: #1a1a2e;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.header {
    background: #1a1a2e;
    padding: 20px 0;
}

.logo-section {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #00d4ff);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
    position: relative;
    overflow: hidden;
    padding: 8px;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: logoShine 3s ease-in-out infinite;
}

@keyframes logoShine {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    border-radius: 6px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.hero {
    padding: 60px 0 100px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
    text-align: left;
    max-width: 800px;
}

.hero-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    margin: 30px 0;
}

.hero-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.video-section {
    display: flex;
    justify-content: center;
}

.video-placeholder {
    width: 100%;
    max-width: 500px;
    height: 300px;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 1px solid #333;
    overflow: hidden;
}

/* Video player styles */
.hero-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.video-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.play-button i {
    font-size: 2rem;
    color: #1a1a2e;
    margin-left: 4px;
}

.video-error {
    text-align: center;
    color: white;
}

.video-error i {
    font-size: 3rem;
    margin-bottom: 10px;
    display: block;
}

.video-error p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.benefits-section {
    padding-left: 30px;
}

.benefits-list {
    margin-bottom: 40px;
}

.benefit-item {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: white;
    line-height: 1.6;
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #1a1a2e;
    border: 2px solid #00d4ff;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #00d4ff 0%, #007bff 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

/* Problems Section */
.problems {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.problems h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-card {
    background: linear-gradient(135deg, #2a2a3e 0%, #1f1f3a 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #3a3a4e;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #007bff);
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: #00d4ff;
}

.problem-icon {
    width: 30px;
    height: 30px;
    background: #00d4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon i {
    color: white;
    font-size: 0.8rem;
}

.problem-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.problem-card p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: #1a1a2e;
}

.solutions h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-card {
    background: linear-gradient(135deg, #2a2a3e 0%, #1f1f3a 100%);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #3a3a4e;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #007bff);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: #00d4ff;
}

.solution-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    text-transform: uppercase;
}

.solution-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.solution-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cccccc;
    font-size: 0.95rem;
}

.solution-item i {
    color: #00d4ff;
    font-size: 0.8rem;
    width: 16px;
    flex-shrink: 0;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

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

.pricing-circle {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #2a2a3e 0%, #1f1f3a 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 50px;
    border: 3px solid #00d4ff;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.price-period {
    font-size: 1.2rem;
    color: #cccccc;
    position: relative;
    z-index: 2;
}

.pricing h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.bonus-card {
    background: linear-gradient(135deg, #2a2a3e 0%, #1f1f3a 100%);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #3a3a4e;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-color: #00d4ff;
}

.bonus-card i {
    color: #00d4ff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.bonus-card span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Guarantee Section */
.guarantee {
    padding: 100px 0;
    background: #1a1a2e;
}

.guarantee-card {
    background: linear-gradient(135deg, #2a2a3e 0%, #1f1f3a 100%);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #3a3a4e;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

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

.guarantee-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
    font-weight: 500;
}

/* Calendly Section */
.calendly-section {
    padding: 80px 0;
    background: #1a1a2e;
}

.calendly-widget {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    color: #333;
}

.calendly-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.call-description {
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
}

.call-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
}

.detail-item i {
    color: #007bff;
}

.calendar-placeholder {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 600;
    color: #333;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.day-header {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    padding: 5px;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.date {
    text-align: center;
    padding: 8px;
    border-radius: 5px;
    font-size: 0.9rem;
    cursor: pointer;
}

.date.disabled {
    color: #ccc;
}

.date.available {
    color: #333;
    background: #f0f8ff;
    border: 1px solid #007bff;
}

.date.selected {
    background: #007bff;
    color: white;
}

.timezone-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #666;
    font-size: 0.9rem;
}

.calendly-cta {
    margin-top: 25px;
    text-align: center;
}

.calendly-button {
    background: linear-gradient(135deg, #007bff, #00d4ff);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.calendly-button:hover {
    background: linear-gradient(135deg, #0056b3, #007bff);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.4);
}

.calendly-button i {
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #1a1a2e;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #00d4ff;
}

/* Calendly Overlay */
.calendly-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.calendly-container {
    background: white;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
}

.close-calendly {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
}

.close-calendly:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .problems-grid,
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .call-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .pricing-circle {
        width: 150px;
        height: 150px;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 30px 0 60px;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .problems, .solutions, .pricing, .guarantee, .calendly-section {
        padding: 60px 0;
    }
    
    .problem-card, .solution-card {
        padding: 20px;
    }
}