/* Estilos específicos da página de Contato */
.contact-hero {
    background-color: var(--footer-color);
    padding: 3rem 0;
    margin-bottom: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 70px; /* Espaço para o header fixo */
    width: 100%;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.main-container {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    position: relative;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-section {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    background-color: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.info-item:hover {
    background-color: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.info-item h3 {
    color: var(--footer-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.info-item p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-item i {
    color: var(--footer-color);
    margin-right: 8px;
    font-size: 1.2rem;
}

.location-container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.location-container h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.location-content {
    margin-top: 1rem;
}

.location-content iframe {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.map-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.map-actions .button {
    flex: 1;
    padding: 0.75rem;
    font-size: 0.9rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-actions .button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.location-subtitle {
    color: #666;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 0.5rem;
}



/* Responsividade */
@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 0;
        margin-top: 60px;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 1.1rem;
    }

    .main-container {
        padding: 0 1rem;
    }

    .contact-info,
    .location-container {
        padding: 1.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-item {
        padding: 1.25rem;
    }

    .location-content iframe {
        height: 300px;
    }

    .map-actions {
        flex-direction: column;
    }
}