/*
Theme Name: ANA Victoria
Template: hello-elementor
Author: Elementor Team
Description: ANA Victoria Custom theme.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.9.1782827232
Updated: 2026-06-30 15:47:12

*/

/* Quiz Wizard */

.quiz-wizard {
	margin: 0 auto;
	font-family: inherit;
	box-sizing: border-box;
}

.quiz-wizard *,
.quiz-wizard *::before,
.quiz-wizard *::after {
	box-sizing: border-box;
}

.quiz-wizard-inner {
	position: relative;
	border-radius: 28px;
	padding: 44px 36px 36px;
	overflow: hidden;
}

/* Thin accent bar across the very top of the card, filling as steps progress */

.quiz-wizard-progress {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}

.quiz-wizard-progress-bar {
	height: 5px;
	background: rgba(0, 0, 0, 0.06);
}

.quiz-wizard-progress-bar span {
	display: block;
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, #ff7a5c, #ff5a3c);
	transition: width 0.3s ease;
}
.quiz-wizard-step{
	max-width: 536px;
	margin: 0 auto;
}
.quiz-wizard-step-label {
	display: none; /* mockup doesn't show a text step counter */
}
.quiz-wizard-email-gate {
    max-width: 332px;
    margin: 0 auto;
}
/* Step */

.quiz-wizard-question-title {
	margin: 8px 0 26px;
	font-size: 1.25em;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	color: #2b2b33;
}

.quiz-wizard-choices {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 18px;
}

html body .quiz-wizard-choice {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	text-align: left;
	padding: 15px 20px;
	border: 1px solid #e7e7ea;
	border-radius: 30px;
	background: #f6f6f8;
	cursor: pointer;
	font-size: 0.95em;
	line-height: 1.4;
	color: #3a3a42;
	transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.quiz-wizard-choice-label {
	flex: 1;
	white-space: normal !important;
}

.quiz-wizard-choice-radio {
	flex: none;
	width: 41px;
	height: 41px;
	border-radius: 50%;
	border: 2px solid #c9c9d1;
	background: #fff;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.quiz-wizard-choice:hover:not(:disabled) {
	border-color: #c9c9d1;
}

.quiz-wizard-choice:disabled {
	cursor: not-allowed;
}

.quiz-wizard-choice.quiz-wizard-disabled {
	opacity: 0.5;
}

.quiz-wizard-choice.quiz-wizard-selected {
	font-weight: 600;
	border-width: 1px;
}

.quiz-wizard-choice.quiz-wizard-selected .quiz-wizard-choice-radio {
	border-width: 5px;
}

/* Point-value color coding: 1 = red, 2 = yellow, 3 = green */

.quiz-wizard-choice.qw-red {
	background: #fdeceb;
	border-color: #f2a49c;
	color: #b3271e;
}
.quiz-wizard-choice.qw-red .quiz-wizard-choice-radio {
	border-color: #e6483a;
}

.quiz-wizard-choice.qw-yellow {
	background: #fff7e6;
	border-color: #f3cd7f;
	color: #97690a;
}
.quiz-wizard-choice.qw-yellow .quiz-wizard-choice-radio {
	background-color: rgba(249, 153, 98, 1);
	border-color: #fff;;
}

.quiz-wizard-choice.qw-green {
	background: #eaf7ef;
	border-color: #93d3ac;
	color: #1d7a44;
}

button.quiz-wizard-choice.quiz-wizard-disabled {
    display: none;
}
input.quiz-wizard-email-input {
    height: 44px !important;
    border-radius: 30px;
    border: 3px solid rgba(224, 218, 206, 1);
}
.quiz-wizard-choice.qw-green .quiz-wizard-choice-radio {
	background-color: rgba(17, 176, 38, 1);
	border-color: #fff;
}

.quiz-wizard-choice.qw-red .quiz-wizard-choice-radio {
	background-color: #e6483a;
	border-color: #fff;
}

/* Comment (revealed after a choice is made) */

.quiz-wizard-comment {
	padding: 14px 18px;
	border-radius: 14px;
	margin-bottom: 18px;
	font-size: 0.9em;
	line-height: 1.5;
	background: #f6f6f8;
}

.quiz-wizard-comment.qw-red-bg {
	background: #fdeceb;
	color: #b3271e;
}
.quiz-wizard-comment.qw-yellow-bg {
	background: #fff7e6;
	color: #97690a;
}
.quiz-wizard-comment.qw-green-bg {
	background: #eaf7ef;
	color: #1d7a44;
}

/* Tip */

.quiz-wizard-tip {
	font-size: 0.85em;
	color: #6b6b76;
	background: #f6f6f8;
	padding: 12px 16px;
	border-left: 3px solid #ff5a3c;
	border-radius: 8px;
	margin-bottom: 20px;
}

/* Next button */

html body .quiz-wizard-next-btn {
	display: block;
	width: 100%;
	padding: 16px 26px ;
    height: 72px;
    border-width: 3px;
	background: #ff5a3c;
	color: #fff;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	font-size: 0.95em;
	font-weight: 600;
	transition: background-color 0.2s ease;
}

.quiz-wizard-next-btn:hover:not(:disabled) {
	background: #e6492c;
}

.quiz-wizard-next-btn:disabled {
	background: #f6b8a9;
	cursor: not-allowed;
}

/* Email gate: "¡Ya tienes tu resultado!" */

.quiz-wizard-email-gate {
	text-align: center;
	padding: 10px 0 4px;
}

.quiz-wizard-email-gate h3 {
	margin: 0 0 10px;
	font-size: 1.3em;
	font-weight: 700;
	color: #2b2b33;
}

.quiz-wizard-email-gate-subtext {
	margin: 0 0 26px;
	color: #6b6b76;
	font-size: 0.95em;
}

.quiz-wizard-email-gate-error {
	margin: -10px 0 16px;
	color: #b3271e;
	font-size: 0.85em;
}

.quiz-wizard-email-input {
	display: block;
	width: 100%;
	padding: 14px 20px;
	margin-bottom: 16px;
	border: 1px solid #e7e7ea;
	border-radius: 30px;
	background: #f6f6f8;
	font-size: 0.95em;
	color: #3a3a42;
	text-align: center;
}

.quiz-wizard-email-input:focus {
	outline: none;
	border-color: #ff5a3c;
	background: #fff;
}

.quiz-wizard-email-submit-btn {
	display: inline-block;
	padding: 13px 36px;
	background: #ff5a3c;
	color: #fff;
	border: none;
	border-radius: 30px;
	cursor: pointer;
	font-size: 0.95em;
	font-weight: 600;
	transition: background-color 0.2s ease;
}

.quiz-wizard-email-submit-btn:hover:not(:disabled) {
	background: #e6492c;
}

.quiz-wizard-email-submit-btn:disabled {
	background: #f6b8a9;
	cursor: not-allowed;
}

/* Result template wrapper — Elementor content controls its own styling */

.quiz-wizard-result-template {
	width: 100%;
}