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

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

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

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

.header h1 {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 1px;
}

/* Main Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.hero-text {
    padding-right: 20px;
}

.headline {
    font-size: 36px;
    color: #1a365d;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: bold;
}

.subtitle {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.5;
}

.benefits {
    margin-top: 40px;
}

.benefit-item {
    margin-bottom: 35px;
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #2c5282;
}

.benefit-item h3 {
    color: #1a365d;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: bold;
}

.benefit-item ul {
    list-style: none;
    padding-left: 0;
}

.benefit-item li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #4a5568;
    font-size: 14px;
}

.benefit-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: bold;
}

/* Form Section */
.form-container {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 20px;
}

.form-container h3 {
    color: #1a365d;
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
    font-weight: bold;
}

.form-container p {
    color: #4a5568;
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    color: #2d3748;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5282;
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.cta-button {
    background: linear-gradient(135deg, #2c5282 0%, #1a365d 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    font-family: Verdana, Geneva, sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 82, 130, 0.3);
}

.cta-button:active {
    transform: translateY(0);
}

/* Differentials Section */
.differentials {
    padding: 60px 0;
    background: white;
}

.differentials h3 {
    text-align: center;
    color: #1a365d;
    font-size: 28px;
    margin-bottom: 50px;
    font-weight: bold;
}

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

.differential-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.differential-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.differential-item h4 {
    color: #1a365d;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.differential-item p {
    color: #4a5568;
    font-size: 14px;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #1a365d;
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-info h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    font-size: 12px;
    color: #a0aec0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .headline {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .form-container {
        padding: 30px 20px;
        position: static;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        text-align: center;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 24px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .differentials {
        padding: 40px 0;
    }
    
    .form-container {
        padding: 20px 15px;
    }
}

