.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */:root {
    --black-matte: #111111;
    --gold-metallic: #D4AF37;
    --ice-white: #F0F0F0;
    --blood-red: #A00000;
    --charcoal: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black-matte);
    color: var(--ice-white);
    overflow-x: hidden;
    height: 100vh;
}

.screen {
    display: none;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.screen.active {
    display: flex;
    animation: fadeIn 0.5s ease-in-out;
}

/* Tela de Início */
#start-screen {
    background: radial-gradient(circle at center, rgba(212,175,55,0.1) 0%, var(--black-matte) 100%);
}

.luxury-container {
    text-align: center;
    max-width: 600px;
    padding: 40px;
}

.title {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: var(--gold-metallic);
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.subtitle {
    font-size: 18px;
    color: var(--ice-white);
    margin-bottom: 40px;
    opacity: 0.9;
}

.start-btn {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    padding: 20px 60px;
    background: transparent;
    border: 2px solid var(--gold-metallic);
    color: var(--gold-metallic);
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 2px;
}

.start-btn:hover {
    background: var(--gold-metallic);
    color: var(--black-matte);
    box-shadow: 0 0 30px rgba(212,175,55,0.5);
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

.fade-in-delay {
    animation: fadeIn 1.5s ease-in-out 1s both;
}

.pulse-border {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(212,175,55,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

/* Barra de Progresso */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255,255,255,0.1);
}

.progress-fill {
    height: 100%;
    background: var(--gold-metallic);
    width: 0%;
    transition: width 0.3s ease;
}

/* Perguntas */
.question-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
}

#question-text {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--gold-metallic);
}

#options-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.option-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    padding: 25px;
    background: transparent;
    border: 1px solid rgba(240,240,240,0.2);
    color: var(--ice-white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.option-btn:hover {
    background: var(--charcoal);
    border-color: var(--gold-metallic);
    transform: translateX(5px);
}

.option-btn.selected {
    background: var(--gold-metallic);
    color: var(--black-matte);
    animation: selectFlash 0.5s ease;
}

@keyframes selectFlash {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px var(--gold-metallic); }
    100% { transform: scale(1); }
}

/* Tela de Análise */
#analysis-screen {
    background: var(--black-matte);
}

.console-animation {
    font-family: 'Courier New', monospace;
    font-size: 24px;
    color: var(--gold-metallic);
}

.console-text {
    opacity: 0;
    animation: typewriter 1s ease forwards;
}

.console-text:nth-child(1) { animation-delay: 0.5s; }
.console-text:nth-child(2) { animation-delay: 1.5s; }
.console-text:nth-child(3) { animation-delay: 2.5s; }

@keyframes typewriter {
    to { opacity: 1; }
}

/* Resultados */
.result-container {
    text-align: center;
    max-width: 800px;
    padding: 40px;
}

.sin-name {
    font-family: 'Cinzel', serif;
    font-size: 64px;
    color: var(--blood-red);
    margin-bottom: 30px;
    animation: revealImpact 0.5s ease;
}

@keyframes revealImpact {
    0% { transform: scale(1.2); filter: blur(5px); opacity: 0; }
    100% { transform: scale(1); filter: blur(0); opacity: 1; }
}

.sin-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: var(--ice-white);
    opacity: 0.9;
}

.offers-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.offer-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,175,55,0.3);
    padding: 40px;
    max-width: 400px;
    position: relative;
}

.offer-box.premium {
    border-color: var(--gold-metallic);
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212,175,55,0.3); }
    50% { box-shadow: 0 0 40px rgba(212,175,55,0.6); }
}

.offer-flag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blood-red);
    color: white;
    padding: 5px 20px;
    font-size: 14px;
    font-weight: bold;
}

.price {
    font-size: 36px;
    color: var(--gold-metallic);
    margin: 20px 0;
}

.buy-btn {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    padding: 15px 40px;
    background: var(--gold-metallic);
    color: var(--black-matte);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212,175,55,0.5);
}

/* Exit Popup */
.exit-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--black-matte);
    border: 2px solid var(--blood-red);
    padding: 40px;
    text-align: center;
    max-width: 500px;
}

.warning-text {
    color: var(--blood-red);
    font-size: 24px;
    margin-bottom: 30px;
}

.stay-btn, .exit-btn {
    font-size: 16px;
    padding: 15px 30px;
    margin: 10px;
    cursor: pointer;
}

.stay-btn {
    background: var(--gold-metallic);
    color: var(--black-matte);
    border: none;
}

.exit-btn {
    background: transparent;
    color: var(--ice-white);
    border: 1px solid var(--ice-white);
}

/* Responsividade */
@media (max-width: 768px) {
    .title { font-size: 36px; }
    .sin-name { font-size: 48px; }
    .question-container { padding: 20px; }
    .option-btn { font-size: 16px; padding: 20px; }
}/* End custom CSS */