:root {
    --primary-gold: #cdb34d;
    --primary-gold-low: rgba(205, 179, 77, 0.1);
    --bg-dark: #0d0f12;
    --text-light: #ffffff;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --card-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

main {
    overflow-x: hidden;
}

body {
    background-color: #0d0f12;
    color: #ffffff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: transparent !important;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.rolagem {
    padding: 15px 8%;
    background-color: rgba(13, 15, 18, 0.95) !important;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(205, 179, 77, 0.15);
}

.logo {
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.logo:hover {
    transform: scale(1.08) translateY(-2px);
    filter: drop-shadow(0 0 12px rgba(205, 179, 77, 0.4));
}

.logo::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -150%;
    width: 50px;
    height: 200%;
    background: linear-gradient(
        to right, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    transform: rotate(30deg);
    transition: none;
}

.logo:hover::after {
    left: 150%;
    transition: all 0.7s ease-in-out;
}

.logo img {
    height: 40px;
    width: auto;
}

.destaque-logo {
    color: #cdb34d;
}

.logo-link {
    text-decoration: none;
    display: inline-block;
}

.menu-principal ul {
    display: flex;
    list-style: none;
    gap: 40px;
}


.menu-principal a {
    text-decoration: none;
    color: #a0aab2;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.menu-principal a:hover {
    color: #cdb34d;
}


.acoes-usuario {
    display: flex;
    align-items: center;
    gap: 25px;
}

.btn-abrir-conta {
    background-color: #cdb34d;
    color: #0d0f12;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(205, 179, 77, 0.2);
}

.btn-abrir-conta:hover {
    background-color: #dfc459;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(205, 179, 77, 0.35);
}



.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    padding-top: 80px;
    background: radial-gradient(circle at 20% 30%, #1a1d23 0%, #0d0f12 100%);
    overflow: hidden;
    position: relative;
}

.container-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin-top: 0;
}

.hero-content {
    flex: 1;
    max-width: 550px;
}

.tag-seguranca {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(205, 179, 77, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(205, 179, 77, 0.2);
    margin-bottom: 20px;
}

.tag-seguranca span {
    color: #cdb34d;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #ffffff;
}

.hero-content h1 .ouro {
    color: #cdb34d;
}

.descricao {
    font-size: 1.05rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 12px;
}

.suporte {
    font-size: 0.95rem;
    color: #909090;
    border-left: 2px solid #cdb34d;
    padding-left: 15px;
    margin-bottom: 35px;
}

.cta-area {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-principal {
    display: inline-block;
    width: fit-content;
    background-color: #cdb34d;
    color: #0d0f12;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(205, 179, 77, 0.2);
}

.btn-principal:hover {
    background-color: #dfc459;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(205, 179, 77, 0.3);
}

.cta-frase {
    font-size: 0.9rem;
    color: #cdb34d;
    font-style: italic;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.card-wrapper {
    position: relative;
    perspective: 1000px;
}

.floating-card {
    width: 380px;
    height: auto;
    border-radius: 18px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.6);
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: #cdb34d;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 1;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotateX(3deg) rotateY(-5deg);
    }

    50% {
        transform: translateY(-15px) rotateX(6deg) rotateY(-2deg);
    }

    100% {
        transform: translateY(0px) rotateX(3deg) rotateY(-5deg);
    }
}

@media (max-width: 992px) {
    .container-hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .suporte {
        border-left: none;
        padding-left: 0;
    }

    .floating-card {
        width: 80%;
    }

    .cta-area {
        align-items: center;
    }
}


/* ---------------------------------------------produtos--------------------------------------------- */


.secao-carrossel-final {
    padding: 100px 0;
    position: relative;
    background-color: #0d0f12;
    overflow: hidden;
}

.luz-fundo {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
}

.luz-dourada {
    width: 500px;
    height: 500px;
    background: #cdb34d;
    top: -10%;
    left: -10%;
}

.luz-azul {
    width: 600px;
    height: 600px;
    background: #2b3a6b;
    bottom: -10%;
    right: -10%;
}

.container-titulo {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.titulo-premium {
    color: #ffffff;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.titulo-premium .ouro {
    color: #cdb34d;
    display: block;
    font-size: 3rem;
    font-weight: 800;
    margin-top: 5px;
}

.viewport-carrossel {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seta-carrossel {
    background: rgba(205, 179, 77, 0.1);
    border: 1px solid rgba(205, 179, 77, 0.5);
    color: #cdb34d;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    position: absolute;
    z-index: 100;
    transition: 0.3s;
}

.seta-carrossel:hover {
    background: #cdb34d;
    color: #000;
}

.anterior {
    left: -60px;
}

.proximo {
    right: -60px;
}

.mascara-carrossel {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.trilha-carrossel {
    display: flex;
    list-style: none;
    width: 100%;
    padding: 30px 0;
    margin: 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.item-carrossel {
    flex: 0 0 33.3333%;
    padding: 10px 20px;
    box-sizing: border-box;
    opacity: 0.4;
    transform: scale(0.85);
    transition: all 0.3s ease-in-out;
}

.item-carrossel.foco {
    opacity: 1;
    transform: scale(1.1);
    z-index: 10;
}

.card-servico {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 15px 20px;
    border-radius: 20px;
    text-align: center;
    height:auto;
    min-height: 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.item-carrossel.foco .card-servico {
    border-color: rgba(205, 179, 77, 0.6);
    box-shadow: 0 25px 50px rgba(205, 179, 77, 0.15);
    background: rgba(205, 179, 77, 0.05);
}

.icone-servico {   
    margin: 0 auto 5px auto;
    width: 150px;
    height: 150px;
}

.icone_-servico {
   
    margin: 0 auto 5px auto;
    width: 100px;
    height:100px;
}

.card-servico h3 {
    color: #fff;
    font-size: 2rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

.card-servico p {
    color: #a0a0a0;
    font-size: 1.0rem;
    line-height: 1.0;
    margin: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}



@media (max-width: 900px) {
    .item-carrossel {
        flex: 0 0 100%;
    }

    .anterior {
        left: 10px;
    }

    .proximo {
        right: 10px;
    }
}

.viewport-3d {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.secao-beneficios-3d {
    background-color: var(--bg-dark);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 0;
    box-sizing: border-box;
}

.fluxo-3d {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    perspective: 1200px;
}

.item-3d {
    position: absolute;
    width: 320px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 1;
    left: 50%;
    margin-left: -160px;
}

.item-3d.foco {
    transform: translateX(0) translateZ(200px) scale(1.1);
    opacity: 1;
    z-index: 100;
}

.item-3d.lateral-esq {
    transform: translate3d(-110%, 0, 0) rotateY(25deg) scale(0.8);
    z-index: 5;
    opacity: 0.4;
    filter: blur(2px);
}

.item-3d.lateral-dir {
    transform: translate3d(110%, 0, 0) rotateY(-25deg) scale(0.8);
    z-index: 5;
    opacity: 0.4;
    filter: blur(2px);
}

.item-3d.afastado-esq {
    transform: translateX(-350px) translateZ(0) rotateY(35deg) scale(0.85);
    opacity: 0.6;
    z-index: 50;
}

.item-3d.afastado-dir {
    transform: translateX(350px) translateZ(0) rotateY(-35deg) scale(0.85);
    opacity: 0.6;
    z-index: 50;
}

.item-3d.escondido {
    transform: translateX(0) translateZ(-500px) scale(0.5);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.card-beneficio {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(205, 179, 77, 0.3);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.card-beneficio::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(205, 179, 77, 0.1) 0%, transparent 100%);
    pointer-events: none;
}
.icon-ref {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.item-3d.foco .card-beneficio {
    border-color: #cdb34d;
    transform: translateZ(100px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 0 0 20px rgba(205, 179, 77, 0.2);
    background: rgba(205, 179, 77, 0.05);
}

.controles-3d {
    display: flex;
    gap: 40px;
    z-index: 200;
    position: relative;
    margin-top: 250px;
}

.seta-3d {
    background: none;
    border: 1px solid #cdb34d;
    color: #cdb34d;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.seta-3d:hover {
    background: #cdb34d;
    color: #000;
}

.selo-ouro {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.6rem;
    font-weight: bold;
    padding: 5px 35px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.card-beneficio h3 {
    color: #cdb34d;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.card-beneficio p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.secao-beneficios-3d {
    scroll-margin-top: 80px; 
}

/* ---------------------------------------------CTA--------------------------------------------- */

.cta-final {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 8%;
    background-color: #0d0f12;
    position: relative;
    z-index: 5;
}

.cta-final::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(205, 179, 77, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
}

.cta-final .interface {
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.emojis-destaque {
    font-size: 2rem;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-final h2 {
    font-size: 3.2rem;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 10px;
}

.cta-final p {
    color: #a0a0a0;
    font-size: 1.3rem;
    max-width: 700px;
    margin-bottom: 20px;
}

.cta-botoes {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.cta-final .btn-principal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    background-color: #cdb34d;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer !important;
    position: relative;
    z-index: 99;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.cta-final .btn-principal:hover {
    transform: scale(1.05) translateY(-3px);
    background-color: #e5c966;
    box-shadow: 0 15px 30px rgba(205, 179, 77, 0.3);
}

.cta-final .btn-principal:active {
    transform: scale(0.98);
}

.btn-secundario {
    display: inline-block;
    padding: 18px 35px;
    border-radius: 12px;
    border: 1px solid rgba(205, 179, 77, 0.5);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.btn-secundario:hover {
    background-color: rgba(205, 179, 77, 0.1);
    border-color: #cdb34d;
    color: #cdb34d;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(205, 179, 77, 0.1);
}

.btn-secundario:active {
    transform: translateY(-1px);
}
/*---------------------------------------------FOOTER---------------------------------------------*/

.confianca-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    color: #606060;
    font-size: 1rem;
    margin-top: 20px;
}

.ponto {
    color: #cdb34d;
    font-weight: bold;
}

.rodape-simples {
    background-color: #15181c;
    padding: 40px 8%;
    text-align: center;
}

.linha-divisora {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.rodape-simples p {
    color: #606060;
    font-size: 0.85rem;
}

.rodape-simples span {
    margin-left: 15px;
    opacity: 0.7;
}

.estrelas-feedback {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.estrelas-feedback span {
    color: #cdb34d;
    font-size: 1.8rem;
    text-shadow: 0 0 20px rgba(205, 179, 77, 0.3);
}

.cta-final h2 .ouro {
    color: #cdb34d;
}

@media (max-width: 768px) {
    .cta-final h2 {
        font-size: 2rem;
    }

    .cta-botoes {
        flex-direction: column;
        align-items: center;
    }

    .btn-principal,
    .btn-secundario {
        width: 100%;
        max-width: 300px;
    }

    .confianca-footer {
        flex-direction: column;
        gap: 5px;
    }

    .ponto {
        display: none;
    }
}

.rodape-completo {
    background-color: #08090b;
    padding: 80px 8% 40px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.container-rodape {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.col-footer h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.col-footer ul {
    list-style: none;
}

.col-footer ul li {
    margin-bottom: 12px;
}

.col-footer ul li a {
    color: #808080;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.col-footer ul li a:hover {
    color: #cdb34d;
}

.info-banco p {
    color: #808080;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 20px 0;
    max-width: 300px;
}

.logo-footer {
    height: 40px;
    width: auto;
}

.contatos-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #a0a0a0;
    font-size: 0.85rem;
}

.rodape-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.selos-seguranca {
    display: flex;
    gap: 30px;
}

.selo {
    color: #606060;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.copyright p {
    color: #505050;
    font-size: 0.8rem;
    text-align: center;
}

@media (max-width: 900px) {
    .container-rodape {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .container-rodape {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .info-banco p {
        margin: 20px auto;
    }

    .selos-seguranca {
        flex-direction: column;
        gap: 15px;
    }
}





/* ---------------------------------------------Criação de conta--------------------------------------------- */
:root {
    --gold: #cdb34d;
    --dark: #0a0b0d;
    --glass: rgba(255, 255, 255, 0.02);
    --border: rgba(255, 255, 255, 0.06);
    --text-dim: #88898b;
}

.body-selecao {
    background-color: var(--dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: white;
    margin: 0;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.c1 {
    width: 500px;
    height: 500px;
    background: var(--gold);
    top: -200px;
    left: -100px;
}

.c2 {
    width: 400px;
    height: 400px;
    background: #4d67cd;
    bottom: -100px;
    right: -50px;
}

.wrapper-onboarding {
    width: 100%;
    max-width: 850px;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-onboarding {
    text-align: center;
    margin-bottom: 50px;
}

.container-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.progresso-pill {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    gap: 10px;
    margin-bottom: 25px;
}

.step {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: #666;
    border: 1px solid transparent;
}

.step.active {
    background: #cdb34d;
    color: black;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(205, 179, 77, 0.3);
    border-color: #cdb34d;
}

.header-texto h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
}

.header-texto p {
    color: #88898b;
    font-size: 1.1rem;
    margin-top: 15px;
}

.header-onboarding h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

.header-onboarding p {
    color: var(--text-dim);
    font-size: 1.1rem;
    margin-top: 10px;
}

.ouro {
    color: var(--gold);
}

.glass-form-container {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    width: 100%;
    box-sizing: border-box;
}

.group-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin: 40px 0 25px;
    font-weight: 700;
}

.group-title:first-child {
    margin-top: 0;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.full {
    grid-column: 1 / -1;
}

.input-box {
    position: relative;
}

.input-box input,
.input-box select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    color: white;
    font-size: 1.05rem;
    outline: none;
    transition: 0.3s;
}

.input-box label {
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--text-dim);
    transition: 0.3s ease all;
    pointer-events: none;
}

.input-box input:focus~label,
.input-box input:not(:placeholder-shown)~label,
.input-box select:focus~label,
.input-box select:valid~label {
    top: -18px;
    font-size: 0.8rem;
    color: var(--gold);
}

.floating-label {
    top: -18px !important;
    font-size: 0.8rem !important;
    color: var(--gold) !important;
}

.focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: 0.4s;
}

.input-box input:focus~.focus-line {
    width: 100%;
}

.footer-actions {
    margin-top: 50px;
}

.btn-next {
    width: 100%;
    padding: 22px;
    background: var(--gold);
    border: none;
    border-radius: 18px;
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.btn-next:hover {
    background: #e5c963;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(205, 179, 77, 0.2);
}

@media (max-width: 768px) {
    .row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .glass-form-container {
        padding: 30px 20px;
    }
}

.etapa-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.etapa-content.active {
    display: block;

}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-back {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #88898b;
    padding: 18px 30px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.etapa-content[id="etapa1"] .footer-actions {
    justify-content: flex-end;
}

.msg-erro {
    color: #ff4d4d;
    font-size: 0.7rem;
    position: absolute;
    bottom: -18px;
    display: none;
}

.instrucao-p {
    font-size: 0.85rem;
    color: #88898b;
    margin-bottom: 25px;
}

.socio-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.btn-add-socio {
    background: transparent;
    border: 1px dashed rgba(205, 179, 77, 0.4);
    color: #cdb34d;
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    margin-bottom: 30px;
}

.btn-add-socio:hover {
    background: rgba(205, 179, 77, 0.05);
    border-color: #cdb34d;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.mfa-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 50px;
    gap: 20px;
    width: 100%;
    box-sizing: border-box;
}

.mfa-info {
    flex: 1;
}

.mfa-titulo {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    display: block;
    margin-bottom: 5px;
}

.mfa-desc {
    font-size: 0.85rem;
    color: #88898b;
    line-height: 1.4;
}

.switch {
    flex-shrink: 0;
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--gold);
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.btn-finalizar {
    padding: 20px 40px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 18px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.4s;
}

.btn-finalizar:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}


#etapa6 .footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    header {
        padding: 20px 5%;
    }

    .container-hero {
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {

    .menu-principal {
        display: none;
    }

    header {
        padding: 15px 5%;
    }

    .acoes-usuario {
        gap: 15px;
    }

    .btn-abrir-conta {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .glass-form-container {
        padding: 25px 20px;
        border-radius: 24px;
    }

    .header-texto h1 {
        font-size: 1.8rem;
    }

    .row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-actions {
        flex-direction: column-reverse;
        gap: 15px;
        margin-top: 30px;
    }

    .btn-next,
    .btn-back,
    .btn-finalizar {
        width: 100% !important;
        justify-content: center;
        padding: 18px;
    }

    .mfa-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .switch {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .progresso-pill {
        padding: 8px 12px;
        scale: 0.9;
    }

    .group-title {
        margin: 30px 0 15px;
        font-size: 0.7rem;
    }
}


#btn-mobile {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(205, 179, 77, 0.3);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 3000;
    position: relative;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#hamburger {
    border-top: 2px solid;
    width: 20px;
    display: block;
    color: #cdb34d;
    position: relative;
    transition: 0.3s;
}

#hamburger::after, #hamburger::before {
    content: '';
    display: block;
    width: 18px;
    height: 2px;
    background: #cdb34d;
    margin-top: 5px;
    transition: 0.3s;
    position: relative;
    border-radius: 2px;
}

@media (max-width: 992px) {
    #btn-mobile {
        display: flex;
    }

    .menu-principal {
        display: flex;
        position: fixed;
        width: 100%;
        height: 0;
        top: 0;
        left: 0;
        background: #0d0f12;
        z-index: 2000;
        visibility: hidden;
        overflow: hidden;
        transition: height 0.4s ease, visibility 0.4s;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .menu-principal.active {
        height: 100vh;
        visibility: visible;
    }

    .menu-principal ul {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100%;
        gap: 40px;
    }

    .menu-principal.active ul {
        display: flex;
        flex-direction: column;
        gap: 30px;
        opacity: 1;
    }
}

.menu-principal a {
    font-size: 1.5rem;
    padding: 1rem;
}

.menu-principal.active~.acoes-usuario #hamburger {
    border-top-color: transparent !important;
}

.menu-principal.active~.acoes-usuario #hamburger::before {
    transform: rotate(135deg);
    background: #cdb34d;
}

.menu-principal.active~.acoes-usuario #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
    background: #cdb34d;
}


@media (min-width: 993px) {
    .menu-principal {
        display: block !important;
        visibility: visible !important;
        position: static !important;
        height: auto !important;
        background: transparent !important;
    }

    .acoes-usuario .btn-abrir-conta {
        display: inline-block !important;
        visibility: visible !important;
    }

    #btn-mobile {
        display: none !important;
    }
}

@media (max-width: 992px) {
    #btn-mobile {
        display: flex;
    }

    .menu-principal {
        position: fixed;
        width: 100%;
        height: 0;
        top: 0;
        left: 0;
        z-index: 2000;
        visibility: hidden;
        overflow: hidden;
        transition: 0.5s;
        background: #0d0f12;
    }

    .menu-principal.active {
        height: 100vh;
        visibility: visible;
    }
}

@media (min-width: 993px) {
    .somente-mobile {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .somente-mobile {
        display: block;
        width: 80%;
        text-align: center;
    }

    .somente-mobile a {
        font-size: 1.2rem;
        padding: 15px;
        display: block;
    }

    .btn-abrir-conta-mobile {
        background-color: #cdb34d;
        color: #000 !important;
        border-radius: 8px;
        font-weight: bold;
        margin-top: 10px;
    }
}

.reveal-init {
    opacity: 0 !important;
    filter: blur(15px);
    transform: perspective(1200px) rotateX(-20deg) translateY(100px) scale(0.8);
    transition: opacity 1.2s ease, filter 1.2s ease, transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
    visibility: hidden;
    will-change: transform, opacity;
}

.reveal-visible {
    opacity: 1 !important;
    filter: blur(0);
    transform: perspective(1200px) rotateX(0deg) translateY(0) scale(1);
    visibility: visible;
}

.grid-produtos .card-produto:nth-child(1) { transition-delay: 0.1s; }
.grid-produtos .card-produto:nth-child(2) { transition-delay: 0.2s; }
.grid-produtos .card-produto:nth-child(3) { transition-delay: 0.3s; }
.grid-produtos .card-produto:nth-child(4) { transition-delay: 0.4s; }
