/* =========================================================
   CONTATO
   ========================================================= */

.contato-page {
    background: #ffffff;
}


/* =========================================================
   CABEÇALHO
   ========================================================= */

.contato-header {
    padding: 55px 0 45px;
    text-align: center;
    background: #fdf3f6;
    border-bottom: 1px solid #f0dce3;
}

.contato-header .container {
    max-width: 850px;
}

.contato-kicker {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 14px;
    border-radius: 20px;
    background: #f3d7e1;
    color: #765263;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contato-header h1 {
    margin: 0 0 15px;
    color: #5a3b48;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

.contato-header p {
    margin: 0 auto;
    color: #765263;
    font-size: 1rem;
    line-height: 1.7;
}


/* =========================================================
   CONTEÚDO
   ========================================================= */

.contato-content {
    padding: 55px 0 70px;
}


/* =========================================================
   INFORMAÇÕES
   ========================================================= */

.contato-info {
    height: 100%;
    padding: 30px;
    border: 1px solid #f0dce3;
    border-radius: 16px;
    background: #fdf7f9;
}
.contato-form-card {
    height: 100%;
}
.contato-info h2,
.contato-form-card h2,

.contato-map-header h2 {
    margin: 0 0 10px;
    color: #5a3b48;
    font-size: 1.5rem;
    font-weight: 700;
}

.contato-info-intro {
    margin-bottom: 28px;
    color: #765263;
    line-height: 1.6;
}


/* =========================================================
   ITEM
   ========================================================= */

.contato-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.contato-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f3d7e1;
    color: #b76d85;
    font-size: 1.1rem;
}

.contato-item strong {
    display: block;
    margin-bottom: 3px;
    color: #5a3b48;
    font-size: .9rem;
}

.contato-item span,
.contato-item a {
    display: block;
    color: #765263;
    font-size: .9rem;
    line-height: 1.5;
    text-decoration: none;
}

.contato-item a:hover {
    color: #b84f70;
}


/* =========================================================
   REDES SOCIAIS
   ========================================================= */

.contato-social {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid #ead5dd;
}

.contato-social > strong {
    color: #5a3b48;
    font-size: .9rem;
}

.contato-social-links {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.contato-social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f3d7e1;
    color: #765263;
    text-decoration: none;
    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}

.contato-social-links a:hover {
    background: #dca5b8;
    color: #ffffff;
    transform: translateY(-2px);
}


/* =========================================================
   FORMULÁRIO
   ========================================================= */

.contato-form-card {
    padding: 30px;
    border: 1px solid #f0dce3;
    border-radius: 16px;
    background: #ffffff;
    box-shadow:
        0 8px 25px rgba(90, 59, 72, .07);
}

.contato-form-card > p {
    margin-bottom: 25px;
    color: #765263;
}


/* =========================================================
   CAMPOS
   ========================================================= */

.contato-form-card .form-label {
    margin-bottom: 6px;
    color: #5a3b48;
    font-size: .88rem;
    font-weight: 600;
}

.contato-form-card .form-control,
.contato-form-card .form-select {
    min-height: 45px;
    border: 1px solid #e8d2da;
    border-radius: 8px;
    color: #5a3b48;
}

.contato-form-card textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contato-form-card .form-control:focus,
.contato-form-card .form-select:focus {
    border-color: #d49aad;
    box-shadow:
        0 0 0 .2rem rgba(212, 154, 173, .18);
}


/* =========================================================
   BOTÃO
   ========================================================= */

.contato-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border: 0;
    border-radius: 9px;
    background: #d49aad;
    color: #ffffff;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        background .2s ease,
        transform .2s ease;
}

.contato-submit:hover {
    background: #b76d85;
    transform: translateY(-2px);
}


/* =========================================================
   MAPA
   ========================================================= */

.contato-map-section {
    padding: 0 0 70px;
}

.contato-map-header {
    margin-bottom: 20px;
}

.contato-map-header .contato-kicker {
    margin-bottom: 8px;
}

.contato-map {
    min-height: 350px;
    overflow: hidden;
    border: 1px solid #f0dce3;
    border-radius: 16px;
    background: #fdf7f9;
}

.contato-map iframe {
    width: 100%;
    height: 400px;
    display: block;
    border: 0;
}

.contato-map-placeholder {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #b76d85;
    text-align: center;
}

.contato-map-placeholder i {
    margin-bottom: 10px;
    font-size: 3rem;
}

.contato-map-placeholder span {
    color: #5a3b48;
    font-weight: 700;
}

.contato-map-placeholder small {
    margin-top: 5px;
    color: #765263;
}


/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 991.98px) {

    .contato-content {
        padding: 45px 0 55px;
    }

}

@media (max-width: 575.98px) {

    .contato-header {
        padding: 40px 15px 35px;
    }

    .contato-content {
        padding: 35px 15px 50px;
    }

    .contato-info,
    .contato-form-card {
        padding: 22px;
    }

    .contato-map-section {
        padding: 0 15px 50px;
    }

}
/* =========================================================
   CONTATOS DAS COMUNIDADES
   ========================================================= */

.contato-comunidades {
    padding: 0 0 70px;
}

.contato-comunidades-header {
    margin-bottom: 25px;
}

.contato-comunidades-header .contato-kicker {
    margin-bottom: 8px;
}

.contato-comunidades-header h2 {
    margin: 0 0 8px;
    color: #5a3b48;
    font-size: 1.5rem;
    font-weight: 700;
}

.contato-comunidades-header p {
    margin: 0;
    color: #765263;
    line-height: 1.6;
}


/* =========================================================
   CARD DA COMUNIDADE
   ========================================================= */

.comunidade-contato-card {
    height: 100%;

    display: flex;
    align-items: flex-start;

    gap: 14px;

    padding: 20px;

    border: 1px solid #f0dce3;
    border-radius: 14px;

    background: #fdf7f9;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.comunidade-contato-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 7px 20px
        rgba(90, 59, 72, .08);
}


/* =========================================================
   ÍCONE
   ========================================================= */

.comunidade-contato-icon {
    width: 42px;
    height: 42px;

    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #f3d7e1;

    color: #b76d85;

    font-size: 1.1rem;
}


/* =========================================================
   INFORMAÇÕES
   ========================================================= */

.comunidade-contato-info {
    min-width: 0;
    flex: 1;
}

.comunidade-contato-info h3 {
    margin: 0 0 10px;

    color: #5a3b48;

    font-size: 1rem;
    font-weight: 700;

    line-height: 1.3;
}


/* =========================================================
   CONTATO / TELEFONE
   ========================================================= */

.comunidade-contato-item {
    display: flex;
    align-items: center;

    gap: 7px;

    margin-top: 7px;

    color: #765263;

    font-size: .88rem;

    line-height: 1.4;
}

.comunidade-contato-item i {
    width: 17px;

    flex: 0 0 17px;

    color: #b76d85;
}

.comunidade-contato-item span {
    color: #765263;
}

.comunidade-contato-item a {
    color: #765263;

    text-decoration: none;

    transition: color .2s ease;
}

.comunidade-contato-item a:hover {
    color: #b84f70;
}


/* =========================================================
   RESPONSIVO
   ========================================================= */

@media (max-width: 575.98px) {

    .contato-comunidades {
        padding-bottom: 50px;
    }

    .comunidade-contato-card {
        padding: 17px;
    }

}