/* ===============================
   RESET BÁSICO + FIX LAYOUT
================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(
        160deg,
        #071a12 0%,
        #0b2e1e 40%,
        #0f4d32 70%,
        #145c3c 100%
    );
    color: #ffffff;
    min-height: 100vh;
}

/* ===============================
   HERO
================================ */
.hero {
    min-height: 100vh;
    padding: 40px 20px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ===============================
   LOGO
================================ */
.logo img {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

/* ===============================
   HEADLINES
================================ */
.hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #3dfb29;
}

.hero h2 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.3;
}

.hero h3 span {
    color: #3dfb29;
}

/* ===============================
   TEXTO PRINCIPAL
================================ */
.subtitle {
    font-size: 1rem;
    max-width: 520px;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.95;
}

/* ===============================
   BOTÃO CTA (TELEGRAM)
================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    background: linear-gradient(135deg, #3dfb29, #63bb47);
    color: #ffffff; /* TEXTO BRANCO */
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 14px;

    box-shadow:
        0 6px 18px rgba(0, 255, 136, 0.45);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* ÍCONE TELEGRAM */
.btn svg {
    width: 32px;                 /* ÍCONE MAIOR */
    height: 32px;
    color: #ffffff;              /* ÍCONE BRANCO */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.35));
    flex-shrink: 0;
}

/* TEXTO */
.btn .btn-text {
    text-shadow: 0 2px 4px rgba(0,0,0,0.35);
}

/* HOVER */
.btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 10px 28px rgba(0, 255, 136, 0.65);
}

/* BOTÃO GRANDE */
.btn-big {
    margin-top: 18px;
}

/* ===============================
   RESPONSIVO
================================ */

@media (max-width: 480px) {
    .btn {
        width: 100%;
        max-width: 340px;
        padding: 20px 24px;
        font-size: 1rem;
    }

    .btn svg {
        width: 34px;
        height: 34px;
    }
}

/* ===============================
   AVISO +18
================================ */
.age-warning {
    margin-top: 18px;
    font-size: 0.85rem;
    opacity: 0.85;
}

/* ===============================
   IMAGEM ABAIXO DO BOTÃO
================================ */
.below-btn-image img {
    width: 100%;
    max-width: 120px;   /* menor */
    height: auto;
    margin-top: 12px;

    /* deixa totalmente branca */
    filter: brightness(0) invert(1);

    opacity: 0.85;      /* discreta */
}


/* ===============================
   FAIXA FULL WIDTH COMPACTA
================================ */
.free-banner {
    position: relative;
    width: calc(100% + 80px);
    margin: 18px -40px 0; /* espaçamento do topo */

    overflow: hidden;
    background: linear-gradient(135deg, #3dfb29, #63bb47);
    padding: 6px 0; /* altura reduzida */
    z-index: 2;
}

/* Pontas diagonais */
.free-banner::before,
.free-banner::after {
    content: '';
    position: absolute;
    top: 0;
    width: 40px;
    height: 100%;
    background: inherit;
    z-index: -1;
}

.free-banner::before {
    left: -40px;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.free-banner::after {
    right: -40px;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.free-banner-inner {
    display: flex;
    width: max-content;
}

.free-banner-track {
    display: flex;
    flex-shrink: 0;
    animation: scrollBanner 16s linear infinite;
}

.free-banner-track span {
    margin: 0 50px;
    font-weight: 800;
    font-size: 0.85rem; /* texto mais compacto */
    color: #002b1c;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1;
}

@keyframes scrollBanner {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}


/* ===============================
   BLOCO DOWNLOAD TELEGRAM
================================ */

.telegram-download {
    text-align: center;
    padding: 40px 20px 50px;
}

/* TÍTULO */
.telegram-download h2 {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
}

/* TEXTO */
.telegram-download p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

/* ===============================
   BOTÕES DAS LOJAS
================================ */

.store-buttons {
    display: flex;
    flex-direction: column;   /* sempre um abaixo do outro */
    align-items: center;
    gap: 16px;
}

.telegram-btn img {
    width: 100%;
    max-width: 220px;
    height: auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.telegram-btn:hover img {
    transform: scale(1.05);
    opacity: 0.95;
}

/* ===============================
   RESPONSIVO (DESKTOP)
================================ */

@media (min-width: 768px) {

    .telegram-download h2 {
        font-size: 2rem;
    }

    .telegram-download p {
        font-size: 1.1rem;
    }

}

/* ===============================
   AVISOS LEGAIS / DISCLAIMER
================================ */

.legal-warning {
    max-width: 960px;
    margin: 0 auto;
    padding: 18px 16px 14px;
    text-align: center;
    font-size: 0.72rem;       /* menor */
    line-height: 1.45;
    opacity: 0.55;            /* bem apagado */
}

.legal-warning p {
    margin-bottom: 8px;
}

.legal-warning .copyright {
    font-size: 0.68rem;
    opacity: 0.45;
}


/* ===============================
   RESPONSIVO (DESKTOP)
================================ */
@media (min-width: 768px) {

    .hero {
        padding: 60px 20px 80px;
    }

    .logo img {
        max-width: 220px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero h3 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .btn {
        font-size: 1.2rem;
        padding: 18px 40px;
    }
}


