/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8fafc;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    font-size: 2.5rem;
    color: #10B981;
}

.logo-text h1 {
    font-size: 1.4rem;
    color: #0f172a;
    font-weight: 900;
    line-height: 1.2;
}

.logo-text span {
    color: #10B981;
}

.logo-text p {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 2px;
}

.btn-header {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border: 2px solid #10B981;
}

.btn-header:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1551434678-e076c223a692?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0f172a;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 30px;
    font-size: 0.95rem;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.highlight {
    background: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* COUNTDOWN */
.hero-countdown {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin: 40px auto;
    max-width: 600px;
}

.countdown-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #cbd5e1;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    border-radius: 15px;
    min-width: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.countdown-item .number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    color: white;
    font-family: 'Courier New', monospace;
}

.countdown-item .label {
    font-size: 0.9rem;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* HERO CTA */
.hero-cta {
    margin-top: 50px;
}

.btn-hero {
    background: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    color: white;
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

.btn-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.6);
}

.hero-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: #94a3b8;
    font-size: 0.95rem;
}

/* HERO IMAGE */
.hero-image {
    margin-top: 60px;
}

.image-placeholder {
    width: 100%;
    max-width: 800px;
    height: 400px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 3px solid #10B981;
    position: relative;
    overflow: hidden;
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.play-button:hover {
    background: #10B981;
    transform: scale(1.1);
}

.play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}

.image-placeholder p {
    color: #cbd5e1;
    font-size: 1.1rem;
}

/* ===== SPEAKER SECTION ===== */
.speaker {
    padding: 100px 0;
    background: white;
}

.speaker-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.speaker-image {
    position: relative;
}

.image-frame {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    padding: 10px;
    margin: 0 auto;
}

.image-placeholder-speaker {
    width: 100%;
    height: 100%;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #10B981;
}

.section-title {
    font-size: 2.5rem;
    color: #0f172a;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title i {
    color: #10B981;
}

.section-title.center {
    text-align: center;
    justify-content: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 40px;
    text-align: center;
}

.speaker-name {
    font-size: 2rem;
    color: #0f172a;
    margin-bottom: 5px;
}

.speaker-title {
    color: #10B981;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.speaker-bio {
    margin-bottom: 40px;
}

.speaker-bio p {
    margin-bottom: 15px;
    color: #475569;
    line-height: 1.7;
}

.speaker-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #10B981;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
    padding: 100px 0;
    background: #f8fafc;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: #10B981;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid #10B981;
}

.benefit-icon i {
    font-size: 2rem;
    color: #10B981;
}

.benefit-title {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 15px;
}

.benefit-description {
    color: #64748b;
    line-height: 1.6;
}

/* ===== AGENDA SECTION ===== */
.agenda {
    padding: 100px 0;
    background: white;
}

.agenda-timeline {
    max-width: 800px;
    margin: 50px auto 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 30px;
    margin-bottom: 30px;
    align-items: start;
}

.timeline-time {
    background: #10B981;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    font-size: 1.1rem;
}

.timeline-content {
    background: #f8fafc;
    padding: 25px 30px;
    border-radius: 15px;
    border-left: 5px solid #10B981;
}

.timeline-content h3 {
    color: #0f172a;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #475569;
    line-height: 1.6;
}

/* ===== REGISTRATION SECTION ===== */
.registration {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.registration-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    max-width: 1000px;
    margin: 0 auto;
}

.registration-header {
    background: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    padding: 40px;
    text-align: center;
    color: white;
}

.registration-header .section-title {
    color: white;
    justify-content: center;
}

.registration-header .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.registration-info {
    background: #f8fafc;
    padding: 40px;
    border-right: 2px solid #e2e8f0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    color: #475569;
}

.info-item i {
    color: #10B981;
    font-size: 1.2rem;
    width: 30px;
}

.info-item strong {
    color: #0f172a;
    display: block;
    margin-bottom: 5px;
}

.progress-bar {
    height: 10px;
    background: #e2e8f0;
    border-radius: 5px;
    margin-top: 20px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981 0%, #3B82F6 100%);
    border-radius: 5px;
    transition: width 0.5s ease;
}

.registration-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #0f172a;
    font-weight: 600;
}

.form-group label i {
    color: #10B981;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: #64748b;
    font-size: 0.85rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 30px 0;
}

.form-checkbox input {
    margin-top: 5px;
}

.form-checkbox label {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.5;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 20px;
    border-radius: 15px;
    border: none;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.4);
}

.form-note {
    text-align: center;
    margin-top: 20px;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 100px 0;
    background: #f8fafc;
}

.faq-grid {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    color: #0f172a;
    font-size: 1.2rem;
}

.faq-question i {
    color: #10B981;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 30px;
    display: none;
    color: #475569;
    line-height: 1.6;
    padding-bottom: 25px;
}

.faq-answer p {
    margin: 0;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.cta-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 50px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: #10B981;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
}

.btn-cta-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    border: 3px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #10B981;
    transform: translateY(-5px);
}

/* ===== FOOTER ===== */
.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-logo .logo-icon {
    font-size: 2rem;
}

.footer-logo h3 {
    font-size: 1.4rem;
    color: white;
}

.footer-logo p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-top: 5px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #10B981;
}

.footer-disclaimer {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.footer-disclaimer p {
    margin-bottom: 10px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .speaker-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
    }
    
    .registration-info {
        border-right: none;
        border-bottom: 2px solid #e2e8f0;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        padding: 180px 0 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-item .number {
        font-size: 2rem;
    }
    
    .btn-hero {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .timeline-time {
        width: fit-content;
        margin: 0 auto;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}