
body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif; /* Placeholder for sans-serif */
    overflow-x: hidden; /* Evita barra de rolagem horizontal */
}


body {
    /* Substitua com a URL real da sua imagem de fundo 
    background-image: url('../imagens/fundo.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;*/
}

.logo-font {
    font-family: 'Playfair Display', serif;
    color: #fdd023;
}

.text-gold {
    color: #fdd023;
}

.btn-golden {
    background-color: #fdd023;
    color: black;
    border: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-golden:hover {
    background-color: #e6c200;
}

.form-control-golden {
    border: 2px solid #fdd023;
    color: white; /* Cor do texto digitado */
    background-color: rgba(255, 255, 255, 0.8); /* Fundo sutil do input */
    text-align: center;
}

.form-control-golden:focus {
    border-color: #ffed80;
    box-shadow: 0 0 0 0.25rem rgba(255, 237, 128, 0.25);
    background-color: rgba(255, 255, 255, 0.2);
}

        /* Estilização para o texto de ajuda */
.form-text-small {
    font-size: 0.8rem;
    margin-top: 5px;
    color: #fdd023;
}


.form-label{
    color: #fdd023;
}



  /* Lógica para esconder/mostrar etapas */
        .step-section {
            display: none; /* Esconde todas por padrão */
            width: 100%;
            min-height: 100vh;
        }
        .step-section.active {
            display: flex; /* Mostra a ativa */
        }

        /* Estilos do Início e Afirmação (Etapas 1 e 2) */
        .bg-image {
           background-image: url('../imagens/fundo.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding:40px 0;
        }

        /* Estilo do Card Preto (Etapas 2 e 3) - Baseado em image_1.png */
        .golden-card {
            background-color: #0a0a0a !important; /* Quase preto sólido - CORRIGIDO */
            border: 1px solid #fdd023;
            border-radius: 10px;
            position: relative;
        }

        /* Ícone de Brilho Dourado ( image_1.png ) */
        .icon-sparkle {
            position: absolute;
            top: 1rem;
            right: 1rem;
            color: #fdd023;
            font-size: 1.2rem;
        }

        /* Texto itálico da afirmação ( image_1.png ) */
        .italic-quote {
            font-style: italic;
            font-weight: 300;
        }

        /* Cabeçalho de Saldo (Etapa 3 - image_2.png) - CORRIGIDO PLACEMENT */
        .saldo-header {
            background-color: #000;
            border-bottom: 1px solid #333;
            width: 100% !important;
        }
        .money-large {
            font-size: 3.5rem;
            color: #fdd023;
            font-weight: bold;
        }

        /* Barra de Energia/Progresso ( image_2.png ) */
        .energy-bar-bg {
            height: 6px;
            background-color: #1a1a1a;
            border-radius: 3px;
            overflow: hidden;
            width: 150px;
        }
        .energy-bar-fill {
            height: 100%;
            background-color: #fdd023;
            width: 5%; /* Progresso inicial */
        }

        /* Etiqueta "Despertar Financeiro" ( image_2.png ) */
        .financial-tag {
            display: inline-block;
            padding: 4px 12px;
            border: 1px solid #a1873e;
            border-radius: 15px;
            color: #fdd023;
            font-size: 0.75rem;
            text-transform: uppercase;
            background-color: rgba(230, 170, 11, 0.1);
        }

        /* Ajuste do Input para Etapa 3 ( image_2.png ) */
        .etapa3-input-wrapper .form-control-golden {
            background-color: #fff !important;
            color: #000 !important;
            border-radius: 5px;
            border-color: #fdd023; /* Garante a borda dourada */
        }
        .etapa3-input-wrapper .form-control-golden::placeholder {
            color: #888;
        }

        /* Fundo com sobreposição mais escura para Etapa 3 - CORRIGIDO */
        .bg-image-dark-overlay {
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)), url('../imagens/fundo.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            flex-grow: 1; /* Ocupa o restante da tela abaixo do header */
            align-items: center;
            justify-content: center;
            padding: 40px 0;
        }

        .fundo-azul{
            background-color: #11151d;
            padding: 20px;
            border-radius: 20px;
            border: 1px solid #a1873e;
            margin: 15px auto;
            width: 85%;
        }

        /* Animação suave para as notificações empilhadas */
        .custom-toast {
            background-color: rgba(15, 10, 0, 0.95);
            border: 1px solid #fdd023;
            border-radius: 8px;
            color: #fdd023;
            min-width: 300px;
            max-width: 350px;
            transform: translateX(120%);
            transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 4px 15px rgba(253, 208, 35, 0.15);
        }
        .custom-toast.show-toast {
            transform: translateX(0);
        }

        /* Media queries */
        @media (max-width: 576px) {
            .container-fluid {
                padding: 2rem;
            }
        }