﻿/* ============================================
   DESBLOQUEIE SEU RELÓGIO DE PONTO - CONTROL iD
   BEM · Mobile-first · CSS Puro
============================================ */

:root {
    --lp-unlock-orange:    #ff9900;
    --lp-unlock-orange-h:  #e68a00;
    --lp-unlock-navy:      #003366;
    --lp-unlock-navy-dk:   #002244;
    --lp-unlock-text:      #5d7899;
    --lp-unlock-soft:      #f0f4f8;
    --lp-unlock-white:     #ffffff;
    --lp-unlock-line:      #dce5ee;
    --lp-unlock-green:     #25d366;
    --lp-unlock-green-h:   #1cb956;
    --lp-unlock-shadow:    0 18px 50px rgba(0, 51, 102, 0.10);
    --lp-unlock-radius:    16px;
}

body {
    background: #ffffff;
}

.lp-unlock-page {
    background: var(--lp-unlock-white);
    color: var(--lp-unlock-text);
}

#footer {
    margin-top: 0;
}

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

.lp-unlock-hero {
    background: linear-gradient(135deg, #eef3f9 0%, #e4ecf5 100%);
    padding: clamp(80px, 10vw, 120px) 0 clamp(60px, 8vw, 96px);
    overflow: hidden;
    position: relative;
}

.lp-unlock-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 80% at 100% 50%, rgba(255, 153, 0, 0.07) 0%, transparent 65%);
    pointer-events: none;
}

.lp-unlock-hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}

.lp-unlock-hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.lp-unlock-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--lp-unlock-orange);
    background: rgba(255, 153, 0, 0.1);
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid rgba(255, 153, 0, 0.25);
}

.lp-unlock-hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    font-family: 'poppins', sans-serif;
    color: var(--lp-unlock-navy);
}

.lp-unlock-hero__title span {
    color: var(--lp-unlock-orange);
}

.lp-unlock-hero__text {
    font-size: clamp(0.95rem, 2.5vw, 1.05rem);
    color: var(--lp-unlock-text);
    line-height: 1.7;
    max-width: 520px;
}

.lp-unlock-hero__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 380px;
    margin-top: 8px;
}

.lp-unlock-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 15px 24px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.93rem;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    width: 100%;
}

.lp-unlock-hero__btn--email {
    background: var(--lp-unlock-navy);
    color: var(--lp-unlock-white);
}

.lp-unlock-hero__btn--email:hover {
    background: var(--lp-unlock-navy-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 51, 102, 0.28);
}

.lp-unlock-hero__btn--whatsapp {
    background: var(--lp-unlock-green);
    color: var(--lp-unlock-white);
}

.lp-unlock-hero__btn--whatsapp:hover {
    background: var(--lp-unlock-green-h);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32);
}

.lp-unlock-hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.lp-unlock-hero__image::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 153, 0, 0.09) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.lp-unlock-hero__img {
    width: min(100%, 460px);
    border-radius: var(--lp-unlock-radius);
    box-shadow: var(--lp-unlock-shadow);
    position: relative;
}

/* ============================================
   MOTIVOS DE BLOQUEIO
============================================ */

.lp-unlock-reasons {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--lp-unlock-white);
}

.lp-unlock-reasons__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(40px, 6vw, 72px);
    align-items: center;
}

.lp-unlock-reasons__image {
    display: flex;
    justify-content: center;
}

.lp-unlock-reasons__img {
    width: min(100%, 180px);
    border-radius: var(--lp-unlock-radius);
    box-shadow: var(--lp-unlock-shadow);
}

.lp-unlock-reasons__content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.lp-unlock-reasons__lock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    color: #ff8a00;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(12, 43, 78, 0.08);
    flex-shrink: 0;
}

.lp-unlock-reasons__lock svg {
    width: 36px;
    height: 36px;
}

.lp-unlock-reasons__title {
    font-size: clamp(1.5rem, 5vw, 2.1rem);
    font-weight: 800;
    color: var(--lp-unlock-navy);
    line-height: 1.2;
}

.lp-unlock-reasons__title span {
    color: var(--lp-unlock-orange);
}

.lp-unlock-reasons__sub {
    font-size: 0.95rem;
    color: var(--lp-unlock-text);
    margin-top: 0;
    line-height: 1.6;
}

.lp-unlock-reasons__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.lp-unlock-reasons__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.lp-unlock-reasons__check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--lp-unlock-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
    position: relative;
}

.lp-unlock-reasons__check::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
    display: block;
}

.lp-unlock-reasons__item strong {
    display: block;
    color: var(--lp-unlock-navy);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.lp-unlock-reasons__item p {
    font-size: 0.88rem;
    color: var(--lp-unlock-text);
    line-height: 1.55;
}

/* ============================================
   AVISO BANNER
============================================ */

.lp-unlock-notice {
    background: var(--lp-unlock-navy);
    padding: clamp(50px, 7vw, 80px) 0;
}

.lp-unlock-notice__inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--lp-unlock-radius);
    padding: clamp(32px, 5vw, 52px);
}

.lp-unlock-notice__card {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-unlock-notice__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 153, 0, 0.15);
    border-radius: 12px;
    color: var(--lp-unlock-orange);
}

.lp-unlock-notice__icon svg {
    width: 26px;
    height: 26px;
}

.lp-unlock-notice__icon--warn {
    background: rgba(255, 200, 80, 0.12);
    color: #ffcc44;
}

.lp-unlock-notice__label {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 800;
    color: var(--lp-unlock-white);
}

.lp-unlock-notice__main-icon {
    width: 64px;
    height: 64px;
    flex: 0 0 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff8a00;
    border-radius: 15px;
}

.lp-unlock-notice__main-icon svg {
    width: 36px;
    height: 36px;
}

.lp-unlock-notice__text {
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
}

.lp-unlock-notice__text strong {
    color: var(--lp-unlock-orange);
    font-weight: 700;
}

.lp-unlock-notice__divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
}

/* ============================================
   SOLUÇÕES — CARDS
============================================ */

.lp-unlock-solutions {
    padding: 50px 0 94px;
    background: #ffffff;
}

.lp-unlock-solutions__header {
    text-align: center;
    margin-bottom: 18px;
}

.lp-unlock-solutions__title {
    font-size: clamp(2rem, 3vw, 2.42rem);
    font-weight: 900;
    color: #003366;
    line-height: 1.1;
    margin-bottom: 10px;
}

.lp-unlock-solutions__subtitle {
    color: #4b5363;
    font-size: 1.42rem;
    line-height: 1.25;
}

.lp-unlock-solutions__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 470px));
    justify-content: center;
    gap: 20px;
}

.lp-unlock-solutions__card {
    min-height: 340px;
    background: #e1e1e1;
    border: 0;
    border-radius: 18px;
    padding: 20px 34px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    box-shadow: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lp-unlock-solutions__card:hover {
    transform: none;
    box-shadow: none;
}

.lp-unlock-solutions__icon {
    width: 112px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c9c9c9;
    border-radius: 10px;
    color: #ffffff;
    margin-bottom: 22px;
}

.lp-unlock-solutions__icon img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.lp-unlock-solutions__icon--green {
    background: #c9c9c9;
    color: #ffffff;
}

.lp-unlock-solutions__icon--green img {
    width: 62px;
    height: 62px;
    border-radius: 50%;
}

.lp-unlock-solutions__card-title {
    font-family: 'poppins', sans-serif;
    font-size: 1.28rem;
    font-weight: 600;
    color: #4c5663;
    line-height: 1.25;
    margin-bottom: 18px;
}

.lp-unlock-solutions__card-text {
    max-width: 300px;
    font-size: 1.05rem;
    color: #4c5663;
    line-height: 1.15;
    flex: 1;
    margin: 0 auto 20px;
}

.lp-unlock-solutions__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 232px;
    min-height: 39px;
    padding: 9px 24px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.95rem;
    background: #ff9900;
    color: #ffffff;
    transition: background 0.2s ease, transform 0.2s ease;
    margin-top: 0;
    box-shadow: none;
    align-self: center;
}

.lp-unlock-solutions__btn:hover {
    background: #f28c00;
    transform: none;
}

.lp-unlock-solutions__btn--green {
    background: #ff9900;
}

.lp-unlock-solutions__btn--green:hover {
    background: #f28c00;
    box-shadow: none;
}

/* ============================================
   FORMULÁRIO DE DESBLOQUEIO
============================================ */

.lp-unlock-form {
    position: relative;
    overflow: hidden;
    background: var(--lp-unlock-navy);
    padding: clamp(60px, 8vw, 100px) 0;
}

.lp-unlock-form::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/media/page-desbloqueio-relogio/background-form-email.webp") center / cover no-repeat;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 0.75s ease, transform 1.1s ease;
    pointer-events: none;
}

.lp-unlock-form::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    opacity: 0.28;
    transform: translateX(-100%);
    animation: lp-unlock-form-sheen 1.6s ease-in-out infinite;
    pointer-events: none;
}

.lp-unlock-form.is-bg-loaded::before {
    opacity: 1;
    transform: scale(1);
}

.lp-unlock-form.is-bg-loaded::after {
    opacity: 0;
    animation: none;
    transition: opacity 0.25s ease;
}

.lp-unlock-form__wrapper {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto;
}

@keyframes lp-unlock-form-sheen {
    to {
        transform: translateX(100%);
    }
}

@keyframes lp-unlock-hero-sheen {
    to {
        transform: translateX(100%);
    }
}

.lp-unlock-form__header {
    text-align: center;
    margin-bottom: 40px;
}

.lp-unlock-form__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 800;
    color: var(--lp-unlock-white);
    margin-bottom: 12px;
}

.lp-unlock-form__sub {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.lp-unlock-form__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lp-unlock-form__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.lp-unlock-form__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-unlock-form__field--full {
    grid-column: 1 / -1;
}

.lp-unlock-form__label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.7px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
}

.lp-unlock-form__input {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 0.95rem;
    color: var(--lp-unlock-white);
    font-family: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
    width: 100%;
}

.lp-unlock-form__input::placeholder {
    color: rgba(255, 255, 255, 0.32);
}

.lp-unlock-form__input:focus {
    border-color: var(--lp-unlock-orange);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.15);
}

.lp-unlock-form__input--textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.lp-unlock-form__submit {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.lp-unlock-form__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 52px;
    border-radius: 30px;
    background: var(--lp-unlock-orange);
    color: var(--lp-unlock-white);
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 6px 28px rgba(255, 153, 0, 0.38);
}

.lp-unlock-form__btn:hover {
    background: var(--lp-unlock-orange-h);
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(255, 153, 0, 0.48);
}

.lp-unlock-form__btn:active {
    transform: translateY(0);
}

/* ============================================
   BATERIA RTC
============================================ */

.lp-unlock-rtc {
    padding: 74px 0 68px;
    background: #f1f3f6;
    border-top: 6px solid #071e38;
}

.lp-unlock-rtc__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
}

.lp-unlock-rtc__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    order: unset;
}

.lp-unlock-rtc__intro-title {
    color: #003366;
    font-size: clamp(2rem, 3vw, 2.32rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 28px;
}

.lp-unlock-rtc__intro-title span {
    color: #555a63;
}

.lp-unlock-rtc__title {
    color: #777c84;
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.58rem);
    font-weight: 300;
    line-height: 1.08;
    margin-top: 16px;
}

.lp-unlock-rtc__title span {
    color: #003366;
    font-weight: 900;
}

.lp-unlock-rtc__text {
    max-width: 1120px;
    color: #4d5664;
    font-size: 1.08rem;
    line-height: 1.16;
    margin: 0 auto;
}

.lp-unlock-rtc__alert {
    display: block;
    max-width: 1000px;
    padding: 0;
    margin: 2px auto 0;
    background: transparent;
    border: 0;
    color: #54595f;
    font-size: 1.08rem;
    font-style: italic;
    font-weight: 700;
    line-height: 1.25;
}

.lp-unlock-rtc__alert span {
    color: #f5a400;
    font-style: normal;
}

.lp-unlock-rtc__alert p {
    font: inherit;
    color: inherit;
    line-height: inherit;
}

.lp-unlock-rtc__alert strong {
    font-weight: 900;
    color: inherit;
}

.lp-unlock-rtc__image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    order: unset;
}

.lp-unlock-rtc__img {
    width: min(100%, 650px);
    border-radius: 0;
    box-shadow: none;
}

.lp-unlock-rtc__warning {
    position: absolute;
    top: -20px;
    left: 2px;
    z-index: 1;
    width: 92px;
    height: 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffc21a;
    color: #ffffff;
    border-radius: 14px;
    font-size: 4.1rem;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
}

/* ============================================
   SUPORTE / CONTATO
============================================ */

.lp-unlock-support {
    padding: 34px 0 64px;
    background: #ffffff;
}

.lp-unlock-support__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 42px 150px;
    align-items: start;
    max-width: 1120px;
    margin: 0 auto;
}

.lp-unlock-support__copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lp-unlock-support__title {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 37px;
    font-weight: 400;
    color: #7a7a7a;
    line-height: 1.15;
}

.lp-unlock-support__title strong {
    color: #2b4e74;
    font-weight: 800;
}

.lp-unlock-support__copy p {
    max-width: 560px;
    color: #7a7a7a;
    font-size: 20px;
    line-height: 1.4;
}

.lp-unlock-support__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-top: 18px;
}

.lp-unlock-support__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 58px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.lp-unlock-support__btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.lp-unlock-support__btn--wa {
    background: #ff9900;
    color: #ffffff;
}

.lp-unlock-support__btn--wa:hover {
    background: #e68a00;
}

.lp-unlock-support__btn--ticket {
    width: 82%;
    min-height: 58px;
    background: #f0f2f5;
    color: #00345f;
}

.lp-unlock-support__btn--ticket:hover {
    background: #e4e8ee;
    color: #00345f;
}

.lp-unlock-support__contacts {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 96px;
    padding-top: 4px;
}

.lp-unlock-support__contact h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 14px;
    padding: 0;
    border: 0;
    color: #496f95;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.1;
}

.lp-unlock-support__contact h3::before {
    content: '';
    display: block;
    width: 79px;
    height: 15px;
    background: #ec9b2e;
    flex: 0 0 79px;
}

.lp-unlock-support__contact p {
    color: #003366;
    font-size: 16px;
    line-height: 1.7;
}

.lp-unlock-support__contact p strong { color: #2b4e74; }

.lp-unlock-support__contact a {
    color: inherit;
}

.lp-unlock-support__contact a:hover {
    color: var(--lp-unlock-navy);
}

/* ============================================
   RESPONSIVE — TABLET (≥ 640px)
============================================ */

@media (min-width: 640px) {
    .lp-unlock-hero__content {
        align-items: center;
    }

    .lp-unlock-hero__actions {
        flex-direction: row;
        max-width: unset;
    }

    .lp-unlock-hero__btn {
        width: auto;
    }

    .lp-unlock-form__row {
        grid-template-columns: 1fr 1fr;
    }

    .lp-unlock-solutions__grid {
        grid-template-columns: 1fr 1fr;
    }

    .lp-unlock-notice__inner {
        flex-direction: row;
        align-items: center;
    }

    .lp-unlock-notice__card {
        flex: 1;
    }

    .lp-unlock-notice__divider {
        width: 1px;
        height: 110px;
        flex-shrink: 0;
    }
}

/* ============================================
   RESPONSIVE — DESKTOP (≥ 900px)
============================================ */

@media (min-width: 900px) {
    .lp-unlock-hero__grid {
        grid-template-columns: 1fr 1fr;
    }

    .lp-unlock-hero__content {
        align-items: flex-start;
        text-align: left;
    }

    .lp-unlock-hero__text {
        max-width: 480px;
    }

    .lp-unlock-hero__actions {
        justify-content: flex-start;
    }

    .lp-unlock-reasons__grid {
        grid-template-columns: 1fr 1.2fr;
    }

}

/* ============================================
   PRIMEIRA DOBRA - REFERENCIA CONTROL ID
============================================ */

#topbar .container,
#header .container,
.lp-unlock-page > section > .container {
    max-width: 1310px;
}

#header {
    box-shadow: 0 2px 14px rgba(0, 18, 42, 0.08);
}

.nav-actions .btn-trial {
    background: #ff8a00;
    box-shadow: 0 8px 22px rgba(255, 138, 0, 0.28);
}

.nav-actions .btn-trial:hover {
    background: #ee7d00;
}

.lp-unlock-hero {
    isolation: isolate;
    min-height: 520px;
    padding: 38px 0 36px;
    background: #06172b;
    color: #ffffff;
}

.lp-unlock-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    background: url("/assets/media/page-desbloqueio-relogio/background-desbloqueio.webp") center / cover no-repeat;
    opacity: 0;
    transform: scale(1.015);
    transition: opacity 0.75s ease, transform 1.1s ease;
    pointer-events: none;
}

.lp-unlock-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    display: block;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
    opacity: 0.24;
    transform: translateX(-100%);
    animation: lp-unlock-hero-sheen 1.6s ease-in-out infinite;
    pointer-events: none;
}

.lp-unlock-hero.is-bg-loaded::before {
    opacity: 1;
    transform: scale(1);
}

.lp-unlock-hero.is-bg-loaded::after {
    opacity: 0;
    animation: none;
    transition: opacity 0.25s ease;
}

.lp-unlock-hero .container {
    position: relative;
    z-index: 1;
}

.lp-unlock-hero__grid {
    grid-template-columns: minmax(0, 560px) minmax(0, 620px);
    justify-content: space-between;
    gap: 42px;
    min-height: 446px;
}

.lp-unlock-hero__content {
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    gap: 17px;
    padding-left: 0;
}

.lp-unlock-hero__eyebrow {
    gap: 10px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #ff8a00;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0;
}

.lp-unlock-hero__eyebrow::before {
    content: "";
    width: 16px;
    height: 8px;
    display: inline-block;
    background: #ff8a00;
    clip-path: polygon(0 15%, 100% 0, 78% 100%, 0 65%);
}

.lp-unlock-hero__title {
    max-width: 560px;
    color: #ffffff;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 0;
}

.lp-unlock-hero__title span {
    color: #ff8a00;
}

.lp-unlock-hero__text {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.16rem;
    line-height: 1.48;
}

.lp-unlock-hero__actions {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    max-width: none;
    margin-top: 12px;
}

.lp-unlock-hero__btn {
    width: auto;
    min-height: 58px;
    min-width: 324px;
    border-radius: 12px;
    padding: 16px 22px;
    font-size: 0.98rem;
    font-weight: 800;
    letter-spacing: 0;
    box-shadow: none;
}

.lp-unlock-hero__btn svg {
    width: 27px;
    height: 27px;
}

.lp-unlock-hero__btn--email {
    background: #ff8a00;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(255, 138, 0, 0.28);
}

.lp-unlock-hero__btn--email:hover {
    background: #ee7d00;
}

.lp-unlock-hero__btn--whatsapp {
    background: rgba(7, 28, 53, 0.28);
    border: 2px solid rgba(255, 255, 255, 0.86);
    color: #ffffff;
}

.lp-unlock-hero__btn--whatsapp:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.lp-unlock-hero__image {
    min-height: 446px;
    right: -150px;
    background: url("/assets/media/page-desbloqueio-relogio/retangulo-background-desbloqueio.webp") center / 100% 100% no-repeat;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.lp-unlock-hero__image::before {
    display: none;
}

.lp-unlock-hero__img {
    width: min(88%, 560px);
    max-height: 365px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: none;
    transform: translate(18px, 10px);
    position: relative;
    z-index: 1;
}

@media (min-width: 1320px) {
    .lp-unlock-page > .lp-unlock-hero > .container {
        max-width: 1222px;
    }
}

@media (min-width: 760px) {

.lp-unlock-reasons {
    padding: 30px 0 20px;
    background: #f7f9fc;
}

.lp-unlock-reasons__grid {
    grid-template-columns: minmax(0, 635px) minmax(0, 520px);
    justify-content: space-between;
    gap: 38px;
    align-items: stretch;
}

.lp-unlock-reasons__intro-card {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    min-height: 267px;
    padding: 22px 26px;
    background: #ffffff;
    border: 1px solid rgba(227, 233, 241, 0.9);
    border-radius: 20px;
    box-shadow: 0 18px 44px rgba(12, 43, 78, 0.1);
}

.lp-unlock-reasons__image {
    justify-content: flex-start;
}

.lp-unlock-reasons__img {
    width: 100%;
    max-width: 220px;
    border-radius: 10px;
    box-shadow: none;
}

.lp-unlock-reasons__intro {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-unlock-reasons__title {
    color: #071e38;
    font-size: 1.82rem;
    line-height: 1.16;
    letter-spacing: 0;
}

.lp-unlock-reasons__title span {
    color: #ff8a00;
}

.lp-unlock-reasons__sub {
    margin: 0;
    color: #53657a;
    font-size: 0.98rem;
    line-height: 1.42;
}

.lp-unlock-reasons__accent {
    width: 56px;
    height: 4px;
    background: #ff8a00;
    border-radius: 999px;
}

.lp-unlock-reasons__content {
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 18px;
    align-content: center;
    padding: 8px 0 8px 0;
}

.lp-unlock-reasons__lock {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ff8a00;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(12, 43, 78, 0.08);
}

.lp-unlock-reasons__lock svg {
    width: 38px;
    height: 38px;
}

.lp-unlock-reasons__lead {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    color: #071e38;
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.24;
    margin: 0;
}

.lp-unlock-reasons__lead strong {
    color: #ff8a00;
}

.lp-unlock-reasons__list {
    gap: 0;
    grid-column: 1 / -1;
}

.lp-unlock-reasons__item {
    align-items: center;
    gap: 17px;
    padding: 11px 0;
    border-bottom: 1px solid #dbe1e9;
    color: #303f50;
    font-size: 0.98rem;
    line-height: 1.35;
}

.lp-unlock-reasons__item:last-child {
    border-bottom: 0;
}

.lp-unlock-reasons__check {
    width: 18px;
    height: 18px;
    margin-top: 0;
    background: #ff8a00;
}

.lp-unlock-reasons__check::after {
    width: 8px;
    height: 4px;
    border-left-width: 2px;
    border-bottom-width: 2px;
}

.lp-unlock-notice {
    background: #f7f9fc;
    padding: 0 0 14px;
}

.lp-unlock-notice__inner {
    display: flex;
    align-items: center;
    gap: 30px;
    min-height: 113px;
    padding: 18px 20px;
    background: linear-gradient(90deg, #fff7ed, #ffffff 55%, #fff7ed);
    border: 1px solid rgba(255, 138, 0, 0.58);
    border-radius: 14px;
    box-shadow: none;
}

.lp-unlock-notice__main-icon {
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: #ff8a00;
    border-radius: 15px;
}

.lp-unlock-notice__main-icon svg {
    width: 40px;
    height: 40px;
}

.lp-unlock-notice__copy {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    gap: 8px 32px;
    align-items: start;
}

.lp-unlock-notice__title {
    grid-column: 1 / -1;
    color: #071e38;
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1.2;
}

.lp-unlock-notice__card {
    gap: 0;
}

.lp-unlock-notice__text {
    color: #23364a;
    font-size: 0.92rem;
    line-height: 1.36;
}

.lp-unlock-notice__text strong {
    color: #071e38;
    font-weight: 900;
}

.lp-unlock-notice__divider {
    width: 1px;
    height: 44px;
    background: #e3d8cc;
    align-self: center;
}

} /* end @media (min-width: 760px) */

@media (max-width: 1090px) {
    .lp-unlock-hero__grid,
    .lp-unlock-reasons__grid,
    .lp-unlock-support__inner {
        grid-template-columns: 1fr;
    }

    .lp-unlock-hero__content {
        align-items: center;
        text-align: center;
        padding-left: 0;
    }

    .lp-unlock-hero__text {
        max-width: 700px;
    }

    .lp-unlock-hero__actions {
        justify-content: center;
    }

    .lp-unlock-hero__image {
        min-height: 360px;
    }

    .lp-unlock-reasons__content {
        padding: 0;
    }

    .lp-unlock-support__copy {
        align-items: center;
        text-align: center;
    }

    .lp-unlock-support__actions {
        width: min(100%, 420px);
        margin: 0 auto;
    }
}

@media (max-width: 760px) {
    .lp-unlock-hero {
        min-height: auto;
        padding: 44px 0 38px;
    }

    .lp-unlock-hero__title {
        font-size: clamp(2.45rem, 12vw, 3.45rem);
    }

    .lp-unlock-hero__actions,
    .lp-unlock-notice__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .lp-unlock-hero__btn {
        width: 100%;
        min-width: 0;
    }

    .lp-unlock-hero__image {
        min-height: 290px;
        border-radius: 22px;
    }

    .lp-unlock-hero__img {
        width: 112%;
        transform: translate(8px, 10px);
    }

    .lp-unlock-reasons__intro-card {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .lp-unlock-reasons__img {
        max-width: none;
    }

    .lp-unlock-reasons__content {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .lp-unlock-reasons__lock {
        grid-row: auto;
    }

    .lp-unlock-notice__main-icon {
        width: 64px;
        height: 64px;
        flex-basis: 64px;
    }

    .lp-unlock-notice__copy {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lp-unlock-notice__divider {
        width: 100%;
        height: 1px;
    }
}

@media (min-width: 640px) {
    .lp-unlock-solutions__grid {
        grid-template-columns: repeat(2, minmax(0, 470px));
    }
}

@media (max-width: 980px) {
    .lp-unlock-solutions {
        padding: 42px 0 64px;
    }

    .lp-unlock-solutions__subtitle {
        font-size: 1.12rem;
    }

    .lp-unlock-solutions__grid {
        grid-template-columns: minmax(0, 470px);
    }

    .lp-unlock-solutions__card {
        min-height: 320px;
    }
}

/* ============================================
   RESPONSIVE HARDENING
============================================ */
@media (max-width: 1090px) {
    .lp-unlock-hero__image {
        right: auto;
        width: min(100%, 640px);
        margin-inline: auto;
    }

    .lp-unlock-hero__img {
        transform: translate(0, 8px);
    }

    .lp-unlock-reasons__grid {
        max-width: 760px;
        margin-inline: auto;
    }
}

@media (max-width: 760px) {
    .lp-unlock-hero__content {
        gap: 14px;
    }

    .lp-unlock-hero__title br {
        display: none;
    }

    .lp-unlock-hero__text {
        font-size: 1rem;
    }

    .lp-unlock-hero__image {
        overflow: hidden;
    }

    .lp-unlock-solutions__grid {
        grid-template-columns: 1fr;
    }

    .lp-unlock-solutions__card {
        min-height: auto;
        padding: 24px 20px;
    }

    .lp-unlock-form__btn,
    .lp-unlock-solutions__btn {
        width: 100%;
        min-width: 0;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }

    .lp-unlock-rtc {
        padding: 56px 0;
    }

    .lp-unlock-rtc__warning {
        width: 64px;
        height: 64px;
        font-size: 3rem;
    }

    .lp-unlock-support {
        padding: 48px 0;
    }

    .lp-unlock-support__inner {
        gap: 28px;
    }

    .lp-unlock-support__contacts {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .lp-unlock-support__btn,
    .lp-unlock-support__btn--ticket {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .lp-unlock-hero__title {
        font-size: 2.2rem;
    }

    .lp-unlock-reasons__lead {
        font-size: 1.08rem;
    }

    .lp-unlock-notice__inner,
    .lp-unlock-reasons__intro-card {
        border-radius: 12px;
    }

    .lp-unlock-solutions__subtitle {
        font-size: 1rem;
    }

    .lp-unlock-form__header {
        margin-bottom: 28px;
    }

    .lp-unlock-rtc__title br {
        display: none;
    }

    .lp-unlock-rtc__text,
    .lp-unlock-rtc__alert {
        font-size: 0.96rem;
        line-height: 1.45;
    }
}
