
.page-title {
    text-align: center;
    margin: 2rem 0 3rem;
    color: #2ab7a9;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.page-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f9d71c;
    border-radius: 2px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
}

.contact-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.contact-section h2 {
    color: #2ab7a9;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.contact-section h2:after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ffd700;
    margin-top: 0.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    padding-right: 2rem;
}

.contact-texto-principal {
    margin-bottom: 3rem;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.info-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    background: #f0f9f8;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    color: #2ab7a9;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    color: #333;
    margin: 0 0 0.3rem;
    font-size: 1.2rem;
}

.info-content p, 
.info-content a {
    color: #666;
    margin: 0;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #2ab7a9;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    color: #666;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #2ab7a9;
}

.contact-form {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #555;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #2ab7a9;
    box-shadow: 0 0 0 3px rgba(42, 183, 169, 0.2);
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background: #2ab7a9;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background: #239a8e;
    transform: translateY(-2px);
}

.btn-submit i {
    margin-right: 0.5rem;
}

/* Map container removido - não será mais exibido */
.map-container {
    display: none;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
}

@media (max-width: 576px) {
    .page-header {
        padding: 3rem 1rem;
    }
    
    .contact-section {
        padding: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
    }
    
    .info-icon {
        margin-bottom: 0.8rem;
    }
}

.alert {
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.95rem;
    position: relative;
    padding-left: 50px;
}

.alert:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1.2rem;
}

.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border: 1px solid #badbcc;
}

.alert-success:before {
    content: '\f00c';
    color: #0f5132;
}

.alert-error {
    color: #842029;
    background-color: #f8d7da;
    border: 1px solid #f5c2c7;
}

.alert-error:before {
    content: '\f06a';
    color: #842029;
}

.required-field:after {
    content: ' *';
    color: #e74c3c;
}