/**
 * contato.css — Estilos da página de Contato (website-loja)
 *
 * Override do scheme_original (skin.css) que define cores claras (#fff)
 * para fundo escuro. Aqui forçamos fundo branco com textos escuros,
 * seguindo o mesmo padrão aplicado no blog.css.
 *
 * Paleta do template:
 *   - Primário/Accent: #fea526 (laranja)
 *   - Escuro: #1d1e23
 *   - Texto: #5a5c69 / #6c757d
 *   - Fundo claro: #f8f9fa / #fff
 */

/* ==========================================================================
   1. SEÇÃO DE INFORMAÇÕES DE CONTATO
   ========================================================================== */

/** Fundo branco e textos escuros para override do scheme_original */
.contact-info-section {
    background-color: #fff;
    padding: 80px 0 60px;
}

.contact-info-section h1,
.contact-info-section h2,
.contact-info-section h3,
.contact-info-section h4,
.contact-info-section h5,
.contact-info-section h6 {
    color: #1d1e23;
}

.contact-info-section p,
.contact-info-section span,
.contact-info-section li {
    color: #5a5c69;
}

.contact-info-section a {
    color: #1d1e23;
}

.contact-info-section a:hover {
    color: #fea526;
}

/* ---------- Titulo da seção ---------- */
.contact-info-section .block-title__tag-line {
    color: #fea526;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.contact-info-section .block-title__title {
    color: #1d1e23;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

.contact-info-section .block-title__title span {
    color: #1d1e23;
}

.contact-info-section .block-title__text {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 30px;
}

/* ---------- Cards de informações de contato ---------- */
.contact-info-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    padding: 35px 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.contact-info-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-info-card__icon span {
    font-size: 22px;
    line-height: 1;
}

.contact-info-card__icon--address {
    background-color: rgba(254, 165, 38, 0.12);
    color: #fea526;
}

.contact-info-card__icon--phone {
    background-color: rgba(40, 167, 69, 0.12);
    color: #28a745;
}

.contact-info-card__icon--email {
    background-color: rgba(0, 123, 255, 0.12);
    color: #007bff;
}

.contact-info-card__icon--hours {
    background-color: rgba(111, 66, 193, 0.12);
    color: #6f42c1;
}

.contact-info-card__label {
    font-size: 18px;
    font-weight: 700;
    color: #1d1e23;
    margin-bottom: 10px;
}

.contact-info-card__text {
    color: #5a5c69;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-info-card__text a {
    color: #5a5c69;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card__text a:hover {
    color: #fea526;
}

.contact-info-card__text .fa-whatsapp {
    color: #25d366;
    margin-right: 5px;
}

/* ==========================================================================
   2. GOOGLE MAPS
   ========================================================================== */

.contact-map-section {
    background-color: #f8f9fa;
    padding: 0;
    position: relative;
}

.contact-map-section iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* ==========================================================================
   3. SEÇÃO DE FORMULÁRIO
   ========================================================================== */

.contact-form-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.contact-form-section h1,
.contact-form-section h2,
.contact-form-section h3,
.contact-form-section h4 {
    color: #1d1e23;
}

.contact-form-section p {
    color: #6c757d;
}

.contact-form-section .block-title__tag-line {
    color: #fea526;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.contact-form-section .block-title__title {
    color: #1d1e23;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-form-section .block-title__title span {
    color: #1d1e23;
}

.contact-form-section .block-title__text {
    color: #6c757d;
    font-size: 16px;
    line-height: 1.75;
    max-width: 650px;
    margin: 0 auto 40px;
}

/* ---------- Formulário ---------- */
.contact-form-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-form-wrapper label {
    font-size: 14px;
    font-weight: 600;
    color: #1d1e23;
    margin-bottom: 8px;
    display: block;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea,
.contact-form-wrapper select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #1d1e23;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus,
.contact-form-wrapper select:focus {
    border-color: #fea526;
    box-shadow: 0 0 0 3px rgba(254, 165, 38, 0.15);
    outline: none;
}

.contact-form-wrapper textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-wrapper ::placeholder {
    color: #adb5bd;
    font-size: 14px;
}

.contact-form-wrapper .thm-btn {
    background-color: #fea526;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form-wrapper .thm-btn:hover {
    background-color: #e89520;
    transform: translateY(-2px);
}

/* ==========================================================================
   4. REDES SOCIAIS NA SEÇÃO DE CONTATO
   ========================================================================== */

.contact-social-links {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.contact-social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    color: #5a5c69;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social-links a span {
    font-size: 16px;
    line-height: 1;
    color: inherit;
}

.contact-social-links a:hover {
    background-color: #fea526;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(254, 165, 38, 0.35);
}

/* ==========================================================================
   5. RESPONSIVO
   ========================================================================== */

@media (max-width: 991px) {
    .contact-info-section {
        padding: 50px 0 30px;
    }

    .contact-info-card {
        margin-bottom: 20px;
    }

    .contact-form-section {
        padding: 50px 0;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-info-section .block-title__title,
    .contact-form-section .block-title__title {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .contact-info-card {
        padding: 25px 20px;
    }

    .contact-form-wrapper {
        padding: 20px 15px;
    }

    .contact-social-links a {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}
