/* Página de Reciclagem - Estilos Adicionais */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../img/galpao-001.jpeg');
    background-size: cover;
    background-position: center;
    /* background-color: #41b873; */
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: white;
}

.contact-content {
    padding: 4rem 0;
}

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

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

.contact-form h2 {
    margin-bottom: 1.5rem;
    color: #27ae60;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
}

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

.contact-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.contact-method {
    margin-bottom: 1.5rem;
}

.contact-method h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

.social-link img {
    transition: transform 0.3s;
}

.social-link:hover img {
    transform: scale(1.1);
}

.business-hours ul {
    list-style: none;
}

.business-hours li {
    margin-bottom: 0.5rem;
}

.map-container {
    margin-top: 3rem;
}

.map-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.map-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    width: 100%;
    display: block;
}

/* Responsividade */
@media (max-width: 768px) {
    .page-header {
        padding: 2rem 0;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .contact-content {
        padding: 3rem 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px;
        font-size: 1rem;
    }

    .map-wrapper iframe {
        height: 320px;
    }
}
