/* 🔹 Reset + Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-weight: 500;
}

/* Troca de logo por tema */
.footer-kz__logo--light {
    display: block;
}

.footer-kz__logo--dark {
    display: none;
}

[data-theme="dark"] .footer-kz__logo--light {
    display: none;
}

[data-theme="dark"] .footer-kz__logo--dark {
    display: block;
}

/* Troca de ícones sociais por tema */
.social-icon--light {
    display: inline-block;
}

.social-icon--dark {
    display: none;
}

[data-theme="dark"] .social-icon--light {
    display: none;
}

[data-theme="dark"] .social-icon--dark {
    display: inline-block;
}



body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: #fff;

    /* CENTRALIZAÇÃO TOTAL */
    display: flex;
    justify-content: center;
    /* Centraliza horizontal */
    align-items: center;
    /* Centraliza vertical */
    height: 100vh;
    /* Ocupa tela inteira */

    /* WALLPAPER DE FUNDO */
    background-image: url("../images/background.png");
    /* coloque o nome do arquivo */
    background-size: cover;
    /* cobre a tela inteira */
    background-position: center;
    /* centraliza a imagem */
    background-repeat: no-repeat;
    /* sem repetição */
    background-attachment: fixed;
    /* efeito tipo parallax */

    /* OPCIONAL – escurecer o fundo */
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    /* controla a escuridão */
    z-index: -1;
}

.container {

    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

/* Lado esquerdo — planos */
.plans-box {
    background: #948aff;
    padding: 25px;
    border-radius: 12px;
    width: 420px;
    margin-right: 40px;
    border: 1px solid #48483F;
}

.plan {
    background: #8C82FC;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid #333;
    position: relative;
}

.highlight {
    border: 2px solid #F2EB3F;
    background: #8C82FC;
}

.save-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: #fff;
    color: #48483F;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: bold;
}

.plan-title {
    font-size: 18px;
    font-weight: bold;
}

.plan-sub {
    font-size: 15px;
    color: #fff;
    margin: 5px 0 15px;
}

.price {
    font-size: 24px;
    font-weight: normal;
}

/* Lado direito — texto e botão */
.text-box {
    max-width: 520px;

}

.text-box a {
    max-width: 282px;
}

.text-box h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.text-box p {
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
}

.text-box h2 {
    margin-top: 1.6rem;
    font-size: 26px;
}

.new-footer-stores {
    margin-top: 0.6rem;
}

.new-footer-stores a img {
    height: 55px;
    /* Size for app store badges */
    margin-right: 10px;
}

.btn {
    background: #00d26a;
    color: #fff;
    padding: 18px 28px;
    border-radius: 40px;
    display: inline-block;
    margin-top: 25px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s var(--var(--ease-out)-out), background-color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), opacity 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.btn:hover {
    transform: scale(1.03);
    background: #00e676;
}

.learn {
    display: block;
    margin-top: 15px;
    color: #fff;
    text-decoration: center;
    text-align: center;
    width: 67%;
}

@media (max-width: 900px) {
    body {
        height: auto;
        /* evita corte em telas menores */
        min-height: 100vh;
        padding: 10px 0;
    }

    .container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .plans-box {
        margin-right: 0;
        margin-bottom: 24px;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 360px;
        /* ligeiramente menor que 420px p/ caber em telas pequenas */
    }

    .text-box {
        max-width: 360px;
        margin: 0 auto;
        text-align: center;
    }

    .text-box h1 {
        margin-top: 1.2rem;
        font-size: 28px;
        margin-bottom: 10px;
    }

    .text-box p {
        margin-top: 1.2rem;
        font-size: 18px;
        line-height: 1.5;
        color: #fff;
    }

    .text-box h2 {
        margin-top: 1.6rem;
        font-size: 20px;
    }

    .text-box span {
        margin-top: 20px;
    }

    .new-footer-stores a img {
        height: 40px;
        /* Size for app store badges */
    }

    .learn {
        width: 100%;
        text-align: center;
    }
}

.new-footer-stores a {
    text-decoration: none;
}