/* ====== PÁGINA DE CONTATO ====== */
.contato-page {
    margin-top: 120px;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

/* Cores principais */
:root {
    --verde-principal: #409546;
    --verde-escuro: #104323;
    --verde-claro: rgba(64, 149, 70, 0.1);
    --verde-hover: #2e7d33;
}

/* Hero Section - Estilo Padronizado */
.contato-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../imagens/contato.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    text-align: center;
    color: white;
    margin-bottom: 60px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-titulo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1.1;
}

.hero-titulo .destaque {
    color: var(--verde-principal);
    text-shadow: 0 0 10px rgba(64, 149, 70, 0.3);
}

.hero-subtitulo {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-acoes {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    background: var(--verde-principal);
    color: white;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(64, 149, 70, 0.2);
}

.hero-btn:hover {
    background: var(--verde-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(64, 149, 70, 0.3);
}

.hero-btn.secundario {
    background: transparent;
    border: 2px solid white;
}

.hero-btn.secundario:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Container Principal */
.contato-container {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

/* Seção de Informações */
.contato-info-section {
    display: grid;
    gap: 25px;
}

.contato-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 5px solid var(--verde-principal);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contato-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.contato-icon {
    width: 70px;
    height: 70px;
    background: var(--verde-claro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contato-icon i {
    font-size: 32px;
    color: var(--verde-principal);
}

.contato-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 15px;
}

.contato-card p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contato-card strong {
    color: #333;
}

/* Seção do Formulário */
.form-section {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-header {
    margin-bottom: 40px;
    text-align: center;
}

.form-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #222;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.form-header p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Formulário */
.contato-form {
    margin-bottom: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group label i {
    color: var(--verde-principal);
    width: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    color: #333;
    background: #f8f9fa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--verde-principal);
    background: white;
    box-shadow: 0 0 0 3px rgba(64, 149, 70, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23555' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    padding-right: 40px;
}

.error-message {
    display: block;
    margin-top: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #dc3545;
    min-height: 20px;
}

/* Botões */
.form-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-enviar {
    flex: 1;
    background: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-escuro) 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(64, 149, 70, 0.2);
}

.btn-enviar:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--verde-hover) 0%, var(--verde-escuro) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(64, 149, 70, 0.3);
}

.btn-enviar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-whatsapp {
    flex: 1;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1da851 0%, #0f7a6e 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* Mensagem de Status */
#mensagem-status {
    margin-top: 25px;
    padding: 20px;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    text-align: center;
    display: none;
}

#mensagem-status.success {
    display: block;
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #c3e6cb;
}

#mensagem-status.error {
    display: block;
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 1px solid #f5c6cb;
}

#mensagem-status.loading {
    display: block;
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Seção do Mapa */
.mapa-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

.mapa-section h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mapa-section h3 i {
    color: var(--verde-principal);
}

.mapa-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Responsividade */
@media (max-width: 992px) {
    .contato-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contato-hero {
        padding: 60px 20px;
    }
    
    .hero-titulo {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .contato-page {
        margin-top: 100px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-section {
        padding: 30px 20px;
    }
    
    .contato-card {
        padding: 25px;
    }
    
    .hero-titulo {
        font-size: 36px;
    }
    
    .hero-subtitulo {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .contato-info-section {
        gap: 20px;
    }
    
    .contato-icon {
        width: 60px;
        height: 60px;
    }
    
    .contato-icon i {
        font-size: 28px;
    }
    
    .btn-enviar,
    .btn-whatsapp {
        padding: 16px 20px;
        font-size: 16px;
    }
    
    .hero-btn {
        padding: 16px 20px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    
    .hero-acoes {
        flex-direction: column;
    }
}
