/* ============================
      PAGINA CONTATO
============================ */
.contato-hero {
    margin-top: 140px;
    padding: 70px 5% 64px;
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
}

.contato-hero-inner {
    width: min(1200px, 100%);
    margin: 0 auto;
    text-align: center;
}

.contato-kicker {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8b7355;
}

.contato-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
    background: linear-gradient(135deg, #d4af37 0%, #8b7355 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contato-hero p {
    margin: 0 auto;
    max-width: 900px;
    font-size: 18px;
    line-height: 1.75;
    color: #5c4a3a;
}

.contato-section {
    padding: 80px 5% 96px;
    background: #ffffff;
}

.contato-grid {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
}

.contato-info-coluna,
.contato-form-coluna {
    background: #ffffff;
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 20px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
    padding: 32px;
}

.contato-info-coluna h2,
.contato-form-coluna h2 {
    margin: 0 0 26px;
    font-size: 34px;
    line-height: 1.2;
    color: #2c2c2c;
}

.contato-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.contato-icone {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #d4af37 0%, #c19a6b 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.contato-item h3 {
    margin: 0 0 4px;
    font-size: 21px;
    color: #2c2c2c;
}

.contato-item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: #5c4a3a;
}

.contato-mapa {
    margin-top: 24px;
    border-radius: 14px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    overflow: hidden;
}

.contato-mapa iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
}

.contato-form {
    display: flex;
    flex-direction: column;
}

.contato-form label {
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.contato-form input,
.contato-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 2px solid #e8e4dc;
    background: #faf8f5;
    color: #2c2c2c;
    font-size: 15px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

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

.contato-form input:focus,
.contato-form textarea:focus {
    outline: none;
    border-color: #d4af37;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.contato-form button {
    margin-top: 8px;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #d4af37 0%, #c19a6b 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contato-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(193, 154, 107, 0.35);
}

@media (max-width: 1024px) {
    .contato-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .contato-hero {
        padding-top: 58px;
        padding-bottom: 52px;
    }
}

@media (max-width: 768px) {
    .contato-hero {
        margin-top: 120px;
        padding-top: 48px;
        padding-bottom: 44px;
    }

    .contato-section {
        padding-top: 64px;
        padding-bottom: 72px;
    }

    .contato-info-coluna,
    .contato-form-coluna {
        padding: 22px 18px;
    }

    .contato-info-coluna h2,
    .contato-form-coluna h2 {
        font-size: 30px;
    }

    .contato-hero p,
    .contato-item p {
        font-size: 15px;
    }

    .contato-item h3 {
        font-size: 19px;
    }

    .contato-mapa iframe {
        height: 260px;
    }
}
