/* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* --- TAILWIND & CUSTOM RESET --- */
/* (Assuming Tailwind CDN is used in HTML, this file adds custom styles on top) */

:root {
    --unir-pink: #EC008C;
    --unir-black: #000000;
    --unir-white: #ffffff;
    --unir-surface: #111111;
    --unir-card: #1a1a1a;
}

html, body {
    background-color: var(--unir-black);
    color: var(--unir-white);
    font-family: 'Montserrat', sans-serif; /* Primary Body Font */
    overscroll-behavior-y: none;
    touch-action: manipulation;
    height: 100%;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Headings use Bebas Neue */
h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em; /* Bebas looks better with slight tracking */
}

.background-fixed {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    background: linear-gradient(180deg, rgba(236,0,140,0.08) 0%, #000000 50%);
    pointer-events: none;
}

/* Labels e Textos */
.label-guide {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem; /* Larger for Bebas */
    color: var(--unir-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    display: block;
    opacity: 1;
}

.welcome-text {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #e5e5e5;
    font-size: 1rem;
    text-align: left;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    border-left: 4px solid var(--unir-pink);
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* Inputs */
.input-field {
    background: #0a0a0a;
    border: 1px solid #333;
    border-radius: 16px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    width: 100%;
    padding: 20px;
    outline: none;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.input-field:focus {
    border-color: var(--unir-pink);
    box-shadow: 0 0 30px rgba(236, 0, 140, 0.25);
    background: #0f0f0f;
    transform: scale(1.02);
}

/* Botões de Opção */
.btn-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 18px;
    padding: 22px;
    width: 100%;
    text-align: left;
    transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
    position: relative;
    overflow: hidden;
}

.btn-card:active {
    transform: scale(0.96);
    background: rgba(236, 0, 140, 0.15);
    border-color: var(--unir-pink);
}

.btn-card.selected {
    background: var(--unir-pink);
    border-color: var(--unir-pink);
    color: white;
    box-shadow: 0 4px 20px rgba(236, 0, 140, 0.4);
    transform: scale(1.02);
}

.btn-card.selected span, .btn-card.selected p { color: white; }
.btn-card.selected svg { stroke: white; }

/* Botão Avançar */
.btn-next {
    background: var(--unir-pink);
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem; /* Larger for Bebas */
    letter-spacing: 2px;
    border-radius: 50px;
    padding: 18px 24px; /* Adjusted padding */
    width: 100%;
    box-shadow: 0 8px 30px rgba(236, 0, 140, 0.3);
    transition: transform 0.2s;
    margin-top: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.btn-next:active { transform: scale(0.95); }

/* Barra de Progresso */
.progress-track {
    position: fixed; top: 0; left: 0; width: 100%; height: 4px;
    background: #111; z-index: 50;
}
.progress-fill {
    height: 100%; background: var(--unir-pink); width: 0%;
    transition: width 0.4s ease; box-shadow: 0 0 10px var(--unir-pink);
}

#main-scroller {
    height: 100%; overflow-y: auto; overflow-x: hidden;
    display: flex; flex-direction: column;
    padding-bottom: env(safe-area-inset-bottom);
}

/* Animations */
@keyframes slideUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pop {
    0% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-slide-up { animation: slideUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.animate-pop { animation: pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.animate-float { animation: float 3s ease-in-out infinite; }
