:root {
    --bg: #020409;
    --surface: rgba(5, 10, 24, 0.92);
    --surface-strong: rgba(8, 14, 31, 0.95);
    --text: #f9fbfe;
    --text-muted: #9fb3ce;
    --red: #ae00ff;
    --blue: #ae00ff;
    --blue-strong: #26a3ff;
    --shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
    --glow-red: 0 0 48px rgba(204, 0, 255, 0.28);
    --glow-blue: 0 0 70px rgba(28, 0, 41, 0.28);
    --radius: 28px;
    --radius-sm: 18px;
    --gap: 1.25rem; 
}

.hero-cta{
    display: flex;
}
* {
    box-sizing: border-box;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  font-family: Arial, sans-serif;
  padding: 1rem;
  overflow-y: auto;
}

.telegram-card {
  width: 238px;
  padding: 14px;
  padding-bottom: 20px;
  background: #06000a;
  border: 1px solid #ae00ff;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.65);
  margin: auto;
}

.btn.yes {
  background: linear-gradient(90deg, #6100cf, #61078b);
}

.btn.no {
  background: #23053f;
  border: 1px solid #11083b;
}

html {
    scroll-behavior: smooth;
}

.logo {
    position: absolute; 
    top: 1.0rem;
    left: 1.5rem;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    color: var(--text);
    background: url("ASSETS DA IRIS/FUNDO SELL.png") no-repeat;
    background-attachment: absolute;
    background-position: center top;
    background-size: cover;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.telegram-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 9px;
  margin-bottom: 18px;
}

.telegram-card h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.telegram-card h2 span {
 color: #9e27ff;
}

.btn {
  width: 100%;
  height: 39px;
  border-radius: 22px;
  border: none;
  margin-bottom: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.btn:last-of-type {
  margin-bottom: 0;
}

.btn span {
  display: inline-flex;
  width: 17px;
  height: 17px;
  align-items: center;
  justify-content: center;
  margin-right: 7px;
  border-radius: 50%;
  background: #fff;
  color: #5908b6;
  font-size: 12px;
}

.btn.no span {
  color: #150825;
}

.segunda-tela {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  color: #fff;
  background: #050505;
}

.texto-animado {
  opacity: 0;
  transform: translateY(35px);
}
  
.segunda-tela.start-animation .texto-animado {
  animation: entradaTexto 0.8s ease forwards;
}

.segunda-tela.start-animation .texto-animado.delay {
  animation-delay: 0.25s;
  animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

button,
a { 
    cursor: pointer;
}

.hero-viewport {
    width: min(100%, 1080px);
    margin: 0 auto;
    padding: 1rem 1rem 2rem;
    position: relative;
}

.hero-section {
    position: relative;
    z-index: 2;
    width: 100%;
}

.benefits-card {
    background: linear-gradient(135deg, #b800ff 0%, #ff00ff 50%, #e100ff 100%);
    box-shadow: 
        0 0 25px rgba(174, 0, 255, 0.8),
        0 0 50px rgba(184, 0, 255, 0.6),
        0 6px 24px rgba(0, 0, 0, 0.3),
        inset -2px -2px 5px rgb(0, 0, 0),
        inset 2px 2px 5px rgba(255, 0, 0, 0.1);
    border-radius: 5px;
    border: 2px solid rgb(0, 0, 0);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transform: translateY(100vh) scale(0.5);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.multiplier:nth-child(1) {
    top: 8%;
    right: 8%;
}

.multiplier:nth-child(2) {
    top: 16%;
    left: 6%;
    animation-delay: 0.2s;
}

.multiplier.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.multiplier.pulse {
    animation: multiplierPulse 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-portrait__image{
    display: flex;
    justify-content: center;
}

.hero-panel {
    position: relative;
    min-height: calc(100vh - 2rem);
    padding: 1.4rem;
    border-radius: 36px;
    overflow: visible;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-scenery,
.hero-frame,
.hero-copy,
.hero-benefits,
.hero-trust,
.hero-footer {
    position: relative;
    z-index: 1;
}

.hero-scenery {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
}

.hero-glow--blue {
    width: 420px;
    height: 420px;
    top: -110px;
    right: -80px;
    background: rgba(174, 0, 255, 0.22);
}

.hero-glow--red {
    width: 380px;
    height: 380px;
    bottom: -120px;
    left: -90px;
    background: rgba(255, 46, 85, 0.2);
}

.hero-copy {
    text-align: center;
    overflow: 'visible';
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-image {
    overflow: visible;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation-delay: 0.2s;
}

.hero-slogan {
    margin: 0.4rem auto 1.6rem;
    max-width: 26rem;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    text-align: center;
    line-height: 1.5;
    color: #fff;
    text-shadow:
        0 0 18px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 0, 0, 0.25);
    animation-delay: 0.35s;
}

.hero-heading {
    margin: 0 auto -0.2rem;
    max-width: 34rem;
    font-size: clamp(1.4rem, 4.3vw, 2.2rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
    background: linear-gradient(110deg, #ff8cff 0%, #d742ff 45%, #8c55ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation-delay: 0.5s;
    line-height: 1;
}

.hero-copy h1,
.hero-amount {
    margin: 0 auto 0.6rem;
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    font-weight: 900;
    color: transparent;
    background: radial-gradient(circle at top, #ffffff 0%, #cb6cff 30%, #9800ff 70%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 26px rgba(199, 63, 255, 0.55), 0 12px 32px rgba(0, 0, 0, 0.18);
    animation-delay: 0.5s;
}

.hero-subtitle {
    margin: 0 auto 1.6rem;
    max-width: 32rem;
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: rgba(241, 244, 255, 0.9);
    animation-delay: 0.8s;
}

.hero-cta{
 margin-top: -4rem; 
}
/* ===== BOTÃO CTA ===== */
.hero-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0;
    padding: 1rem 2.5rem;
    width: min(90%, 340px);
    min-height: 76px;
    border-radius: 88px;
    border: 2px solid rgb(0, 0, 0);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 0 18px rgb(187, 0, 255), inset 0 0 2px #1b0028de, 0 12px 30px rgba(0, 0, 0, 0.34);
    position: relative;
    overflow: visible;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease, filter 0.3s ease;
    animation: fadeInUp 0.85s ease-out both 0.95s, btnPulse 1.8s ease-in-out infinite;
    @keyframes btnPulse {
        0%, 100% {
            box-shadow: 0 0 18px rgb(187, 0, 255), inset 0 0 2px #1b0028de, 0 12px 30px rgba(0, 0, 0, 0.34);
        }
        50% {
            box-shadow: 0 0 28px rgb(187, 0, 255), inset 0 0 4px #1b0028de, 0 12px 30px rgba(0, 0, 0, 0.34);
        }
    }
    z-index: 1;
    background: linear-gradient(135deg, #7000cc, #ae00ff);
}

.hero-cta::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.63), rgba(0, 0, 0, 0.492));
    filter: blur(22px);
    opacity: 0.85;
    pointer-events: none;
    z-index: -2;
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.hero-cta::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: inherit;
    border: 1px solid rgba(0, 0, 0, 0.218);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 40%);
    z-index: -1;
}

.hero-cta span {
    display: block;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-cta span:first-child {
    font-size: 0.95rem;
    letter-spacing: 0.28em;
    opacity: 0.84;
    animation: fadeInDown 0.6s ease-out 1.1s both;
}

.hero-cta span:first-child::before,
.hero-cta span:first-child::after {
    content: '◀';
    position: absolute;
    color: rgba(234, 0, 255, 0.6);
    font-size: 0.7rem;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

.hero-cta span:first-child::before {
    left: -2rem;
    animation-delay: 0s;
}

.hero-cta span:first-child::after {
    right: -2rem;
    content: '▶';
    animation-delay: 0.2s;
}

.hero-cta span:last-child {
    font-size: clamp(1.55rem, 2.5vw, 2.3rem);
    letter-spacing: 0.16em;
    margin-top: 0.15rem;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.85s ease-out both 0.95s, btnPulse 1.8s ease-in-out infinite;
}

.hero-cta:hover,
.hero-cta:focus-visible {
    transform: translateY(-6px) scale(1.03);
    filter: brightness(1.2);
    box-shadow: 0 0 100px rgba(200, 0, 255, 0.45), inset 0 0 2px rgba(255, 255, 255, 0.22), 0 32px 90px rgba(0, 0, 0, 0.35);
}

.hero-cta:hover::before {
    opacity: 1;
    filter: blur(28px);
    background: linear-gradient(90deg, rgba(155, 0, 255, 0.55), rgba(255, 0, 255, 0.35), rgba(0, 175, 255, 0.3));
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 0 0 54px rgb(0, 0, 0), inset 0 0 2px rgba(255, 255, 255, 0.08), 0 26px 68px rgba(0, 0, 0, 0.34);
    }
    50% {
        box-shadow: 0 0 72px rgb(0, 0, 0), inset 0 0 2px rgba(255, 255, 255, 0.12), 0 26px 68px rgba(0, 0, 0, 0.34);
    }
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.4; transform: translateX(0); }
    50%       { opacity: 1;   transform: translateX(3px); }
}

@keyframes shimmer {
    0%, 100% { background-position: 200% 0; }
    50%       { background-position: -200% 0; }
}

@keyframes multiplierPulse {
    0%   { transform: scale(1);   box-shadow: 0 0 30px rgba(255,0,128,0.8), 0 0 60px rgba(184,0,255,0.6); }
    50%  { transform: scale(1.1); box-shadow: 0 0 50px rgba(255,0,128,1),   0 0 100px rgb(0, 0, 0), 0 0 150px rgba(255,0,100,0.8); }
    100% { transform: scale(1);   box-shadow: 0 0 30px rgba(255,0,128,0.8), 0 0 60px rgba(184,0,255,0.6); }
}

@keyframes multiplierFloat {
    0%, 100% { transform: translateY(0) scale(1);    opacity: 0.7; }
    50%       { transform: translateY(-20px) scale(1.05); opacity: 0.9; }
}

/* ===== HERO COPY ANIMAÇÕES ===== */
.hero-copy > *,
.hero-image {
    animation-duration: 0.85s;
    animation-fill-mode: both;
    animation-timing-function: ease-out;
}

.hero-copy > *:nth-child(1) { animation-delay: 0.2s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.35s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.55s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.75s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.95s; }

/* ===== BENEFITS ===== */
.hero-benefits {
    margin: 2.5rem auto 0;
    max-width: 760px;
}

.benefits-card {
    padding: 1.8rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgb(255, 255, 255);
    background: rgba(253, 253, 253, 0.9);
    box-shadow: inset 0 0 0 1px rgb(255, 255, 255);
}

.benefits-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.benefits-card li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.55;
}

.benefits-card li span {
    width: 2.2rem;
    height: 2.2rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(66, 193, 255, 0.95), rgba(255, 46, 85, 0.9));
    color: #fff;
    font-weight: 700;
}

/* ===== TRUST CARDS ===== */
.hero-trust {
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-width: 760px;
    width: 100%;
}
/* card do meio */
.trust-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.1rem 1.4rem;
    border: 2px solid rgba(174, 0, 255, 0.3);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(80, 0, 120, 0.22), rgba(10, 5, 25, 0.92));
    border: 1px solid rgba(174, 0, 255, 0.3);
    box-shadow: 0 0 24px rgba(140, 0, 220, 0.12), inset 0 1px 0 rgb(4, 0, 6);
    position: relative;
    overflow: visible;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3%;
    height: 100%;
    border-left-width: 3px;
    background: linear-gradient(180deg, #11001a #00000000, );
    border-radius: 20px 0 0 20px;
}

.trust-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(174, 0, 255, 0.22), inset 0 1px 0 rgba(0, 0, 0, 0.1);
}

.trust-icon {
    font-size: 1.7rem;
    width: 50px;
    height: 50px; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(140, 0, 255, 0.28), rgba(60, 0, 100, 0.4));
    border: 1px solid rgba(174, 0, 255, 0.25);
    box-shadow: 0 0 18px rgba(174, 0, 255, 0.2);
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.trust-text strong {
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.trust-text span {
    color: rgba(200, 170, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.4;
}


/* ===== FECHAMENTO ===== */
.closing-section {
    margin: 2.8rem auto 0;
    max-width: 580px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.closing-divider {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
}

.closing-divider span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(174, 0, 255, 0.5), transparent);
}

.closing-diamond {
    color: rgba(200, 0, 255, 0.7);
    font-size: 0.65rem;
    filter: drop-shadow(0 0 6px rgba(174, 0, 255, 0.8));
}

.closing-text {
    margin: 0;
    font-size: clamp(1.05rem, 2.8vw, 1.3rem);
    font-weight: 700;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 30px rgba(174, 0, 255, 0.25);
}

.closing-text em {
    font-style: normal;
    background: linear-gradient(110deg, #ff8cff 0%, #d742ff 50%, #9800ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== FOOTER ===== */
.hero-footer {
    margin: 2rem auto 0;
    padding: 1.2rem 0 1.5rem;
    text-align: center;
    color: rgb(255, 255, 255);
    font-size: 0.82rem;
    letter-spacing: 0.04em;
}

/* ===== animação===== */
.modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.modal-overlay {
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

body:not(.loaded) .hero-copy,
body:not(.loaded) .hero-trust,
body:not(.loaded) .BENEFICIOS,
body:not(.loaded) .hero-footer {
    opacity: 0;
    transform: translateY(30px);
}

body.loaded .hero-copy    { animation: fadeInUp 1s ease-out 0.2s both; }
body.loaded .hero-trust   { animation: fadeInUp 1s ease-out 0.6s both; }
body.loaded .BENEFICIOS   { animation: fadeInUp 1s ease-out 0.9s both; }
body.loaded .hero-footer  { animation: fadeIn   1s ease-out 1.2s both; }

/* ===== MOBILE ===== */
@media (max-width: 640px) {
    .multiplier {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        padding: 0.4rem 1rem;
        min-width: 80px;
    }

    .multiplier:nth-child(1) { right: 5%; top: 6%; }
    .multiplier:nth-child(2) { left: 4%; top: 14%; }

    .hero-copy {
        padding: 0 0.75rem;
        margin-top: 0.5rem;
    }

    .hero-image { margin-bottom: 1rem; }

    .hero-image img {
        max-width: 90%;
        width: auto;
    }

    .hero-copy h1 {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        margin-top: 0.5rem;
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 2vw, 1rem);
        margin: 1rem auto 0;
    }

    .hero-cta {
        margin-top: 1.5rem;
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
        min-width: 150px;
    }

    .benefits-card { padding: 1rem 0.8rem; }
    .benefits-card li { font-size: 0.88rem; gap: 0.8rem; }
    .benefits-card li span { width: 2rem; height: 2rem; font-size: 0.9rem; }

    .hero-trust {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        margin: 1.5rem auto 0;
    }

    .trust-card { padding: 0.9rem 1rem; gap: 0.9rem; }
    .trust-icon { width: 42px; height: 42px; font-size: 1.4rem; }
    .trust-text strong { font-size: 0.82rem; }
    .trust-text span { font-size: 0.76rem; }
    .closing-text { font-size: clamp(0.95rem, 4vw, 1.1rem); }
    .hero-footer { margin-top: 1.5rem; font-size: 0.85rem; }

    @media (max-height: 500px) {
        .telegram-image { height: 120px; }
    }
}

/* ===== TABLET ===== */
@media (min-width: 641px) and (max-width: 1023px) {
    .multiplier {
        font-size: clamp(1.4rem, 3.5vw, 2rem);
        padding: 0.5rem 1.3rem;
        min-width: 100px;
    }
    .multiplier:nth-child(1) { right: 6%; }
    .multiplier:nth-child(2) { left: 5%; }
}

/* ===== DESKTOP ===== */
@media (min-width: 1024px) {
    .hero-viewport { padding: 1.5rem 1.5rem 2rem; }

    .multiplier {
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
        padding: 0.7rem 1.6rem;
        min-width: 110px;
        box-shadow: 
            0 0 35px rgba(255, 0, 128, 0.8),
            0 0 70px rgba(184, 0, 255, 0.6),
            0 10px 32px rgba(0, 0, 0, 0.35);
    }

    .hero-copy { max-width: 900px; margin: 0 auto; }
    .hero-copy h1 { font-size: clamp(3.5rem, 7vw, 5rem); }
    .hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.3rem); }
    .hero-benefits { margin-top: 3rem; max-width: 900px; }

    .hero-trust {
        flex-direction: row;
        max-width: 900px;
    }

    .trust-card {
        flex: 1;
        flex-direction: column;
        align-items: flex-start;
        padding: 1.4rem;
    }

    .trust-card::before {
        width: 100%;
        height: 3px;
        top: 0;
        left: 0;
        border-radius: 20px 20px 0 0;
        background: linear-gradient(90deg, #b800ff, #ff00ff, #7000cc);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
}
@keyframes btnPulse {
    0%, 100% { transform: scale(1.05); }
    50%       { transform: scale(1.04); }
}