/* Página de Contato */
.contact-section {
    padding: 60px 0;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info p {
    color: var(--gray-color);
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    margin-bottom: 25px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(26, 62, 114, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.method-details h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.method-details p,
.method-details a {
    color: var(--gray-color);
    margin-bottom: 0;
    text-decoration: none;
}

.method-details a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 40px;
}

.social-links h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.social-icon {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.map-section {
    margin-top: 60px;
}

.client-contato {
    flex: 0 0 calc(80% - 45px);
    max-width: calc(60% - 45px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

@media (max-width: 991.98px) {
    .contact-info {
        margin-bottom: 50px;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}