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

:root {
    /* Paleta de cores principal */
    --primary-gold: #a27300;
    --primary-gold-dark: #a37300;
    --light-beige: #f9f4ef;
    --soft-rose: #fce6d6;
    --pure-white: #ffffff;
    --light-gold: #e5b479;
    --dark-text: #191308;
    --rose-white: #fbf6f2;
    --medium-brown: #887344;
    --burnt-yellow: #a47311;
    
    /* Gradientes com a nova paleta */
    --primary-gradient: linear-gradient(135deg, #a27300 0%, #a37300 50%, #e5b479 100%);
    --secondary-gradient: linear-gradient(135deg, #fce6d6 0%, #e5b479 100%);
    --success-gradient: linear-gradient(135deg, #a27300 0%, #e5b479 100%);
    --gold-gradient: linear-gradient(135deg, #e5b479 0%, #a27300 100%);
    --warm-gradient: linear-gradient(135deg, #f9f4ef 0%, #fce6d6 100%);
    
    /* Elementos de vidro */
    --glass-bg: rgba(249, 244, 239, 0.25);
    --glass-border: rgba(229, 180, 121, 0.18);
    --glass-bg-strong: rgba(249, 244, 239, 0.4);
    
    /* Sombras */
    --shadow-light: 0 8px 32px 0 rgba(136, 115, 68, 0.37);
    --shadow-heavy: 0 15px 35px rgba(162, 115, 0, 0.2);
    --shadow-gold: 0 8px 25px rgba(229, 180, 121, 0.4);
    
    /* Textos */
    --text-primary: #191308;
    --text-secondary: #887344;
    --text-gold: #a27300;
    --text-light: #f9f4ef;
    
    /* Outros */
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #a27300 0%, #a37300 30%, #e5b479 70%, #fce6d6 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 450px;
    width: 100%;
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    margin: 20px;
    position: relative;
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.logo-container {
    text-align: center;
    padding: 20px 0 10px 0;
    background: white;
}

.logo {
    width: 120px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
}

.progress-container {
    padding: 0 20px 20px 20px;
    position: relative;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(136, 115, 68, 0.2);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(162, 115, 0, 0.2);
}

.progress-fill {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 10px;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.main-content {
    padding: 30px 20px;
    text-align: center;
    background: var(--warm-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 25px;
    max-width: 100%;
    display: block;
    box-shadow: var(--shadow-heavy);
    transition: var(--transition);
    animation: imageFloat 3s ease-in-out infinite;
}

.main-image:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.main-title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.highlight {
    color: #FFEB3B;
    font-weight: 900;
}

.highlight-italic {
    color: #FFEB3B;
    font-style: italic;
    font-weight: 900;
}

.highlight-box {
    background: white;
    color: #2E7D32;
    padding: 4px 8px;
    border-radius: 8px;
    font-weight: 900;
    display: inline-block;
    margin: 0 2px;
}

.brand-circle {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #FFF8E1, #FFFFFF);
    border-radius: 50%;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 8px solid #8D6E63;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.brand-text {
    text-align: center;
    color: #2E7D32;
}

.brand-name {
    display: block;
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    margin-bottom: 5px;
}

.brand-subtitle {
    display: block;
    font-size: 20px;
    font-weight: 900;
    font-style: italic;
}

.leaf-decoration {
    position: absolute;
    width: 40px;
    height: 20px;
    background: #4CAF50;
    border-radius: 0 100% 0 100%;
}

.leaf-left {
    top: 20px;
    left: 30px;
    transform: rotate(-45deg);
}

.leaf-right {
    bottom: 20px;
    right: 30px;
    transform: rotate(135deg);
}

.leaf-decoration::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 15px;
    background: #66BB6A;
    border-radius: 0 100% 0 100%;
    top: 2px;
    left: 2px;
}

.warning-text {
    background: linear-gradient(135deg, rgba(252, 230, 214, 0.9), rgba(229, 180, 121, 0.8));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 20px;
    border-radius: 16px;
    margin: 25px 0;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: var(--shadow-gold);
    border: 2px solid rgba(229, 180, 121, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s ease-in-out infinite;
}

.warning-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a27300, #e5b479, #a47311, #887344);
    background-size: 300% 100%;
    animation: gradientMove 3s ease infinite;
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: var(--shadow-light); }
    50% { box-shadow: 0 8px 32px rgba(255, 193, 7, 0.3); }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.attention {
    color: #e53e3e;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    animation: attentionPulse 1.5s ease-in-out infinite;
}

@keyframes attentionPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: var(--shadow-gold);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 8px 32px rgba(229, 180, 121, 0.6);
        transform: scale(1.02);
    }
}

.continue-btn {
    background: var(--gold-gradient);
    color: var(--pure-white);
    border: 2px solid var(--light-gold);
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.continue-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.continue-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(162, 115, 0, 0.6);
    background: linear-gradient(135deg, #e5b479, #a27300);
    border-color: var(--primary-gold);
}

.continue-btn:hover::before {
    left: 100%;
}

.continue-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.continue-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(229, 180, 121, 0.3);
}

/* Estilos modernos para perguntas do quiz */
.question-container {
    padding: 30px 20px;
    text-align: center;
    background: var(--warm-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.question-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.5;
}

.option-button {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    margin: 12px 0;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-align: left;
    width: 100%;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
}

.option-button:hover {
    transform: translateY(-2px) scale(1.02);
    background: var(--glass-bg-strong);
    box-shadow: var(--shadow-heavy);
    border-color: var(--light-gold);
}

.option-button:active {
    transform: translateY(0) scale(0.98);
}

.option-button.selected {
    background: var(--gold-gradient);
    color: var(--pure-white);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.option-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.option-button:hover::before {
    left: 100%;
}

.option-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: var(--transition);
}

.option-button:hover .option-image {
    transform: scale(1.05);
}

.option-emoji {
    font-size: 24px;
    margin-right: 12px;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.input-field {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--glass-border);
    border-radius: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    margin: 15px 0;
}

.input-field:focus {
    outline: none;
    border-color: var(--light-gold);
    box-shadow: 0 0 0 4px rgba(229, 180, 121, 0.2);
    background: var(--glass-bg-strong);
}

.input-field::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.option-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
}

.option-subtitle {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 400;
}

.question-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--warm-gradient);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--glass-border);
}

.back-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
    font-size: 20px;
    font-weight: 600;
}

.back-btn:hover {
    background: var(--glass-bg-strong);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    border-color: var(--light-gold);
}

.logo-small {
    width: 100px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.header-spacer {
    width: 45px;
    height: 45px;
}

/* Estilos para botões de continuação e início */
.continue-quiz-btn {
    background: var(--gold-gradient);
    color: var(--pure-white);
    border: 2px solid var(--light-gold);
    padding: 18px 45px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
}

.continue-quiz-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.continue-quiz-btn.enabled {
    background: var(--gold-gradient);
    cursor: pointer;
    animation: pulseGlow 2s ease-in-out infinite;
    border: 2px solid var(--light-gold);
    box-shadow: var(--shadow-gold);
}

.continue-quiz-btn.enabled:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(162, 115, 0, 0.6);
    animation: none;
}

.start-today-btn {
    background: var(--gold-gradient);
    color: var(--pure-white);
    border: 2px solid var(--light-gold);
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulseGlow 2s ease-in-out infinite;
    width: 100%;
    margin-top: 20px;
}

.start-today-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(162, 115, 0, 0.6);
    background: linear-gradient(135deg, #e5b479, #a27300);
    animation: none;
}

/* Responsividade */
@media (max-width: 480px) {
    .container {
        margin: 10px;
        border-radius: 15px;
    }
    
    .main-title {
        font-size: 20px;
    }
    
    .brand-circle {
        width: 160px;
        height: 160px;
    }
    
    .brand-name {
        font-size: 26px;
    }
    
    .brand-subtitle {
        font-size: 16px;
    }
    
    .continue-btn {
        padding: 12px 30px;
        font-size: 16px;
    }
    
    .question-title {
        font-size: 20px;
    }
    
    .option-button {
        padding: 15px;
        font-size: 14px;
    }
} 