/* Estilos para a seção de contato e localização */
.contato-section {
    padding: 80px 0 0;
    position: relative;
    background-color: #fff;
}

.contato-section .section-title {
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--font-primary);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #333;
}

.contato-wrapper {
    max-width: 1000px;
    margin: 0 auto 80px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}

.contato-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}

.contato-mapa {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.contato-mapa iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
}

.contato-info {
    padding: 40px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contato-logo {
    text-align: center;
    margin-bottom: 30px;
}

.contato-logo img {
    max-width: 180px;
    height: auto;
}

.contato-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contato-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #824E34;
}

.contato-text {
    flex: 1;
}

.contato-label {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    color: #9FBACE;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 500;
}

.contato-value {
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
    cursor: pointer;
    transition: color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.contato-value:hover {
    color: #824E34;
}

.contato-horario {
    margin-bottom: 5px;
}

.contato-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.contato-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 180px;
}

.contato-btn-primary {
    background-color: #9FBACE;
    color: #fff;
    border: 1px solid #9FBACE;
}

.contato-btn-primary:hover {
    background-color: #8ba7b9;
    border-color: #8ba7b9;
}

.contato-btn-secondary {
    background-color: #824E34;
    color: #fff;
    border: 1px solid #824E34;
}

.contato-btn-secondary:hover {
    background-color: #6d3f27;
    border-color: #6d3f27;
}

.contato-btn-icon {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* Responsividade */
@media (max-width: 992px) {
    .contato-wrapper {
        margin: 0 20px 60px;
    }
    
    .contato-container {
        grid-template-columns: 1fr;
    }
    
    .contato-mapa {
        min-height: 350px;
        order: 2;
    }
    
    .contato-info {
        padding: 30px;
        order: 1;
    }
    
    .contato-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .contato-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .contato-info {
        padding: 30px 20px;
    }
    
    .contato-titulo {
        font-size: 1.8rem;
    }
}
