/* ================================================================
   PÁGINA DE CONTATO
================================================================ */

.contato-page {
    position: relative;
    overflow: hidden;
}


/* ================================================================
   ÁREA PRINCIPAL
================================================================ */

.contato-main {
    position: relative;

    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(125, 212, 255, .14),
            transparent 24%
        ),
        radial-gradient(
            circle at 95% 90%,
            rgba(0, 102, 135, .08),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f7faff 100%
        );
}


/* ================================================================
   COLUNA DE INFORMAÇÕES
================================================================ */

.contato-info {
    position: relative;
}

.contato-info .section-title {
    color: var(--weet-dark);
}

.contato-intro {
    max-width: 520px;

    margin: 0 0 2rem;

    color: var(--weet-muted);

    font-size: 1rem;
    line-height: 1.75;
}


/* ================================================================
   CARDS DE CONTATO
================================================================ */

.contato-cards {
    display: grid;

    gap: .85rem;
}

.contato-card {
    display: flex;
    align-items: center;

    min-height: 82px;

    padding: 1rem 1.1rem;

    color: var(--weet-text);

    text-decoration: none;

    background: #fff;

    border: 1px solid rgba(0, 102, 135, .12);
    border-radius: .9rem;

    box-shadow:
        0 8px 24px rgba(0, 30, 43, .05);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

a.contato-card:hover {
    color: var(--weet-text);

    transform: translateY(-3px);

    border-color: rgba(0, 102, 135, .30);

    box-shadow:
        0 13px 30px rgba(0, 30, 43, .09);
}

.contato-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    width: 48px;
    height: 48px;

    margin-right: 1rem;

    border-radius: .75rem;

    color: var(--weet-primary);

    background:
        linear-gradient(
            135deg,
            rgba(125, 212, 255, .24),
            rgba(0, 102, 135, .08)
        );

    font-size: 1.25rem;
}

.contato-card-content {
    display: flex;
    flex-direction: column;

    min-width: 0;
}

.contato-card-content span {
    margin-bottom: .15rem;

    color: var(--weet-muted);

    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;

    text-transform: uppercase;
}

.contato-card-content strong {
    color: var(--weet-dark);

    font-size: .93rem;
    font-weight: 800;

    word-break: break-word;
}

.contato-card-content small {
    display: block;

    margin-top: .15rem;

    color: var(--weet-muted);

    font-size: .78rem;
}

.contato-card-static {
    cursor: default;
}


/* ================================================================
   REDES SOCIAIS
================================================================ */

.contato-social {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 1.5rem;
    padding-top: 1.4rem;

    border-top: 1px solid var(--weet-border);
}

.contato-social > span {
    color: var(--weet-muted);

    font-size: .78rem;
    font-weight: 700;
}

.contato-social-links {
    display: flex;

    gap: .55rem;
}

.contato-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    color: var(--weet-primary);

    text-decoration: none;

    background: #fff;

    border: 1px solid var(--weet-border);
    border-radius: 50%;

    transition:
        background .2s ease,
        color .2s ease,
        border-color .2s ease;
}

.contato-social-links a:hover {
    color: #fff;

    background: var(--weet-primary);

    border-color: var(--weet-primary);
}


/* ================================================================
   FORMULÁRIO
================================================================ */

.contato-form-box {
    height: 100%;

    padding: 2.3rem;

    background: #fff;

    border: 1px solid rgba(0, 102, 135, .10);
    border-radius: 1.2rem;

    box-shadow:
        0 18px 45px rgba(0, 30, 43, .09);
}

.contato-form-header {
    margin-bottom: 1.8rem;
}

.contato-form-header h2 {
    margin: .35rem 0 .5rem;

    color: var(--weet-dark);

    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;

    letter-spacing: -.025em;
}

.contato-form-header p {
    margin: 0;

    color: var(--weet-muted);

    font-size: .92rem;
}


/* ================================================================
   CAMPOS
================================================================ */

.contato-form .form-label {
    margin-bottom: .45rem;

    color: var(--weet-dark);

    font-size: .79rem;
    font-weight: 700;
}

.contato-form .form-control,
.contato-form .form-select {
    min-height: 49px;

    padding: .75rem .9rem;

    color: var(--weet-text);

    background-color: #fbfdff;

    border: 1px solid #dfe6ec;
    border-radius: .7rem;

    font-size: .9rem;

    box-shadow: none;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease;
}

.contato-form textarea.form-control {
    min-height: 145px;

    resize: vertical;
}

.contato-form .form-control:focus,
.contato-form .form-select:focus {
    background: #fff;

    border-color: rgba(0, 102, 135, .55);

    box-shadow:
        0 0 0 .2rem rgba(0, 102, 135, .08);
}

.contato-form .form-control::placeholder {
    color: #9ba6ae;
}


/* ================================================================
   RODAPÉ DO FORMULÁRIO
================================================================ */

.contato-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1.5rem;

    margin-top: .4rem;
}

.contato-form-footer p {
    max-width: 400px;

    margin: 0;

    color: #808b94;

    font-size: .72rem;
    line-height: 1.5;
}

.contato-submit {
    white-space: nowrap;
}


/* ================================================================
   MAPA
================================================================ */

.contato-map {
    padding: 0 0 5rem;

    background: #f7faff;
}

.contato-map-box {
    overflow: hidden;

    min-height: 300px;

    background: #e9eef2;

    border: 1px solid rgba(0, 102, 135, .10);
    border-radius: 1.1rem;

    box-shadow:
        0 10px 30px rgba(0, 30, 43, .06);
}

.contato-map-box iframe {
    display: block;

    width: 100%;
    min-height: 380px;

    border: 0;
}


/* ================================================================
   TABLET
================================================================ */

@media (max-width: 991.98px) {

    .contato-info {
        max-width: 760px;
    }

    .contato-form-box {
        padding: 2rem;
    }

}


/* ================================================================
   CELULAR
================================================================ */

@media (max-width: 575.98px) {

    .contato-intro {
        font-size: .94rem;
    }

    .contato-card {
        min-height: 76px;

        padding: .9rem;
    }

    .contato-card-icon {
        width: 44px;
        height: 44px;

        margin-right: .8rem;
    }

    .contato-social {
        align-items: flex-start;
        flex-direction: column;

        gap: .8rem;
    }

    .contato-form-box {
        padding: 1.5rem 1.2rem;

        border-radius: 1rem;
    }

    .contato-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .contato-submit {
        width: 100%;
    }

    .contato-map {
        padding-bottom: 4rem;
    }

}