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

body {
    font-family: 'Roboto', sans-serif;
    background: #fdfdfd;
    color: #333;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 0;
}

.quiz-container {
    background: white;
    width: 100%;
    max-width: 600px;
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: flex-start;
    align-items: stretch;
    overflow: hidden;
    padding-bottom: 40px;
}

.top-banner {
    width: 100% !important;
    background: #ffffff !important;
    color: #333 !important;
    text-align: center !important;
    padding: 15px 20px !important;
    height: auto !important;
    min-height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 10 !important;
    border-bottom: 1px solid #eee;
}

.top-banner img {
    max-height: 70px !important;
    width: auto !important;
    max-width: 90% !important;
    display: block !important;
    margin: 0 auto !important;
}

/* Progress Bar Refined */
.progress-bar-container {
    width: 100%;
    background: #f0f0f0;
    height: 6px;
    margin: 0;
}

.progress-bar-inner {
    height: 100%;
    background: #1DB954;
    width: 10%;
    transition: width 0.5s ease;
}

.step {
    display: none;
    padding: 20px;
    animation: fadeIn 0.4s ease-in-out;
}

.step.active {
    display: block;
}

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

h2 {
    font-size: 1.6rem;
    font-weight: 900;
    text-align: center;
    margin: 25px 0 15px;
    line-height: 1.2;
    color: #000;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.option-card {
    background-color: #FFFFFF;
    border: 2.5px solid #1DB954;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.option-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(29, 185, 84, 0.15);
}

.option-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.option-card p {
    padding: 12px 10px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #000;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-top: 1px solid #eee;
}

.option-card p::after {
    content: '›';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    color: #1DB954;
    font-size: 1.2rem;
    margin-left: 5px;
}

.urgent-badge {
    background-color: #000;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-right: 5px;
}

.option-item-card {
    background-color: #f9fdfa;
    border: 1.5px solid #d4edda;
    border-radius: 12px;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.option-item-card:hover {
    border-color: #1DB954;
    background-color: #e9f7ef;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(29, 185, 84, 0.1);
}

.check-icon {
    font-size: 1.2rem;
    margin-right: 15px;
}

.option-text {
    flex-grow: 1;
    font-size: 1.1rem;
    font-weight: 900;
    color: #000;
    display: flex;
    flex-direction: column;
}

.option-desc {
    font-size: 0.9rem;
    font-weight: 400;
    color: #555;
    margin-top: 4px;
    line-height: 1.3;
}

.arrow-icon {
    color: #ccc;
    font-size: 1.5rem;
    font-weight: 300;
}

.multi-option-item {
    background-color: #f9fdfa;
    border: 1.5px solid #d4edda;
    border-radius: 12px;
    padding: 10px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.multi-option-item:hover {
    border-color: #1DB954;
    background-color: #e9f7ef;
}

.multi-option-item.selected {
    border-color: #1DB954;
    background-color: #e9f7ef;
    box-shadow: inset 0 0 0 1px #1DB954;
}

.multi-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    margin-right: 15px;
}

.custom-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 6px;
    margin-right: 15px;
    position: relative;
    flex-shrink: 0;
}

.multi-option-item.selected .custom-checkbox {
    border-color: #1DB954;
    background-color: #1DB954;
}

.multi-option-item.selected .custom-checkbox::after {
    content: '✓';
    color: white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    font-weight: bold;
}

.text-green {
    color: #1DB954;
    font-weight: 700;
}

.subheadline {
    text-align: center;
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 10px;
}

.hero-image-container {
    margin: 20px 0;
    text-align: center;
    border: 4px solid #1DB954;
    border-radius: 20px;
    padding: 5px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    display: block;
    border-radius: 15px;
}

/* New Stage 1 Styles */
.urgent-badge-new {
    background-color: #000;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 900;
    font-size: 1.4rem;
}

.subheadline-light {
    text-align: center;
    font-size: 0.95rem;
    color: #7a8c80;
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.4;
    padding: 0 15px;
    text-transform: uppercase;
}

.benefits-list-container {
    margin: 20px 0 30px;
    padding: 0 25px;
}

.benefits-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-ul li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1DB954;
    margin-bottom: 12px;
    gap: 15px;
}

.check-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: #1DB954;
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    flex-shrink: 0;
}


.btn-primary {
    width: 100%;
    padding: 18px 20px;
    background: #1DB954;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 #158a3d;
    text-transform: uppercase;
    margin-top: 20px;
}

.btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #158a3d;
}

.pulsing-cta {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.footer-warning {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 40px;
}

@media (max-width: 480px) {
    h2 { font-size: 1.5rem; }
    .subheadline { font-size: 1rem; }
    .btn-primary { font-size: 1.1rem; }
}

.btn-cta {
    width: 100%;
    padding: 18px 20px;
    background: #1DB954;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 0 #158a3d;
    text-transform: uppercase;
    margin-top: 20px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-cta:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(29, 185, 84, 0.3);
}

.btn-cta:active {
    transform: translateY(1px);
}

@media (max-width: 480px) {
    .btn-cta { font-size: 1.1rem; }
}

/* Loading Steps Styles */
.highlight-green-bg {
    background-color: #1DB954;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 900;
}

.highlight-green-box {
    background-color: #1DB954;
    color: #000;
    padding: 2px 6px;
    border-radius: 2px;
    font-weight: 900;
}

.loading-bar-group {
    max-width: 90%;
    margin: 0 auto;
}

.loading-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #666;
}

.loading-bar-container {
    width: 100%;
    background: #eef2f3;
    height: 12px;
    border-radius: 10px;
    overflow: hidden;
}

.loading-bar-inner {
    height: 100%;
    background: #1DB954;
    border-radius: 10px;
    transition: width 0.1s linear;
}

/* Loading Carousel Styles */
.loading-carousel-container {
    background: #fff;
    margin-bottom: 20px;
}

.loading-carousel-track {
    width: 100%;
    height: 100%;
}

.loading-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
}

.loading-slide.active {
    opacity: 1;
}

.loading-slide p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.4;
}

/* Glassmorphism Refinements */
.audio-card, .testimonial-card, .comparison-table, .comp-card, .price-item-card, .test-180-box, .risk-zero-box {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07) !important;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(29, 185, 84, 0.3);
}

.btn-primary:active {
    transform: translateY(1px);
}

/* Audio Player Style (WhatsApp Premium) */
.audio-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 20px;
    padding: 12px 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    max-width: 380px;
    margin: 20px auto;
    text-align: left;
}

.audio-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 5px;
}

.audio-player-side {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 5px;
}

.audio-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-top: 5px; /* Deixa o nome um pouco mais pra baixo */
}

.audio-controls-row {
    background: #f0f2f5;
    border-radius: 30px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.play-icon {
    font-size: 1rem;
    color: #54656f;
}

.audio-wave {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distribui as barras em todo o espaço */
    flex-grow: 1;
    margin: 0 10px;
    height: 30px;
}

.wave-bar {
    width: 2px;
    background: #d1d1d1; /* Cinza padrão */
    border-radius: 2px;
    transition: background 0.2s ease;
}

.wave-bar.played {
    background: #34b7f1; /* Azul WhatsApp quando tocado */
}

.audio-duration {
    font-size: 0.75rem;
    color: #667781;
    margin-left: 5px;
}

/* Testimonial Style */
.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 20px;
    text-align: left;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #1DB954;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 900;
    font-size: 1.1rem;
    color: #333;
}

.testimonial-location {
    font-size: 0.85rem;
    color: #888;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
}

/* Results Table & Charts Styles - ORIGINAL DESIGN */
.comparison-table {
    border: 4px solid #1e4b8a;
    border-radius: 12px;
    overflow: hidden;
    margin: 25px 0;
    background: #fff;
}

.comparison-header {
    display: flex;
    border-bottom: 4px solid #1e4b8a;
}

.header-col {
    flex: 1;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.red-col { background: #fff; border-right: 4px solid #1e4b8a; }
.green-col { background: #fff; }

.header-col .icon { font-size: 2.5rem; margin-bottom: 5px; }
.header-col .label { font-size: 1.5rem; font-weight: 900; color: #1e4b8a; line-height: 1.1; }
.header-col .label strong { color: #1DB954; }
.header-col .label small { display: block; font-size: 0.9rem; font-weight: 400; color: #1DB954; }

.comparison-row {
    display: flex;
    border-bottom: 2px solid #1e4b8a;
}

.comparison-row:last-child { border-bottom: none; }

.comparison-row .col {
    flex: 1;
    padding: 15px 12px;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    line-height: 1.2;
    text-align: left;
}

.col.red { border-right: 4px solid #1e4b8a; color: #000; }
.col.green { color: #000; }

.analysis-charts {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.chart-item { width: 100%; }

.chart-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.chart-bar-container {
    width: 100%;
    background: #f0f2f5;
    height: 10px;
    border-radius: 10px;
    position: relative;
}

.chart-bar {
    height: 100%;
    border-radius: 10px;
    position: relative;
}

.chart-bar.red { background: #ff4d4d; }
.chart-bar.green { background: #1DB954; }

.chart-bar::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -5px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 4px solid currentColor;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.chart-bar.red::after { border-color: #ff4d4d; color: #ff4d4d; }
.chart-bar.green::after { border-color: #1DB954; color: #1DB954; }

/* Comparison Cards Step 27 */
.comparison-cards-container {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.comp-card {
    flex: 1;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.comp-label {
    display: block;
    font-weight: 900;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #333;
}

.comp-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.comp-text {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #555;
    text-align: left;
    margin-bottom: 10px;
    height: 100px; /* Alinhar textos */
}

.comp-bar-container {
    width: 100%;
    background: #f0f0f0;
    height: 6px;
    border-radius: 10px;
    overflow: hidden;
}

.comp-bar {
    height: 100%;
    border-radius: 10px;
}

.comp-bar.gray { background: #ccc; }
.comp-bar.green { background: #1DB954; }

@media (max-width: 480px) {
    .comp-text { height: auto; }
}

/* Price Items Step 27 */
.price-items-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.price-item-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 0.95rem;
    font-weight: 800;
    color: #000;
    text-align: left;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

/* Test 180 Days Box Step 27 */
.test-180-box {
    background: #e8f5e9;
    border-radius: 15px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.test-title {
    color: #2e7d32;
    font-weight: 900;
    font-size: 1.1rem;
    margin: 0;
}

.test-subtitle {
    color: #1b5e20;
    font-size: 0.95rem;
    margin: 0;
}

.test-price-tag {
    background: #c8e6c9;
    padding: 8px 15px;
    border-radius: 10px;
    text-align: right;
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.7rem;
    color: #2e7d32;
    font-weight: 700;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 900;
    color: #1b5e20;
}

/* Risk Box & FAQ Step 27 */
.risk-zero-box {
    background: #e0e0e0;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    margin-top: 40px;
}

.faq-section {
    text-align: left;
    margin-top: 50px;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    cursor: pointer;
}

.faq-question {
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
}

.faq-answer {
    font-size: 0.95rem;
    color: #333;
    margin-top: 10px;
    line-height: 1.5;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
    color: #1DB954;
}
