/* Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header */
header {
    padding: 20px 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo-container {
    text-align: center;
}

.logo-container h1 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 1px;
    color: #0d47a1;
}

.logo-container span {
    color: #f57c00;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding: 0 20px;
}

.hero h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #0d47a1;
}

.highlight {
    color: #f57c00;
    font-weight: 900;
}

.subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

/* Features */
.features {
    margin: 30px 0;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background-color: #4caf50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
}

/* Form Container */
.form-container {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h3 {
    font-size: 24px;
    color: #0d47a1;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 16px;
}

/* Form Styles */
.email-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #0d47a1;
    outline: none;
}

.submit-btn {
    background-color: #f57c00;
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #e65100;
}

.form-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #888;
}

/* Benefits Section */
.benefits {
    padding: 50px 0;
    text-align: center;
}

.benefits h3 {
    font-size: 28px;
    color: #0d47a1;
    margin-bottom: 40px;
}

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

.benefit-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.benefit-card h4 {
    font-size: 20px;
    color: #0d47a1;
    margin-bottom: 15px;
}

.benefit-card p {
    color: #666;
}

/* CTA Section */
.cta-section {
    background-color: #0d47a1;
    color: white;
    text-align: center;
    padding: 50px 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.cta-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: #f57c00;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e65100;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    color: #666;
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #aaa;
}

.close-button:hover {
    color: #333;
}

.modal h3 {
    font-size: 24px;
    color: #0d47a1;
    margin-bottom: 15px;
}

.modal p {
    margin-bottom: 20px;
    color: #555;
}

.modal-button {
    background-color: #0d47a1;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 30px 15px;
    }
    
    .hero h2 {
        font-size: 26px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .benefits h3 {
        font-size: 24px;
    }
    
    .cta-section h3 {
        font-size: 24px;
    }
    
    .cta-section p {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 16px;
    }
}
