/* ========================================== */
/* ESTILOS PARA PÁGINA DE CONTATO */
/* ========================================== */

.contato-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ========================================== */
/* CABEÇALHO */
/* ========================================== */
.contato-header {
    text-align: center;
    margin-bottom: 50px;
    color: #f5e6d3;
}

.contato-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    color: #f8efb2;
}

.contato-header p {
    font-family: 'Lato', sans-serif;
    font-size: 1.2rem;
    color: #f5e6d3;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================== */
/* GRID DE CONTATO */
/* ========================================== */
.contato-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* ========================================== */
/* FORMULÁRIO DE CONTATO */
/* ========================================== */
.formulario-contato {
    background: rgba(122, 31, 43, 0.4);
    border: 2px solid rgba(245, 230, 211, 0.3);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.formulario-contato h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #f8efb2;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    color: #f5e6d3;
    margin-bottom: 8px;
    font-size: 1rem;
}

.required {
    color: #ff6b6b;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(245, 230, 211, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #f5e6d3;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    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: #ffd700;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 230, 211, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

/* Estilo das opções do select */
.form-group select option {
    background-color: #2d1b1b;
    color: #f5e6d3;
    padding: 10px;
}

.form-group select option:hover,
.form-group select option:checked {
    background-color: #722f37;
    color: #ffd700;
}

/* ========================================== */
/* BOTÃO ENVIAR */
/* ========================================== */
.btn-enviar {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

.btn-enviar:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6);
}

.btn-enviar:active {
    transform: translateY(-1px);
}

/* ========================================== */
/* MENSAGEM DE SUCESSO */
/* ========================================== */
.mensagem-sucesso {
    display: none;
    background: rgba(76, 175, 80, 0.2);
    border: 2px solid #4caf50;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    color: #4caf50;
    font-family: 'Lato', sans-serif;
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.mensagem-sucesso.ativo {
    display: block;
    animation: sucessoAnimation 0.5s ease;
}

@keyframes sucessoAnimation {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========================================== */
/* INFORMAÇÕES DE CONTATO */
/* ========================================== */
.info-contato {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-contato h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #f8efb2;
    margin-bottom: 10px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.info-card {
    background: rgba(122, 31, 43, 0.4);
    border: 2px solid rgba(245, 230, 211, 0.3);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: #ffd700;
}

.info-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.info-texto h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #f8efb2;
    margin-bottom: 8px;
}

.info-texto p {
    font-family: 'Lato', sans-serif;
    color: #f5e6d3;
    margin: 5px 0;
    line-height: 1.6;
}

/* ========================================== */
/* REDES SOCIAIS */
/* ========================================== */
.redes-sociais {
    background: rgba(122, 31, 43, 0.4);
    border: 2px solid rgba(245, 230, 211, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(5px);
}

.redes-sociais h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #f8efb2;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    font-size: 2.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    filter: drop-shadow(0 5px 10px rgba(255, 215, 0, 0.5));
}

/* ========================================== */
/* SEÇÃO FAQ */
/* ========================================== */
.faq-section {
    margin-top: 60px;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #f8efb2;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.faq-card {
    background: rgba(122, 31, 43, 0.4);
    border: 2px solid rgba(245, 230, 211, 0.3);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.faq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: #ffd700;
}

.faq-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #f8efb2;
    margin-bottom: 12px;
}

.faq-card p {
    font-family: 'Lato', sans-serif;
    color: #f5e6d3;
    line-height: 1.7;
    font-size: 1rem;
}

/* ========================================== */
/* RESPONSIVIDADE */
/* ========================================== */
@media (max-width: 768px) {
    .contato-header h1 {
        font-size: 2.2rem;
    }

    .contato-grid {
        grid-template-columns: 1fr;
    }

    .formulario-contato {
        padding: 25px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}