/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Faixa Superior */
.top-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    color: #000;
    text-align: center;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: 3px dashed #ef4444;
    border-left: none;
    border-right: none;
}

/* Container Principal */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hero Section */
.hero {
    margin-bottom: 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

/* Imagem do Pedro Rolli */
.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}

.badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.85);
    padding: 10px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.badge span {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}

.check-icon {
    color: #fbbf24;
}

/* Texto Principal */
.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.headline {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}

.headline .highlight {
    color: #f59e0b;
}

.subheadline {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.6;
}

.subheadline strong {
    color: #fbbf24;
}

/* Informações do Evento */
.event-info {
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid #1e293b;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-date {
    font-size: 16px;
    color: #d1d5db;
}

.date-highlight {
    color: #f59e0b;
    font-weight: 700;
}

.event-audience {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
}

.bell-icon {
    color: #f59e0b;
}

/* CTA Button */
.cta-button {
    background: #f59e0b;
    color: #000;
    border: 3px dashed #000;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    margin: 10px 0;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

/* Benefícios */
.benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #d1d5db;
}

.benefits li::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

/* Seção Para Quem É */
.target-audience {
    margin-top: 80px;
}

.target-audience h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

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

.audience-card {
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid #1e293b;
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.audience-card:hover {
    border-color: #f59e0b;
    transform: translateY(-5px);
}

.audience-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.audience-card p {
    font-size: 15px;
    color: #9ca3af;
    line-height: 1.6;
}

/* Disclaimer */
.disclaimer {
    background: rgba(127, 29, 29, 0.3);
    border: 2px dashed #ef4444;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #fca5a5;
}

.x-icon {
    font-size: 24px;
    margin-right: 8px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0a0e27;
    border: 3px dashed #ef4444;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease-in-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.modal-close:hover {
    background: #e5e7eb;
    transform: rotate(90deg);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}

/* Formulário */
.lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input,
.form-select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #374151;
    border-radius: 8px;
    font-size: 16px;
    background: #fff;
    color: #000;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23000'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-submit {
    background: #f59e0b;
    color: #000;
    border: 3px dashed #000;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.form-submit:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}

.modal-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
}

.modal-footer a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.modal-footer a:hover {
    color: #fff;
}

.modal-footer span {
    margin: 0 8px;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .headline {
        font-size: 24px;
    }

    .subheadline {
        font-size: 16px;
    }

    .target-audience h2 {
        font-size: 28px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .modal-title {
        font-size: 20px;
    }

    .cta-button {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .top-banner {
        font-size: 12px;
        padding: 10px;
    }

    .container {
        padding: 20px 15px;
    }

    .headline {
        font-size: 20px;
    }

    .modal-content {
        width: 95%;
        padding: 25px 15px;
    }
}
