/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #5D4E37;
    background-color: #FDFBF7;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #F5F1E8 0%, #E8DCC0 100%);
    padding: 20px 0;
    border-bottom: 1px solid #D4C4A8;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #8B7355;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo h1 i {
    font-size: 1.8rem;
    color: #D4AF37;
}

.event-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.event-date, .event-time {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #8B7355;
}

.event-date i, .event-time i {
    color: #D4AF37;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: white;
    padding: 100px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E8DCC0, transparent);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: #5D4E37;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subheadline {
    font-size: 1rem;
    font-weight: 500;
    color: #D4AF37;
    margin-bottom: 25px;
    font-style: italic;
}

.hero-text p:not(.subheadline) {
    font-size: 1.1rem;
    color: #8B7355;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Formulário */
.lead-form {
    background: #FDFBF7;
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #E8DCC0;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #E8DCC0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: white;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
    color: #A89B7A;
}

.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Divisor do formulário */
.form-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #E8DCC0;
}

.form-divider span {
    background: #FDFBF7;
    padding: 0 20px;
    color: #8B7355;
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Botão do WhatsApp Melhorado */
.btn-whatsapp {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 20px 24px;
    border-radius: 15px;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse-whatsapp 2s infinite;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #2EE76A 0%, #25D366 100%);
}

.btn-whatsapp:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-whatsapp i {
    font-size: 1.4rem;
    animation: bounce-whatsapp 1.5s infinite;
}

/* Animação de pulso para chamar atenção */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

/* Animação do ícone do WhatsApp */
@keyframes bounce-whatsapp {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}



.btn-secondary {
    background: linear-gradient(135deg, #8B7355 0%, #6B5B47 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 115, 85, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-professional-img {
    width: 100%;
    max-width: 450px;
    height: 550px;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(139, 115, 85, 0.25);
    transition: transform 0.3s ease;
}

.hero-professional-img:hover {
    transform: scale(1.02);
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(135deg, #F5F1E8 0%, #E8DCC0 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D4C4A8, transparent);
}

.countdown-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #5D4E37;
    margin-bottom: 40px;
}

.countdown-section h2 strong {
    color: #D4AF37;
}

.countdown-timer {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.countdown-item {
    background: white;
    padding: 25px 30px;
    border-radius: 15px;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 8px 25px rgba(139, 115, 85, 0.15);
    border: 2px solid #E8DCC0;
}

.countdown-item span {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.countdown-item label {
    font-size: 0.9rem;
    color: #8B7355;
    font-weight: 500;
}

/* Benefits Section */
.benefits {
    background: white;
    padding: 80px 0;
}

.benefits h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #5D4E37;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.benefit-item {
    background: #FDFBF7;
    padding: 30px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
    border: 1px solid #E8DCC0;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.1);
}

.benefit-check {
    width: 40px;
    height: 40px;
    background: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.benefit-item p {
    font-size: 1rem;
    color: #5D4E37;
    line-height: 1.6;
    margin: 0;
}

/* About Section */
.about {
    background: #FDFBF7;
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.about-professional-img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(139, 115, 85, 0.25);
    transition: transform 0.3s ease;
}

.about-professional-img:hover {
    transform: scale(1.02);
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: #5D4E37;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    color: #8B7355;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-text strong {
    color: #D4AF37;
    font-weight: 600;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #5D4E37 0%, #8B7355 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.final-cta .btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B8941F 100%);
    font-size: 1.2rem;
    padding: 20px 40px;
    border-radius: 15px;
    width: auto;
    display: inline-flex;
}

/* Footer */
.footer {
    background: #5D4E37;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header-top {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .event-info {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .subheadline {
        text-align: center;
    }
    
    .hero-text p:not(.subheadline) {
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .countdown-section {
        padding: 60px 0;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 20px 15px;
    }
    
    .countdown-item span {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .hero-professional-img,
    .about-professional-img {
        max-width: 100%;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .benefits h2 {
        font-size: 1.8rem;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
    
    .countdown-timer {
        flex-direction: column;
        align-items: center;
    }
    
    .countdown-item {
        min-width: 120px;
    }
    
    .lead-form {
        padding: 25px;
    }
    

    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
}

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

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

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }
.benefit-item:nth-child(5) { animation-delay: 0.5s; }
.benefit-item:nth-child(6) { animation-delay: 0.6s; }
.benefit-item:nth-child(7) { animation-delay: 0.7s; }
