* {
    box-sizing: border-box;
}

.secret-showcase {
    width: min(1160px, calc(100% - 40px));
    aspect-ratio: 16 / 9;
    container-type: inline-size;

    min-height: 600px;
    max-height: 760px;

    margin: 90px auto 0;

    position: relative;
    overflow: hidden;

    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 28px;

    display: grid;
    grid-template-columns: 53% 47%;
    align-items: center;

    padding: clamp(30px, 3.5cqw, 44px);

    color: #fff;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    background:
        radial-gradient(
            circle at 12% 8%,
            rgba(139, 92, 246, .18),
            transparent 34%
        ),
        radial-gradient(
            circle at 88% 32%,
            rgba(236, 72, 153, .13),
            transparent 36%
        ),
        linear-gradient(
            135deg,
            #080b17 0%,
            #0d1020 52%,
            #080b17 100%
        );
}


/* ========================================
   FUNDO
======================================== */

.showcase-bg {
    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

    pointer-events: none;
}

.bg-1 {
    width: 500px;
    height: 500px;

    background: rgba(0, 119, 255, .22);

    top: -200px;
    left: -100px;

    animation: bgMove1 9s ease-in-out infinite alternate;
}

.bg-2 {
    width: 600px;
    height: 600px;

    background: rgba(137, 54, 255, .17);

    bottom: -300px;
    right: -100px;

    animation: bgMove2 10s ease-in-out infinite alternate;
}

@keyframes bgMove1 {

    to {
        transform: translate(100px, 70px) scale(1.2);
    }

}

@keyframes bgMove2 {

    to {
        transform: translate(-120px, -60px) scale(1.15);
    }

}


/* ========================================
   CONTEÚDO
======================================== */

.showcase-content {
    position: relative;
    z-index: 5;
}

.brandSM {
    display: flex;
    align-items: center;

    gap: 14px;

}

.brandSM-icon {
    width: 58px;
    height: 58px;

    border-radius: 16px;

    display: grid;
    place-items: center;

    font-size: 29px;

    background:
        linear-gradient(
            135deg,
            #00c2ff,
            #1764ff
        );

    box-shadow:
        0 10px 35px rgba(0, 132, 255, .35);
}

.brandSM strong {
    display: block;

    font-size: 27px;

    letter-spacing: -.5px;
}

.brandSM strong span {
    color: #16b9ff;
}

.brandSM small {
    display: block;

    margin-top: 3px;

    color: rgba(255,255,255,.55);

    text-transform: uppercase;

    font-size: 9px;

    letter-spacing: 2px;
}


/* ========================================
   BADGE
======================================== */

.badge {
    display: inline-flex;
    align-items: center;

    padding: 9px 16px;

    border-radius: 30px;

    margin-bottom: 22px;

    font-size: 14px;
    font-weight: 600;

    color: #9ddcff;

    background: rgba(0, 160, 255, .1);

    border: 1px solid rgba(93, 197, 255, .17);
}


/* ========================================
   TÍTULO
======================================== */

.showcase-text h1 {

    max-width: 820px;

    margin: 0;

    font-size: clamp(42px, 4.4cqw, 83px);

    line-height: .98;

    letter-spacing: -3px;

    font-weight: 800;
}

.showcase-text h1 span {

    display: block;

    margin-top: 10px;

    color: transparent;

    background:
        linear-gradient(
            90deg,
            #19c2ff,
            #3575ff,
            #9766ff
        );

    -webkit-background-clip: text;
    background-clip: text;
}

.showcase-text > p {

    max-width: 720px;

    margin:
        30px 0
        34px;

    color: rgba(255,255,255,.70);

    font-size: clamp(16px, 1.25cqw, 23px);

    line-height: 1.65;
}


/* ========================================
   PASSOS
======================================== */

.steps {

    display: flex;
    flex-direction: column;

    gap: 12px;

    max-width: 620px;

    margin-bottom: 38px;
}

.step {

    display: flex;
    align-items: center;

    gap: 16px;

    padding: 11px 15px;

    border-radius: 15px;

    transition: .3s;

    border: 1px solid transparent;

    animation:
        stepGlow 6s infinite;
}

.step:nth-child(2) {
    animation-delay: 2s;
}

.step:nth-child(3) {
    animation-delay: 4s;
}

@keyframes stepGlow {

    0%,
    25%,
    100% {

        background: transparent;

        border-color: transparent;

        transform: translateX(0);
    }

    8%,
    18% {

        background: rgba(255,255,255,.055);

        border-color: rgba(255,255,255,.07);

        transform: translateX(8px);
    }

}

.step-icon {

    width: 48px;
    height: 48px;

    min-width: 48px;

    border-radius: 13px;

    display: grid;
    place-items: center;

    font-size: 21px;

    background:
        linear-gradient(
            135deg,
            rgba(0,174,255,.2),
            rgba(93,73,255,.16)
        );

    border:
        1px solid rgba(255,255,255,.08);
}

.step strong {

    display: block;

    margin-bottom: 3px;

    font-size: 16px;
}

.step span {

    color: rgba(255,255,255,.5);

    font-size: 13px;
}


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

.showcase-button {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 17px;

    min-width: 265px;

    padding: 18px 30px;

    border-radius: 50px;

    text-decoration: none;

    color: white;

    font-weight: 700;

    background:
        linear-gradient(
            90deg,
            #00b4ff,
            #1764ff
        );

    box-shadow:
        0 12px 45px rgba(0, 128, 255, .33);

    animation:
        buttonPulse 2.5s ease-in-out infinite;
}

.showcase-button span {

    font-size: 22px;

    transition: .3s;
}

.showcase-button:hover span {

    transform: translateX(6px);
}

@keyframes buttonPulse {

    0%,
    100% {

        box-shadow:
            0 12px 40px rgba(0, 128, 255, .27);
    }

    50% {

        box-shadow:
            0 12px 60px rgba(0, 174, 255, .55);
    }

}


/* ========================================
   ÁREA CELULAR
======================================== */

.phone-area {

    height: 100%;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 4;
}


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

.phone {

    width: clamp(280px, 25cqw, 475px);

    position: relative;

    transform:
        perspective(1200px)
        rotateY(-8deg)
        rotateX(3deg)
        rotateZ(3deg);

    animation:
        phoneFloat 5s ease-in-out infinite;

    z-index: 10;
}

@keyframes phoneFloat {

    0%,
    100% {

        transform:
            perspective(1200px)
            rotateY(-8deg)
            rotateX(3deg)
            rotateZ(3deg)
            translateY(0);
    }

    50% {

        transform:
            perspective(1200px)
            rotateY(-4deg)
            rotateX(1deg)
            rotateZ(1deg)
            translateY(-22px);
    }

}

.phone-border {

    padding: 9px;

    border-radius: 55px;

    background:
        linear-gradient(
            135deg,
            #667183,
            #141720 35%,
            #030305 55%,
            #777f8b 100%
        );

    box-shadow:
        0 60px 120px rgba(0,0,0,.5),
        0 0 80px rgba(42,101,255,.18);
}

.phone-screen {

    aspect-ratio: 9 / 19;

    overflow: hidden;

    position: relative;

    border-radius: 47px;

    background:
        linear-gradient(
            180deg,
            #f7f9ff,
            #eef2fb
        );
}

.phone-notch {

    position: absolute;

    width: 34%;
    height: 27px;

    left: 50%;
    top: 11px;

    transform: translateX(-50%);

    border-radius: 20px;

    background: #020206;

    z-index: 20;
}


/* ========================================
   HEADER DO CELULAR
======================================== */

.phone-header {

    height: 115px;

    padding:
        52px 26px
        18px;

    display: flex;
    align-items: center;

    gap: 10px;

    color: #fff;

    background:
        linear-gradient(
            135deg,
            #091534,
            #142b67
        );
}

.mini-logo {

    width: 38px;
    height: 38px;

    border-radius: 10px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            #00bfff,
            #2065ff
        );
}

.phone-header strong {

    display: block;

    font-size: 13px;
}

.phone-header span {

    display: block;

    margin-top: 2px;

    color: rgba(255,255,255,.5);

    font-size: 9px;
}


/* ========================================
   CONTEÚDO CELULAR
======================================== */

.phone-page {

    padding: 34px 25px;
}

.phone-title {

    margin-bottom: 8px;

    color: #0b1633;

    font-size: 23px;

    font-weight: 800;
}

.phone-subtitle {

    color: #78839d;

    font-size: 12px;

    line-height: 1.5;
}


/* ========================================
   DIGITAÇÃO
======================================== */

.typing-box {

    height: 150px;

    margin-top: 25px;

    padding: 20px;

    position: relative;

    overflow: hidden;

    border-radius: 17px;

    color: #1a2642;

    background: white;

    border: 1px solid #dde3ee;

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

.typing {

    position: absolute;

    left: 20px;
    right: 20px;

    opacity: 0;

    font-size: 15px;

    line-height: 1.5;

    animation:
        typingMessages 9s infinite;
}

.typing-1 {
    animation-delay: 0s;
}

.typing-2 {
    animation-delay: 3s;
}

.typing-3 {
    animation-delay: 6s;
}

@keyframes typingMessages {

    0% {

        opacity: 0;

        transform: translateY(15px);
    }

    8%,
    28% {

        opacity: 1;

        transform: translateY(0);
    }

    33%,
    100% {

        opacity: 0;

        transform: translateY(-10px);
    }

}


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

.fake-send-button {

    margin-top: 18px;

    padding: 15px;

    text-align: center;

    border-radius: 13px;

    color: white;

    font-weight: 700;

    font-size: 13px;

    background:
        linear-gradient(
            90deg,
            #087dff,
            #2252f8
        );

    box-shadow:
        0 12px 30px rgba(34,82,248,.2);

    animation:
        sendButton 3s ease-in-out infinite;
}

@keyframes sendButton {

    0%,
    65%,
    100% {

        transform: scale(1);
    }

    72% {

        transform: scale(.96);
    }

    78% {

        transform: scale(1.03);
    }

}

.secure-info {

    margin-top: 18px;

    text-align: center;

    color: #66748e;

    font-size: 11px;
}


/* ========================================
   NOTIFICAÇÕES FLUTUANTES
======================================== */

.floating {

    position: absolute;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    border-radius: 17px;

    color: white;

    background:
        rgba(12, 24, 59, .78);

    backdrop-filter: blur(18px);

    border:
        1px solid rgba(255,255,255,.12);

    box-shadow:
        0 25px 70px rgba(0,0,0,.25);

    z-index: 15;
}

.floating small {

    display: block;

    margin-bottom: 3px;

    color: rgba(255,255,255,.55);

    font-size: 10px;
}

.floating strong {

    display: block;

    font-size: 12px;
}

.float-icon,
.notification-icon {

    width: 42px;
    height: 42px;

    border-radius: 12px;

    display: grid;
    place-items: center;

    background: rgba(42, 122, 255, .18);
}

.floating-link {

    left: -6%;
    top: 23%;

    animation:
        floatingLink 7s ease-in-out infinite;
}

@keyframes floatingLink {

    0%,
    100% {

        transform:
            translateY(0)
            translateX(0);

        opacity: .95;
    }

    50% {

        transform:
            translateY(-18px)
            translateX(8px);

        opacity: 1;
    }

}

.floating-notification {

    right: -1%;
    top: 38%;

    animation:
        notificationPop 5s infinite;
}

@keyframes notificationPop {

    0%,
    15% {

        opacity: 0;

        transform:
            translateX(45px)
            scale(.9);
    }

    25%,
    70% {

        opacity: 1;

        transform:
            translateX(0)
            scale(1);
    }

    80%,
    100% {

        opacity: 0;

        transform:
            translateY(-15px)
            scale(.97);
    }

}


/* ========================================
   BALÕES DE MENSAGEM
======================================== */

.message-balloon {

    position: absolute;

    min-width: 235px;

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    border-radius: 15px;

    opacity: 0;

    color: #fff;

    background:
        rgba(15, 26, 61, .76);

    backdrop-filter: blur(14px);

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

    box-shadow:
        0 20px 50px rgba(0,0,0,.3);

    z-index: 7;

    animation:
        messageFly 9s infinite;
}

.message-balloon small {

    display: block;

    color: rgba(255,255,255,.5);

    font-size: 9px;

    margin-bottom: 2px;
}

.message-balloon strong {

    font-size: 11px;
}

.avatar {

    width: 36px;
    height: 36px;

    border-radius: 50%;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            #ffb34c,
            #ff758c
        );
}

.avatar-purple {

    background:
        linear-gradient(
            135deg,
            #b55cff,
            #5d64ff
        );
}

.avatar-green {

    background:
        linear-gradient(
            135deg,
            #1fd6a3,
            #15a874
        );
}

.msg-1 {

    right: -4%;
    bottom: 25%;

    animation-delay: 0s;
}

.msg-2 {

    left: -2%;
    bottom: 16%;

    animation-delay: 3s;
}

.msg-3 {

    right: 7%;
    bottom: 8%;

    animation-delay: 6s;
}

@keyframes messageFly {

    0% {

        opacity: 0;

        transform:
            translateY(30px)
            scale(.9);
    }

    8%,
    27% {

        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }

    34%,
    100% {

        opacity: 0;

        transform:
            translateY(-30px)
            scale(.97);
    }

}


/* ========================================
   ESCALA DO BLOCO INCORPORADO
======================================== */

@container (max-width: 1200px) {

    .badge {
        padding: 7px 13px;
        margin-bottom: 14px;
        font-size: 12px;
    }

    .showcase-text h1 {
        font-size: clamp(38px, 4cqw, 48px);
        line-height: .96;
        letter-spacing: -2px;
    }

    .showcase-text > p {
        margin: 18px 0;
        font-size: 16px;
        line-height: 1.5;
    }

    .steps {
        gap: 6px;
        margin-bottom: 18px;
    }

    .step {
        gap: 12px;
        padding: 6px 10px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 18px;
    }

    .step strong {
        font-size: 14px;
    }

    .step span {
        font-size: 11px;
    }

    .secret-showcase .secret-hero-actions {
        margin-top: 0;
    }

    .secret-showcase .secret-button {
        min-height: 44px;
        padding-inline: 17px;
        font-size: 13px;
    }
}


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

@media (max-width: 1100px) {

    .secret-showcase {

        aspect-ratio: auto;

        grid-template-columns: 1fr;

        min-height: auto;
        max-height: none;

        padding:
            60px 30px
            90px;

        text-align: center;
    }

    .brand {

        justify-content: center;
    }

    .showcase-text > p,
    .steps {

        margin-left: auto;
        margin-right: auto;
    }

    .step {

        text-align: left;
    }

    .phone-area {

        min-height: 720px;

        margin-top: 40px;
    }

    .showcase-text h1 {

        margin: auto;
    }

}

@media (max-width: 600px) {

    .secret-showcase {

        width: calc(100% - 24px);

        margin-top: 70px;

        border-radius: 22px;
    }

    .showcase-text h1 {

        font-size: 42px;

        letter-spacing: -2px;
    }

    .phone {

        width: 280px;
    }

    .floating {

        transform: scale(.8);
    }

    .message-balloon {

        min-width: 185px;
    }

}
