/* =====================================================
   CONTATO
   IDENTIDADE SETOR 7
   ===================================================== */

.contact-page {
    background:
        linear-gradient(
            180deg,
            #060606 0%,
            #000000 100%
        );

    color: #fff;
}


/* =====================================================
   CABEÇALHO
   ===================================================== */

.contact-page .site-header {
    background: rgba(5, 5, 5, 0.88);

    border-bottom:
        1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}


/* =====================================================
   HERO
   ===================================================== */

.contact-hero {
    position: relative;

    padding:
        90px 0 85px;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.575) 0%,
            #000000ad 45%,
            rgba(7, 0, 0, 0.6) 100%
        ),
        url("../img/banner-show.jpg")
        center center / cover no-repeat;
}


.contact-hero::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,35,51,0.55),
            transparent
        );
}


.contact-hero .container {
    position: relative;

    z-index: 2;

    max-width: 1100px;
}


/* =====================================================
   HERO - SELO
   ===================================================== */

.contact-hero .eyebrow {
    display: inline-flex;

    align-items: center;

    padding:
        9px 16px;

    border:
        1px solid rgba(255,35,51,0.30);

    border-radius: 999px;

    background:
        rgba(255,35,51,0.08);

    color: #ffd4d8;

    box-shadow:
        0 0 20px rgba(255,35,51,0.08);
}


/* =====================================================
   HERO - TÍTULO
   ===================================================== */

.contact-hero .section-title {
    max-width: 900px;

    margin:
        22px 0 18px !important;

    color: #fff;

    font-size:
        clamp(
            42px,
            5vw,
            68px
        );

    line-height: 0.98;

    letter-spacing: -0.04em;

    text-shadow:
        0 10px 40px rgba(0,0,0,0.42);
}


/* =====================================================
   HERO - TEXTO
   ===================================================== */

.contact-hero .lead {
    max-width: 760px;

    margin: 0;

    color: #c9c9ce;

    font-size: 16px;

    line-height: 1.75;
}


/* =====================================================
   HERO - DESTAQUE
   ===================================================== */

.contact-highlight {
    display: inline-flex;

    align-items: center;

    margin-top: 25px;

    padding:
        11px 15px;

    border-left:
        3px solid #ff2333;

    border-radius: 0 10px 10px 0;

    background:
        rgba(255,255,255,0.035);

    color: #f1dadd;

    font-size: 14px;

    line-height: 1.4;
}


/* =====================================================
   SEÇÃO DO FORMULÁRIO
   ===================================================== */

.contact-form-section {
    padding:
        78px 0 100px;

    background:
        #000;
}


.contact-form-container {
    width:
        min(
            calc(100% - 40px),
            1080px
        );

    margin:
        0 auto;
}


/* =====================================================
   TÍTULO DO FORMULÁRIO
   ===================================================== */

.contact-form-heading {
    max-width: 800px;

    margin:
        0 auto 38px;

    text-align: center;
}


.contact-form-heading .eyebrow {
    display: inline-flex;

    padding:
        8px 15px;

    border:
        1px solid rgba(255,35,51,0.25);

    border-radius: 999px;

    background:
        rgba(255,35,51,0.06);

    color: #ffcdd2;
}


.contact-form-heading .section-title {
    margin:
        16px 0 14px;

    color: #fff;

    font-size:
        clamp(
            34px,
            4vw,
            48px
        );

    line-height: 1.05;

    letter-spacing: -0.035em;
}


.contact-form-heading .lead {
    max-width: 700px;

    margin:
        0 auto;

    color: #99999f;

    font-size: 15px;

    line-height: 1.7;
}


/* =====================================================
   PAINEL
   ===================================================== */

.contact-form-panel {
    width: 100%;

    max-width: none;

    margin: 0;

    padding:
        34px;

    box-sizing: border-box;

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    gap:
        21px 18px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.055),
            rgba(255,255,255,0.022)
        );

    border:
        1px solid rgba(255,255,255,0.09);

    border-radius: 24px;

    box-shadow:
        0 30px 90px rgba(0,0,0,0.48),

        inset 0 1px 0
        rgba(255,255,255,0.035);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);
}


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

.form-field {
    display: flex;

    flex-direction: column;

    gap: 8px;
}


.form-field label {
    color: #ececef;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: -0.01em;
}


.form-field label span {
    color:
        #ff2637;
}


/* =====================================================
   INPUT / SELECT
   ===================================================== */

.contact-form-panel .input,
.contact-form-panel .select {
    width: 100%;

    height: 46px;

    padding:
        0 15px;

    box-sizing: border-box;

    color: #fff;

    background:
        rgba(8,8,9,0.90);

    border:
        1px solid rgba(255,255,255,0.11);

    border-radius: 12px;

    outline: none;

    font-size: 14px;

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


.contact-form-panel .input:hover,
.contact-form-panel .select:hover {
    border-color:
        rgba(255,255,255,0.19);

    background:
        rgba(14,14,15,0.95);
}


.contact-form-panel .input:focus,
.contact-form-panel .select:focus {
    border-color:
        rgba(255,35,51,0.85);

    background:
        rgba(14,9,10,0.98);

    box-shadow:
        0 0 0 3px
        rgba(255,35,51,0.10),

        0 0 22px
        rgba(255,35,51,0.07);
}


.contact-form-panel .input::placeholder {
    color:
        #68686f;
}


/* =====================================================
   SELECT
   ===================================================== */

.contact-form-panel .select {
    appearance: none;

    -webkit-appearance: none;

    padding-right: 40px;

    background-image:
        linear-gradient(45deg, transparent 50%, #92929a 50%),
        linear-gradient(135deg, #92929a 50%, transparent 50%);

    background-position:
        calc(100% - 17px) 20px,
        calc(100% - 11px) 20px;

    background-size:
        6px 6px,
        6px 6px;

    background-repeat: no-repeat;
}


/* =====================================================
   SERVIÇOS
   ===================================================== */

.services-field {
    grid-column: 1 / -1;

    margin-top: 5px;

    padding-top: 6px;
}


.services-title {
    display: block;

    margin-bottom: 13px;

    color: #ececef;

    font-size: 13px;

    font-weight: 700;
}


.services-grid {
    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0,1fr)
        );

    gap: 10px;
}


/* =====================================================
   OPÇÕES DE SERVIÇO
   ===================================================== */

.service-option {
    position: relative;

    display: flex;

    align-items: center;

    gap: 11px;

    min-height: 46px;

    padding:
        0 14px;

    box-sizing: border-box;

    border:
        1px solid rgba(255,255,255,0.10);

    border-radius: 12px;

    background:
        rgba(255,255,255,0.025);

    color: #e5e5e8;

    font-size: 14px;

    cursor: pointer;

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


.service-option:hover {
    border-color:
        rgba(255,35,51,0.40);

    background:
        rgba(255,35,51,0.04);

    transform:
        translateY(-1px);
}


/* =====================================================
   CHECKBOX ORIGINAL ESCONDIDO
   ===================================================== */

.service-option input {
    position: absolute;

    width: 1px;
    height: 1px;

    opacity: 0;
}


/* =====================================================
   CÍRCULO
   ===================================================== */

.service-check {
    position: relative;

    width: 17px;
    height: 17px;

    flex: 0 0 17px;

    border:
        1.5px solid #ff2333;

    border-radius: 50%;

    background:
        transparent;

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


.service-option:has(input:checked) {
    border-color:
        rgba(255,35,51,0.58);

    background:
        rgba(255,35,51,0.07);

    box-shadow:
        0 0 24px
        rgba(255,35,51,0.08);
}


.service-option:has(input:checked) .service-check {
    background:
        #ff2333;

    box-shadow:
        0 0 14px
        rgba(255,35,51,0.58);

    transform:
        scale(1.04);
}


.service-option:has(input:checked) .service-check::after {
    content: "";

    position: absolute;

    inset: 4px;

    border-radius: 50%;

    background:
        #fff;
}


/* =====================================================
   BOTÃO
   ===================================================== */

.contact-form-actions {
    grid-column: 1 / -1;

    display: flex;

    justify-content: center;

    margin-top: 12px;
}


.contact-form-actions .btn {
    min-width: 250px;

    min-height: 48px;

    padding:
        0 28px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #ff3344,
            #d91522
        );

    color: #fff;

    font-size: 14px;

    font-weight: 800;

    box-shadow:
        0 12px 30px
        rgba(217,21,34,0.25);

    transition:
        transform .22s ease,
        box-shadow .22s ease,
        filter .22s ease;
}


.contact-form-actions .btn:hover {
    transform:
        translateY(-2px);

    filter:
        brightness(1.06);

    box-shadow:
        0 16px 38px
        rgba(217,21,34,0.38);
}


/* =====================================================
   WHATSAPP
   ===================================================== */

.contact-page .whatsapp-button {
    filter:
        drop-shadow(
            0 8px 18px
            rgba(0,0,0,0.35)
        );
}


/* =====================================================
   RESPONSIVO
   ===================================================== */

@media (max-width: 900px) {

    .contact-form-panel {
        padding: 26px;
    }

}


@media (max-width: 720px) {

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


    .contact-hero .section-title {
        font-size:
            clamp(
                36px,
                10vw,
                52px
            );
    }


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


    .contact-form-container {
        width:
            calc(100% - 28px);
    }


    .contact-form-panel {
        grid-template-columns: 1fr;

        padding: 20px;

        border-radius: 20px;

        gap: 17px;
    }


    .services-field {
        grid-column: auto;
    }


    .services-grid {
        grid-template-columns: 1fr;

        gap: 9px;
    }


    .contact-form-actions {
        grid-column: auto;
    }


    .contact-form-actions .btn {
        width: 100%;
    }

}


@media (max-width: 480px) {

    .contact-form-heading {
        margin-bottom: 28px;
    }


    .contact-form-heading .section-title {
        font-size: 32px;
    }


    .contact-form-panel {
        padding: 16px;
    }


    .form-field label,
    .services-title {
        font-size: 12px;
    }


    .contact-form-panel .input,
    .contact-form-panel .select {
        height: 44px;

        font-size: 13px;
    }


    .service-option {
        min-height: 44px;

        font-size: 13px;
    }

}