.page-contact {
    background: #f7f9fc;
}

.contact-page {
    color: #101828;
}

.contact-container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 88px;
    border-bottom: 1px solid #e4e7ec;
    background:
        radial-gradient(circle at 82% 18%, rgba(255, 204, 0, .3), transparent 25%),
        linear-gradient(135deg, #fff8ce 0%, #fff 50%, #edf4ff 100%);
}

.contact-hero::after {
    position: absolute;
    right: -70px;
    bottom: -120px;
    width: 340px;
    height: 340px;
    border: 52px solid rgba(0, 95, 170, .06);
    border-radius: 50%;
    content: '';
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #8a6500;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-hero h1 {
    max-width: 760px;
    margin: 18px 0 14px;
    font-family: var(--fonte1);
    font-size: clamp(46px, 7vw, 76px);
    line-height: 1;
    letter-spacing: -.045em;
}

.contact-hero p {
    max-width: 690px;
    margin: 0;
    color: #475467;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.65;
}

.contact-content {
    padding: 72px 0 90px;
}

.contact-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.contact-heading > span {
    color: #8a6500;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-heading h2 {
    margin: 8px 0 12px;
    font-family: var(--fonte1);
    font-size: clamp(30px, 4vw, 44px);
    letter-spacing: -.025em;
}

.contact-heading p {
    margin: 0;
    color: #667085;
    font-size: 17px;
    line-height: 1.65;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.contact-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    padding: 36px;
    border: 1px solid #e4e7ec;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(16, 24, 40, .08);
}

.contact-card::after {
    position: absolute;
    top: -54px;
    right: -54px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: currentColor;
    content: '';
    opacity: .06;
}

.contact-card__icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 28px;
    place-items: center;
    border-radius: 18px;
    font-size: 29px;
}

.contact-card--whatsapp {
    color: #128c4a;
}

.contact-card--whatsapp .contact-card__icon {
    background: #e9fbf1;
}

.contact-card--email {
    color: #0969b3;
}

.contact-card--email .contact-card__icon {
    background: #eaf4ff;
}

.contact-card > span {
    color: #667085;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.contact-card h3 {
    margin: 7px 0 12px;
    color: #101828;
    font-family: var(--fonte1);
    font-size: clamp(24px, 3vw, 34px);
    overflow-wrap: anywhere;
}

.contact-card p {
    margin: 0 0 26px;
    color: #667085;
    font-size: 16px;
    line-height: 1.6;
}

.contact-card a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 12px;
    color: #fff;
    font-weight: 850;
    transition: transform .2s ease, box-shadow .2s ease;
}

.contact-card--whatsapp a {
    background: #128c4a;
}

.contact-card--email a {
    background: #0969b3;
}

.contact-card a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(16, 24, 40, .16);
}

.contact-note {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
    padding: 22px 26px;
    border: 1px solid #f0d77a;
    border-radius: 18px;
    background: #fff9dc;
    color: #5f4800;
}

.contact-note > i {
    font-size: 28px;
}

.contact-note strong {
    display: block;
    margin-bottom: 3px;
    color: #332800;
    font-size: 17px;
}

.contact-note p {
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 760px) {
    .contact-container {
        width: min(100% - 28px, 1120px);
    }

    .contact-hero {
        padding: 64px 0 60px;
    }

    .contact-content {
        padding: 48px 0 64px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: 0;
        padding: 28px;
    }

    .contact-note {
        align-items: flex-start;
    }
}
