.hora-contact-page {
    --contact-background: #08080b;
    --contact-surface: #15151a;
    --contact-primary: #e91e53;
    --contact-primary-light: #ff406e;
    --contact-text: #f5f5f7;
    --contact-text-soft: #a6a6b0;
    --contact-border: rgba(255, 255, 255, 0.08);
    --contact-border-strong: rgba(255, 255, 255, 0.13);

    position: relative;
    width: 100%;
    min-height: 680px;
    padding: 45px 24px 60px;
    overflow: hidden;
    color: var(--contact-text);
   	background: transparent;
    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

.hora-contact-page,
.hora-contact-page * {
    box-sizing: border-box;
}

.hora-contact-glow {
    display: none;
}

.hora-contact-glow-one {
    top: -190px;
    left: -150px;
    width: 470px;
    height: 470px;
    background: rgba(194, 17, 66, 0.13);
}

.hora-contact-glow-two {
    right: -180px;
    bottom: -210px;
    width: 530px;
    height: 530px;
    background: rgba(91, 38, 145, 0.12);
}

.hora-contact-card {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1120px;
    min-height: 615px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    overflow: hidden;
    border: 1px solid var(--contact-border);
    border-radius: 25px;
    background: var(--contact-surface);
    box-shadow:
        0 35px 90px rgba(0, 0, 0, 0.48),
        0 0 0 1px rgba(255, 255, 255, 0.015);
}

/*
|--------------------------------------------------------------------------
| Painel informativo
|--------------------------------------------------------------------------
*/

.hora-contact-intro {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(44, 12, 30, 0.98),
            rgba(18, 12, 23, 1)
        );
}

.hora-contact-intro::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(229, 25, 76, 0.18);
    filter: blur(60px);
}

.hora-contact-intro::after {
    content: "";
    position: absolute;
    right: -160px;
    bottom: -170px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(106, 37, 155, 0.17);
    filter: blur(70px);
}

.hora-contact-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.23;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.026) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.026) 1px,
            transparent 1px
        );
    background-size: 36px 36px;
    mask-image:
        linear-gradient(
            to bottom,
            black,
            transparent 95%
        );
}

.hora-contact-intro-content {
    position: relative;
    z-index: 2;
    min-height: 100%;
    padding: 46px 40px 38px;
    display: flex;
    flex-direction: column;
}

.hora-contact-label {
    align-self: flex-start;
    padding: 7px 11px;
    color: #ffb6c8;
    border: 1px solid rgba(255, 89, 128, 0.22);
    border-radius: 999px;
    background: rgba(233, 30, 83, 0.08);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;
}

.hora-contact-heading {
    margin-top: 38px;
}

.hora-contact-heading-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 17px;
    background:
        linear-gradient(
            145deg,
            rgba(233, 30, 83, 0.26),
            rgba(116, 26, 102, 0.2)
        );
    box-shadow:
        0 17px 35px rgba(0, 0, 0, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    font-size: 22px;
}

.hora-contact-heading h1 {
    margin: 0 0 14px;
    color: var(--contact-text);
    font-size: 33px;
    line-height: 1.08;
    letter-spacing: -1.2px;
}

.hora-contact-heading p {
    margin: 0;
    color: var(--contact-text-soft);
    font-size: 13px;
    line-height: 1.7;
}

.hora-contact-page-text {
    margin-top: 18px;
    color: var(--contact-text-soft);
    font-size: 12px;
    line-height: 1.7;
}

.hora-contact-page-text p:last-child {
    margin-bottom: 0;
}

.hora-contact-topics {
    margin-top: 32px;
    display: grid;
    gap: 10px;
}

.hora-contact-topic {
    padding: 12px 13px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--contact-border);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.035);
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.hora-contact-topic:hover {
    transform: translateX(3px);
    border-color: rgba(255, 64, 110, 0.22);
    background: rgba(233, 30, 83, 0.055);
}

.hora-contact-topic > span {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contact-primary-light);
    border-radius: 9px;
    background: rgba(233, 30, 83, 0.09);
    font-size: 14px;
}

.hora-contact-topic strong {
    display: block;
    margin-bottom: 3px;
    color: #e8e8ec;
    font-size: 11px;
}

.hora-contact-topic small {
    display: block;
    color: #85858f;
    font-size: 9px;
    line-height: 1.45;
}

.hora-contact-tip {
    margin: auto 0 0;
    padding-top: 25px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #777781;
    font-size: 9px;
    line-height: 1.55;
}

.hora-contact-tip i {
    margin-top: 2px;
    color: var(--contact-primary-light);
}

/*
|--------------------------------------------------------------------------
| Área do formulário
|--------------------------------------------------------------------------
*/

.hora-contact-form-panel {
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            145deg,
            rgba(25, 25, 31, 0.99),
            rgba(17, 17, 22, 1)
        );
}

.hora-contact-form-content {
    width: 100%;
    max-width: 590px;
    margin: 0 auto;
    padding: 43px 45px;
}

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

.hora-contact-form-heading > span {
    display: block;
    margin-bottom: 10px;
    color: var(--contact-primary-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.hora-contact-form-heading h2 {
    margin: 0 0 9px;
    color: var(--contact-text);
    font-size: 29px;
    line-height: 1.15;
    letter-spacing: -0.9px;
}

.hora-contact-form-heading p {
    margin: 0;
    color: var(--contact-text-soft);
    font-size: 12px;
    line-height: 1.6;
}

/*
|--------------------------------------------------------------------------
| Mensagens
|--------------------------------------------------------------------------
*/

.hora-contact-alert {
    margin-bottom: 22px;
    padding: 13px 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid;
    border-radius: 10px;
    font-size: 11px;
    line-height: 1.55;
}

.hora-contact-alert i {
    margin-top: 2px;
    font-size: 14px;
}

.hora-contact-alert.is-success {
    color: #b9efcd;
    border-color: rgba(55, 189, 110, 0.24);
    background: rgba(32, 155, 82, 0.09);
}

.hora-contact-alert.is-error {
    color: #ffc1cf;
    border-color: rgba(255, 67, 112, 0.24);
    background: rgba(233, 30, 83, 0.09);
}

/*
|--------------------------------------------------------------------------
| Campos
|--------------------------------------------------------------------------
*/

.hora-contact-fields-row {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);
    gap: 14px;
}

.hora-contact-field {
    min-width: 0;
    margin-bottom: 18px;
}

.hora-contact-field label {
    display: block;
    margin-bottom: 8px;
    color: #dedee3;
    font-size: 11px;
    font-weight: 700;
}

.hora-contact-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.hora-contact-label-row small {
    margin-bottom: 8px;
    color: #686872;
    font-size: 9px;
}

.hora-contact-control {
    position: relative;
}

.hora-contact-control > i {
    position: absolute;
    top: 50%;
    left: 15px;
    z-index: 2;
    transform: translateY(-50%);
    color: #73737e;
    font-size: 14px;
    pointer-events: none;
    transition: color 0.2s ease;
}

.hora-contact-control input,
.hora-contact-control select,
.hora-contact-control textarea {
    width: 100%;
    outline: none;
    color: var(--contact-text);
    border: 1px solid var(--contact-border-strong);
    border-radius: 10px;
    background: rgba(8, 8, 12, 0.58);
    font-family: inherit;
    font-size: 12px;
    transition:
        border-color 0.2s ease,
        background-color 0.2s ease,
        box-shadow 0.2s ease;
}

.hora-contact-control input,
.hora-contact-control select {
    height: 49px;
    padding: 0 40px 0 42px;
}

.hora-contact-control textarea {
    min-height: 142px;
    padding: 15px 16px 15px 42px;
    resize: vertical;
    line-height: 1.6;
}

.hora-contact-control input::placeholder,
.hora-contact-control textarea::placeholder {
    color: #666671;
}

.hora-contact-control input:hover,
.hora-contact-control select:hover,
.hora-contact-control textarea:hover {
    border-color: rgba(255, 255, 255, 0.18);
}

.hora-contact-control input:focus,
.hora-contact-control select:focus,
.hora-contact-control textarea:focus {
    border-color: rgba(255, 49, 101, 0.65);
    background: rgba(12, 12, 16, 0.8);
    box-shadow:
        0 0 0 3px rgba(233, 30, 83, 0.09),
        0 8px 24px rgba(0, 0, 0, 0.15);
}

.hora-contact-control:focus-within > i {
    color: var(--contact-primary-light);
}

.hora-contact-select::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 16px;
    width: 7px;
    height: 7px;
    border-right: 1px solid #777781;
    border-bottom: 1px solid #777781;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

.hora-contact-control select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.hora-contact-control select option {
    color: #ffffff;
    background: #15151a;
}

.hora-contact-textarea > i {
    top: 18px;
    transform: none;
}

/*
|--------------------------------------------------------------------------
| Botão
|--------------------------------------------------------------------------
*/

.hora-contact-submit {
    position: relative;
    width: 100%;
    height: 51px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    cursor: pointer;
    color: #ffffff;
    border: 0;
    border-radius: 10px;
    background:
        linear-gradient(
            135deg,
            var(--contact-primary),
            #bd1241
        );
    box-shadow:
        0 13px 30px rgba(204, 18, 67, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.13);
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1px;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.hora-contact-submit::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -120%;
    width: 60%;
    height: 200%;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent
        );
    transform: rotate(20deg);
    transition: left 0.6s ease;
}

.hora-contact-submit:hover {
    transform: translateY(-2px);
    filter: brightness(1.07);
    box-shadow:
        0 17px 36px rgba(204, 18, 67, 0.31),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hora-contact-submit:hover::before {
    left: 150%;
}

.hora-contact-submit:active {
    transform: translateY(0);
}

.hora-contact-submit svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hora-contact-privacy {
    margin: 15px 0 0;
    color: #62626c;
    font-size: 9px;
    line-height: 1.5;
    text-align: center;
}

.hora-contact-honeypot {
    position: absolute !important;
    top: auto !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/*
|--------------------------------------------------------------------------
| Tablets
|--------------------------------------------------------------------------
*/

@media (max-width: 900px) {

    .hora-contact-page {
        padding: 32px 24px 45px;
    }

    .hora-contact-card {
        max-width: 680px;
        grid-template-columns: 1fr;
    }

    .hora-contact-intro-content {
        padding: 36px;
    }

    .hora-contact-heading {
        margin-top: 28px;
    }

    .hora-contact-heading-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 18px;
    }

    .hora-contact-heading h1 {
        font-size: 30px;
    }

    .hora-contact-topics {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 1fr);
    }

    .hora-contact-tip {
        margin-top: 25px;
    }

    .hora-contact-form-content {
        max-width: none;
        padding: 42px 38px;
    }
}

/*
|--------------------------------------------------------------------------
| Celulares
|--------------------------------------------------------------------------
*/

@media (max-width: 620px) {

    .hora-contact-page {
        min-height: auto;
        padding: 0 !important;
    }

    .hora-contact-card {
        min-height: auto;
        border-radius: 18px;
    }

    .hora-contact-intro-content {
        padding: 27px 23px 29px;
    }

    .hora-contact-label {
        font-size: 8px;
    }

    .hora-contact-heading {
        margin-top: 24px;
        text-align: center;
    }

    .hora-contact-heading-icon {
        margin-right: auto;
        margin-left: auto;
    }

    .hora-contact-heading h1 {
        font-size: 27px;
    }

    .hora-contact-heading p {
        font-size: 11px;
    }

    .hora-contact-page-text {
        text-align: center;
    }

    .hora-contact-topics {
        grid-template-columns: 1fr;
        margin-top: 25px;
    }

    .hora-contact-topic {
        padding: 11px 12px;
    }

    .hora-contact-tip {
        justify-content: center;
        text-align: center;
    }

    .hora-contact-form-content {
        padding: 34px 23px 30px;
    }

    .hora-contact-form-heading h2 {
        font-size: 25px;
    }

    .hora-contact-form-heading p {
        font-size: 11px;
    }

    .hora-contact-fields-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hora-contact-field {
        margin-bottom: 17px;
    }

    .hora-contact-control input,
    .hora-contact-control select {
        height: 48px;
    }

    .hora-contact-control textarea {
        min-height: 135px;
    }
}

@media (max-width: 390px) {

    .hora-contact-intro-content,
    .hora-contact-form-content {
        padding-right: 19px;
        padding-left: 19px;
    }

    .hora-contact-label-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 0;
    }
}

.hora-contact-captcha-status {
    min-height: 15px;
    margin: -5px 0 13px;
    color: #ffc1cf;
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

.hora-contact-submit:disabled {
    cursor: wait;
    opacity: 0.72;
    pointer-events: none;
    transform: none;
}

@media (max-width: 767px) {
    #back-to-top {
        display: none !important;
    }
}