/* ===== PÁGINA DE CONTACTOS ===== */
.contact-page {
    background: var(--cinza-claro);
    min-height: 100vh;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* ===== HERO DA PÁGINA CONTACTOS ===== */
.contact-hero {
    background: linear-gradient(135deg, var(--verde-primario), var(--verde-secundario));
    padding: 60px 40px;
    border-radius: 24px;
    margin: 10px 20px 40px;
    color: var(--branco);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="%23ffffff" fill-opacity="0.1" fill-rule="evenodd"/%3E%3C/svg%3E');
    opacity: 0.1;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
}

.contact-hero h1 .highlight {
    color: var(--branco);
    position: relative;
    z-index: 2;
}

.contact-hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
    position: relative;
}

/* ===== BOTÕES DE AÇÃO RÁPIDA ===== */
.quick-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.quick-btn {
    flex: 1;
    min-width: 200px;
    padding: 18px 25px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--branco);
    box-shadow: var(--sombra);
}

.quick-btn.whatsapp {
    background: #25D366;
}

.quick-btn.whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: var(--sombra-forte);
}

.quick-btn.phone {
    background: var(--verde-primario);
}

.quick-btn.phone:hover {
    background: var(--verde-secundario);
    transform: translateY(-3px);
    box-shadow: var(--sombra-forte);
}

.quick-btn.email {
    background: var(--preto);
}

.quick-btn.email:hover {
    background: var(--cinza-escuro);
    transform: translateY(-3px);
    box-shadow: var(--sombra-forte);
}

/* ===== GRID PRINCIPAL ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* ===== CARDS DE INFORMAÇÃO ===== */
.info-card {
    background: var(--branco);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--sombra);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-forte);
}

.info-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--verde-primario);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--cinza-claro);
    padding-bottom: 15px;
}

.info-card h2 i {
    font-size: 1.3rem;
    color: var(--verde-secundario);
}

/* Lista de contactos */
.contact-list {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--borda);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(15, 107, 58, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--verde-primario);
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: var(--verde-primario);
    color: var(--branco);
    transform: rotate(5deg);
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.9rem;
    color: var(--cinza);
    margin-bottom: 5px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--preto);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.contact-value:hover {
    color: var(--verde-primario);
}

.contact-note {
    font-size: 0.85rem;
    color: var(--cinza);
    margin-top: 5px;
}

/* Horários */
.hours-list {
    list-style: none;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--borda);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 500;
    color: var(--preto);
}

.hours-time {
    font-weight: 600;
    color: var(--verde-primario);
}

.hours-closed {
    color: #dc3545;
}

.info-note {
    margin-top: 25px;
    padding: 15px;
    background: var(--cinza-claro);
    border-radius: 10px;
}

.info-note p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cinza);
    font-size: 0.95rem;
}

.info-note i {
    color: var(--verde-secundario);
    font-size: 1.1rem;
}

/* Redes sociais */
.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 10px;
}

.social-btn {
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--branco);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-5px);
    filter: brightness(1.1);
    box-shadow: var(--sombra);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf);
}

.social-btn.whatsapp {
    background: #25D366;
    grid-column: span 2;
}

.social-follow {
    margin-top: 20px;
    padding: 15px;
    background: var(--cinza-claro);
    border-radius: 10px;
    text-align: center;
}

.social-follow p {
    color: var(--cinza);
    font-size: 0.95rem;
}

/* ===== FORMULÁRIO DE CONTACTO ===== */
.contact-form {
    background: var(--branco);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--sombra);
    grid-column: span 2;
}

.contact-form h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--verde-primario);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--cinza-claro);
    padding-bottom: 15px;
}

.contact-form h2 i {
    color: var(--verde-secundario);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--preto);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--borda);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--verde-primario);
    box-shadow: 0 0 0 3px rgba(15, 107, 58, 0.1);
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--verde-primario);
}

.form-checkbox label {
    font-size: 0.95rem;
    color: var(--cinza);
}

.form-checkbox a {
    color: var(--verde-primario);
    text-decoration: none;
}

.form-checkbox a:hover {
    text-decoration: underline;
}

.btn-submit {
    background: linear-gradient(135deg, var(--verde-primario), var(--verde-secundario));
    color: var(--branco);
    border: none;
    border-radius: 10px;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 107, 58, 0.3);
}

.btn-submit i {
    font-size: 1.2rem;
}

/* Alertas */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===== MAPA ===== */
.map-section {
    background: var(--branco);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--sombra);
    margin-bottom: 40px;
}

.map-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--verde-primario);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--cinza-claro);
    padding-bottom: 15px;
}

.map-section h2 i {
    color: var(--verde-secundario);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    position: relative;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: var(--sombra);
    backdrop-filter: blur(10px);
}

.map-overlay h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--verde-primario);
    margin-bottom: 10px;
}

.map-overlay p {
    margin-bottom: 5px;
    color: var(--preto);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-overlay i {
    color: var(--verde-primario);
    width: 16px;
}

/* ===== FAQ ===== */
.faq-section {
    background: var(--branco);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--sombra);
    margin-bottom: 40px;
}

.faq-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--verde-primario);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid var(--cinza-claro);
    padding-bottom: 15px;
}

.faq-section h2 i {
    color: var(--verde-secundario);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    padding: 20px;
    background: var(--cinza-claro);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--sombra);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--preto);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-question i {
    color: var(--verde-secundario);
    font-size: 0.9rem;
}

.faq-answer {
    color: var(--cinza);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 25px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-column: span 1;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        flex-direction: column;
    }
    
    .quick-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero {
        padding: 40px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .social-btn.whatsapp {
        grid-column: span 1;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-overlay {
        position: static;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .info-card,
    .contact-form,
    .map-section,
    .faq-section {
        padding: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .hours-item {
        flex-direction: column;
        gap: 5px;
    }
    
    .faq-question {
        font-size: 1rem;
    }
}