/* RESET & GLOBALS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #800020;
    --primary-dark: #5a0018;
    --primary-light: #b30029;
    --secondary: #4a154b;
    --secondary-light: #6a1b6c;
    --accent: #ffd700;
    --accent-light: #ffe44d;
    --text: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --text-muted: #999999;
    --bg-light: #faf0e6;
    --bg-dark: #1a0315;
    --red: #cc0000;
    --orange: #ff9800;
    --gray: #888888;
    --green: #28a745;
    --blue: #2196f3;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    --alert-bg: rgba(255, 215, 0, 0.15);
    --warning-bg: rgba(204, 0, 0, 0.08);
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text);
    line-height: 1.6;
    background-image: url('https://via.placeholder.com/400/faf0e6/333333?text=');
    background-repeat: repeat;
    background-size: 300px;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    padding: 20px;
}

.hidden {
    display: none !important;
    opacity: 0;
}

/* ELEMENTOS MÍSTICOS */
.mystical-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://via.placeholder.com/400/1a031511/1a031511?text=');
    pointer-events: none;
    z-index: -1;
}

.moon-animation {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
    z-index: -1;
    opacity: 0.7;
    animation: moonGlow 8s infinite alternate;
}

@keyframes moonGlow {
    0% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 40px rgba(255, 255, 255, 0.9);
        transform: scale(1.1);
    }
}

.star {
    position: fixed;
    background-color: white;
    border-radius: 50%;
    opacity: 0.6;
    animation: twinkle 4s infinite alternate;
    z-index: -1;
}

@keyframes twinkle {
    0% {
        opacity: 0.2;
    }
    100% {
        opacity: 0.8;
    }
}

.corner-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.15;
    z-index: 0;
}

.top-left {
    top: 20px;
    left: 20px;
    background: url('https://via.placeholder.com/400/800020/800020?text=✧') no-repeat center/contain;
}

.top-right {
    top: 20px;
    right: 20px;
    background: url('https://via.placeholder.com/400/800020/800020?text=✧') no-repeat center/contain;
    transform: rotate(90deg);
}

.bottom-left {
    bottom: 20px;
    left: 20px;
    background: url('https://via.placeholder.com/400/800020/800020?text=✧') no-repeat center/contain;
    transform: rotate(270deg);
}

.bottom-right {
    bottom: 20px;
    right: 20px;
    background: url('https://via.placeholder.com/400/800020/800020?text=✧') no-repeat center/contain;
    transform: rotate(180deg);
}

/* HEADER */
.header {
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://via.placeholder.com/400/80002033/80002033?text=');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.header-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    text-align: center;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* TELA DE BOAS-VINDAS */
.welcome-container {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    text-align: center;
    background-image: url('https://via.placeholder.com/400/ffffff22/ffffff22?text=');
    background-size: cover;
    position: relative;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out;
}

.welcome-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(128, 0, 32, 0.05), rgba(74, 21, 75, 0.1));
    z-index: 0;
}

.welcome-container::after {
    content: "✧ ★ ✦ ✮ ✯";
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-size: 1.2rem;
    color: rgba(128, 0, 32, 0.1);
    letter-spacing: 8px;
}

.welcome-content {
    position: relative;
    z-index: 1;
}

.welcome-container h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.welcome-container p {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Melhorias na estilização do alerta (Imagem 1) */
.alert-text {
    background-color: var(--alert-bg);
    color: #664d00;
    padding: 20px;
    border-left: 4px solid var(--accent);
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    font-size: 1.05rem;
    line-height: 1.5;
    text-align: left;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.alert-text:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.alert-text strong {
    color: var(--primary-dark);
    font-weight: 700;
}

.alert-text::before {
    content: "⚠️";
    font-size: 1.5rem;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    animation: pulseAlert 2s infinite alternate;
}

@keyframes pulseAlert {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.user-info-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary);
    font-size: 1rem;
}

.form-group label::before {
    content: "❂";
    margin-right: 8px;
    font-size: 0.8rem;
    color: var(--primary);
    opacity: 0.5;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.2);
    animation: inputPulse 1.5s infinite alternate;
}

@keyframes inputPulse {
    0% {
        box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
    }
    100% {
        box-shadow: 0 0 0 5px rgba(128, 0, 32, 0.2);
    }
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.start-quiz-btn {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: var(--text-white);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 40px;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(128, 0, 32, 0.4);
    margin-top: 15px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.start-quiz-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(128, 0, 32, 0.5);
    background: linear-gradient(to right, var(--primary-light), var(--secondary-light));
}

.button-glow {
    position: absolute;
    width: 30px;
    height: 100%;
    top: 0;
    left: -40px;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-30deg);
    animation: button-glow 2s infinite;
}

@keyframes button-glow {
    0% {
        left: -40px;
    }
    100% {
        left: 110%;
    }
}

.form-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 20px;
}

/* CONTÊINER DO QUIZ */
.quiz-container {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    transition: opacity 0.5s ease-in-out;
}

.progress-container {
    margin-bottom: 30px;
}

.progress-bar {
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 10%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.progress-text {
    text-align: right;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.question-container {
    text-align: center;
}

.question-container h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
    line-height: 1.4;
}

.question-observation {
    background-color: rgba(128, 0, 32, 0.05);
    border-left: 3px solid var(--primary);
    padding: 12px 15px;
    margin: 15px 0 25px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-light);
    font-style: italic;
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
    text-align: left;
}

.rating-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

.rating-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.rating-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 18%;
    padding: 15px 0;
    border-radius: var(--border-radius);
    transition: all 0.2s;
}

.rating-btn:hover {
    background-color: #f5f5f5;
}

.circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 auto;
    border: 2px solid;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.rating-btn:hover .circle {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.rating-btn .circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 0%;
    background: currentColor;
    border-radius: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.rating-btn:hover .circle::after {
    width: 70%;
    height: 70%;
    opacity: 0.1;
}

.rating-btn.selected .circle {
    background-color: currentColor;
    border-width: 3px;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.rating-btn.selected .circle::after {
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.rating-btn:active .circle {
    transform: scale(0.9);
    transition: transform 0.1s;
}

.red {
    border-color: var(--red);
}

.orange {
    border-color: var(--orange);
}

.gray {
    border-color: var(--gray);
}

.green {
    border-color: var(--green);
}

.blue {
    border-color: var(--blue);
}

/* CONTÊINER DE RESULTADOS */
.result-container {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 30px;
    transition: opacity 0.5s ease-in-out;
}

.result-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--text-white);
    padding: 30px 20px;
    text-align: center;
}

.result-header h2 {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.entity-result {
    padding: 35px 30px;
}

.entity-result h3 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.entity-symbol {
    position: relative;
}

.entity-symbol::before,
.entity-symbol::after {
    content: "❂";
    position: absolute;
    color: var(--primary);
    font-size: 1.5rem;
    opacity: 0.7;
}

.entity-symbol::before {
    left: -30px;
}

.entity-symbol::after {
    right: -30px;
}

.entity-image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.entity-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(to bottom right, var(--primary-light), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.entity-image::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: transparent;
    border: 2px dashed rgba(255, 215, 0, 0.5);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.pomba-gira-symbol {
    width: 70%;
    height: 70%;
    background-image: url('https://via.placeholder.com/400/ffffff44/ffffff44?text=');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.pomba-gira-symbol::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.3;
        transform: scale(0.9);
    }
    100% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.entity-description {
    text-align: center;
    margin-bottom: 35px;
    padding: 0 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
}

/* Melhorias na estilização da mensagem de alerta (Imagem 2) */
.warning-message {
    background-color: var(--warning-bg);
    border: 1px solid rgba(204, 0, 0, 0.2);
    border-radius: var(--border-radius);
    padding: 25px;
    margin: 30px 0;
    position: relative;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.warning-message:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.warning-message h4 {
    color: var(--red);
    margin-bottom: 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.warning-message h4::before {
    content: "⚠️";
    margin-right: 10px;
    font-size: 1.4rem;
    animation: shake 5s infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    2%, 6%, 10% { transform: translateX(-2px); }
    4%, 8%, 12% { transform: translateX(2px); }
    14% { transform: translateX(0); }
}

.warning-message p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.warning-message strong {
    color: var(--red);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 1.1em;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

/* Destaque especial para a palavra "RARA" */
.warning-message strong:not(.no-effect)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--red));
    border-radius: 2px;
    opacity: 0.6;
}

.warning-message ul {
    list-style-type: none;
    padding: 5px 0 0 5px;
    margin-top: 10px;
}

.warning-message li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.warning-message li:before {
    content: "⚠️";
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 16px;
}

.warning-message li:hover {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

.entity-message {
    background: linear-gradient(to right, rgba(128, 0, 32, 0.05), rgba(74, 21, 75, 0.05));
    border-left: 4px solid var(--primary);
    padding: 25px;
    margin: 30px 0;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
    border-radius: 0 12px 12px 0;
    overflow: hidden;
}

.entity-message::before {
    content: """;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    position: absolute;
    top: -20px;
    left: 10px;
    color: rgba(128, 0, 32, 0.15);
}

.entity-message::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(128, 0, 32, 0) 0%, 
        rgba(128, 0, 32, 0.05) 50%, 
        rgba(128, 0, 32, 0) 100%);
    animation: messageGlow 3s infinite alternate;
    pointer-events: none;
}

@keyframes messageGlow {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        transform: translateX(100%);
    }
}

.entity-message-signature {
    text-align: right;
    font-weight: 600;
    font-style: italic;
    color: var(--primary);
    margin-top: 15px;
}

.entity-profile {
    margin-bottom: 25px;
}

.entity-profile h4 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--secondary);
    font-size: 1.4rem;
}

.radar-chart-container {
    max-width: 420px;
    margin: 0 auto;
    height: 270px;
    position: relative;
}

.profile-caption {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 10px;
    margin-bottom: 15px;
}

.entity-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 35px;
    margin-top: 5px;
}

.detail-card {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
}

.detail-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary);
    text-align: center;
}

.detail-card ul {
    list-style-position: inside;
    padding-left: 5px;
}

.detail-card li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* OFERTA DO CURSO */
.course-offer {
    background: linear-gradient(to bottom, #fff, var(--bg-light));
    padding: 45px 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.offer-header {
    text-align: center;
    margin-bottom: 30px;
}

.offer-header h2 {
    font-size: 2rem;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    padding: 0 20px;
    line-height: 1.3;
}

.offer-header h3 {
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.special-notice {
    background: linear-gradient(to right, rgba(128, 0, 32, 0.1), rgba(74, 21, 75, 0.1));
    border-radius: var(--border-radius);
    padding: 20px;
    margin: 25px 0;
    text-align: center;
    border: 1px dashed rgba(128, 0, 32, 0.3);
    transition: all 0.3s ease;
}

.special-notice:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.special-notice p {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.special-notice strong {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 0.5px;
}

.offer-subheader {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.entity-rarity {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 35px;
    line-height: 1.5;
}

.offer-content {
    padding: 0 10px;
}

.offer-content > p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.highlight {
    background: linear-gradient(to bottom, transparent 50%, rgba(255, 215, 0, 0.3) 50%);
    padding: 0 3px;
}

.offer-benefits, .exclusive-bonus {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid rgba(128, 0, 32, 0.1);
    transition: all 0.3s ease;
}

.offer-benefits:hover, .exclusive-bonus:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.offer-tag {
    position: absolute;
    top: -12px;
    left: 30px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 8px rgba(128, 0, 32, 0.2);
}

.offer-benefits h4, .exclusive-bonus h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    color: var(--secondary);
}

.special-marker, .bonus-marker {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.special-marker {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.bonus-marker {
    background: var(--accent);
}

.offer-benefits ul, .exclusive-bonus ul {
    list-style: none;
    padding-left: 10px;
}

.offer-benefits li, .exclusive-bonus li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
    transition: transform 0.2s ease;
}

.offer-benefits li:hover, .exclusive-bonus li:hover {
    transform: translateX(5px);
}

.offer-benefits li:before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

.exclusive-bonus li {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.bonus-value {
    font-weight: 700;
    color: var(--primary);
    margin-right: 10px;
    display: inline-block;
    min-width: 60px;
}

.price-container {
    text-align: center;
    background: white;
    padding: 35px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.price-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.price-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--primary-dark);
    padding: 5px 20px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 25px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.price-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.scholarship-info {
    background: linear-gradient(to right, var(--primary-light), var(--secondary));
    color: white;
    padding: 5px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: inline-block;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.price-new {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 10px;
}

.price-description {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 300px;
    margin: 0 auto 15px;
}

.secure-payment {
    margin: 15px auto;
    max-width: 400px;
}

.secure-payment img {
    width: 100%;
    height: auto;
}

.timer-container {
    text-align: center;
    margin-bottom: 35px;
    background: linear-gradient(to right, rgba(74, 21, 75, 0.05), rgba(128, 0, 32, 0.05));
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.timer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary);
}

.timer-date {
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

.timer {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    margin: 0 5px;
    transition: transform 0.2s ease;
}

.timer-unit:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.timer-number {
    line-height: 1;
    font-size: 2.5rem;
}

.timer-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 5px;
}

.cta-button {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 25px;
    padding: 20px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    color: var(--text-white);
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 40px;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(128, 0, 32, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(128, 0, 32, 0.5);
}

.guarantee {
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.certification-info {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.certification-info:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.certification-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.5rem;
}

.certification-text {
    flex: 1;
}

.certification-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary);
}

.certification-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.course-details {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 35px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.course-details:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.course-details h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--secondary);
    text-align: center;
}

.course-details p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.course-details strong {
    color: var(--primary);
    font-weight: 700;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: transform 0.2s ease;
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-icon {
    width: 25px;
    height: 25px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.4;
}

/* DEPOIMENTOS */
.testimonials {
    margin-bottom: 40px;
}

.testimonials h4 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.4rem;
    color: var(--secondary);
}

.testimonial {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
    overflow: hidden;
}

.testimonial-author p {
    margin: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
}

/* CTA FINAL */
.final-cta {
    text-align: center;
    background: linear-gradient(to bottom, var(--primary-light), var(--primary));
    padding: 40px 30px;
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(128, 0, 32, 0.3);
}

.final-warning {
    margin-bottom: 30px;
    text-align: left;
}

.final-warning h3 {
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.final-warning h3::before {
    content: "⚠️";
    margin-right: 10px;
    animation: shake 5s infinite;
}

.warning-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 15px;
    margin-bottom: 20px;
}

.warning-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
    transition: transform 0.2s ease;
}

.warning-list li:hover {
    transform: translateX(5px);
}

.warning-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: var(--accent);
    font-weight: bold;
}

.final-cta h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-secondary {
    display: inline-block;
    padding: 15px 30px;
    background: white;
    color: var(--primary);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 80%);
    animation: pulse 3s infinite;
    z-index: 0;
}

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

.final-cta > * {
    position: relative;
    z-index: 1;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 30px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
    .entity-details {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .entity-result {
        padding: 25px 20px;
    }
    
    .rating-labels {
        display: none;
    }
    
    .offer-benefits, .exclusive-bonus {
        padding: 25px 20px;
    }
    
    .timer-unit {
        width: 70px;
        height: 70px;
    }
    
    .timer-number {
        font-size: 2rem;
    }
    
    .certification-info {
        flex-direction: column;
        text-align: center;
    }
    
    .form-group input {
        padding: 12px;
    }
    
    .welcome-container {
        padding: 30px 20px;
    }
    
    .welcome-container h2 {
        font-size: 1.8rem;
    }
    
    .header h1 {
        font-size: 2.2rem;
    }
    
    .question-observation {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    
    .warning-message {
        padding: 20px 15px;
    }
    
    .warning-message h4 {
        font-size: 1.2rem;
    }
    
    .special-notice p {
        font-size: 1rem;
    }
    
    .warning-list li {
        font-size: 0.95rem;
    }
    
    .alert-text {
        font-size: 0.95rem;
        padding: 15px;
    }
    
    .radar-chart-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .header h1 {
        font-size: 1.8rem;
    }
    
    .quiz-container, .result-container, .welcome-container {
        padding: 20px 15px;
    }
    
    .rating-container {
        gap: 5px;
    }
    
    .circle {
        width: 35px;
        height: 35px;
    }
    
    .timer-unit {
        width: 60px;
        height: 60px;
    }
    
    .timer-number {
        font-size: 1.8rem;
    }
    
    .testimonial {
        padding: 25px 20px;
    }
    
    .cta-button, .start-quiz-btn {
        font-size: 1.1rem;
        padding: 15px;
    }
    
    .welcome-container h2 {
        font-size: 1.6rem;
    }
    
    .entity-symbol::before,
    .entity-symbol::after {
        display: none;
    }
    
    .entity-result h3 {
        font-size: 1.8rem;
    }
    
    .radar-chart-container {
        height: 220px;
    }
    
    .alert-text::before {
        display: block;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .warning-message h4::before {
        margin-bottom: 5px;
    }
}

.certificado-img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.exclusive-bonus ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
    padding-left: 0;
}

.price-container-bonus {
    display: flex;
    align-items: center;
    margin-right: 10px;
    position: relative;
    min-width: 80px;
}

.price-strikethrough {
    text-decoration: line-through;
    color: #666;
    position: relative;
    display: inline-block;
}

.exclusive-bonus {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.exclusive-bonus h4 {
    margin-bottom: 30px;
    font-size: 1.3rem;
    color: #4a154b;
}

.exclusive-bonus ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.exclusive-bonus ul li {
    display: grid;
    grid-template-columns: 100px 90px 1fr;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.price-strikethrough {
    text-decoration: line-through;
    color: #777;
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    text-align: right;
    padding-right: 10px;
}

.gratis-tag {
    background-color: #4CAF50;
    color: white;
    padding: 6px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.bonus-content {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #333;
}

.bonus-yellow-icon {
    width: 40px;
    height: 40px;
    background-color: #ffd700;
    border-radius: 50%;
    margin-right: 20px;
}

.bonus-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.bonus-header h3 {
    font-family: 'Playfair Display', serif;
    color: #4a154b;
    font-size: 1.6rem;
    margin: 0;
}







/* CSS para os accordions expansíveis */
.detail-accordion {
    margin-bottom: 15px;
    border: 1px solid rgba(128, 0, 32, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.accordion-title {
    padding: 15px;
    background: linear-gradient(to right, rgba(128, 0, 32, 0.05), rgba(74, 21, 75, 0.05));
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: var(--primary);
    list-style: none;
    transition: all 0.3s ease;
}

.accordion-title:hover {
    background: linear-gradient(to right, rgba(128, 0, 32, 0.1), rgba(74, 21, 75, 0.1));
}

.accordion-title::-webkit-details-marker {
    display: none;
}

.accordion-title:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

details[open] .accordion-title:after {
    content: "-";
}

.accordion-content {
    padding: 15px 20px;
    background-color: white;
}

.accordion-content ul {
    list-style-type: none;
    padding-left: 10px;
}

.accordion-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    transition: transform 0.2s ease;
}

.accordion-content li:before {
    content: "✓";
    color: var(--primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.accordion-content li:hover {
    transform: translateX(5px);
}

/* NOVOS ELEMENTOS: LOADING E BOTÃO VOLTAR */
.quiz-controls {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
}

.prev-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 20px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.prev-btn:hover {
    opacity: 1;
    background-color: rgba(128, 0, 32, 0.05);
}

.prev-btn .arrow {
    font-size: 1.1rem;
}

.loading-container {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 60px 30px;
    box-shadow: var(--shadow);
    text-align: center;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-content {
    width: 100%;
    max-width: 500px;
}

.mystical-loader {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.loader-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(128, 0, 32, 0.1);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.loader-symbol {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--primary);
    animation: pulse 2s infinite alternate;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.loading-container h2 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.loading-container p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
}

.loading-bar-container {
    width: 100%;
    height: 8px;
    background-color: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

/* RESPONSIVIDADE (MOBILE & TABLET) */
@media (max-width: 768px) {
    /* Ajustes Gerais */
    .container {
        padding: 15px;
        width: 100%;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Header */
    .header h1 {
        font-size: 1.8rem;
    }

    .header p {
        font-size: 1rem;
    }

    /* Welcome Screen */
    .welcome-container {
        padding: 30px 20px;
    }

    .welcome-container h2 {
        font-size: 1.6rem;
    }

    .welcome-container p {
        font-size: 1rem;
    }

    /* Quiz */
    .quiz-container {
        padding: 20px 15px;
    }

    .question-container h2 {
        font-size: 1.3rem;
    }

    .rating-labels {
        font-size: 0.65rem;
    }

    .circle {
        width: 35px;
        height: 35px;
    }

    /* Resultados */
    .entity-name {
        font-size: 1.8rem;
    }

    .radar-chart-container {
        height: 250px;
    }

    .entity-details {
        grid-template-columns: 1fr;
    }

    /* Seção de Oferta e Bônus (Correção da Imagem) */
    .exclusive-bonus {
        padding: 20px 15px;
    }

    .exclusive-bonus ul li {
        grid-template-columns: 1fr; /* Empilha os itens no mobile */
        gap: 10px;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding-bottom: 20px;
    }

    .exclusive-bonus ul li:last-child {
        border-bottom: none;
    }

    .price-strikethrough {
        text-align: center;
        padding-right: 0;
        font-size: 1.1rem;
    }

    .gratis-tag {
        width: fit-content;
        margin: 0 auto;
    }

    .bonus-content {
        font-size: 0.95rem;
    }

    /* Certificado e Imagens */
    .certificado-img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    /* Botões */
    .start-quiz-btn, .cta-button {
        font-size: 1rem;
        padding: 15px;
        width: 100%;
        max-width: 100%;
    }

    /* Bônus Especial (Livro) */
    .special-bonus-session div[style*="display: flex"] {
        flex-direction: column !important;
    }

    .special-bonus-session img {
        max-width: 90% !important;
        margin: 0 auto;
    }

    /* Feature Grid */
    .feature-grid {
        grid-template-columns: 1fr;
    }

    /* Ajustes de Preço e Timer */
    .price-container {
        flex-direction: column;
        text-align: center;
    }

    .timer-unit {
        width: 65px;
        height: 65px;
    }

    .timer-number {
        font-size: 1.8rem;
    }

    /* Depoimentos */
    .testimonial {
        padding: 15px;
    }

    /* Certificação */
    .certification-info {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .certification-icon {
        margin: 0 auto 15px;
    }

    /* Radar Chart */
    .radar-chart-container {
        width: 100%;
        overflow: hidden;
    }
}

/* Ajustes extras para telas muito pequenas */
@media (max-width: 480px) {
    .header h1 {
        font-size: 1.5rem;
    }

    .rating-container {
        gap: 5px;
    }

    .circle {
        width: 30px;
        height: 30px;
    }

    .rating-labels span {
        display: none; /* Esconde labels intermediários em telas minúsculas */
    }

    .rating-labels span:first-child, 
    .rating-labels span:last-child {
        display: block; /* Mantém apenas os extremos */
    }
}

/* ESTILOS PARA IMAGENS DE ENTIDADES E DEPOIMENTOS */
.entity-image-container {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--accent);
    background-color: var(--bg-dark);
}

.entity-image-display {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.entity-image-display:hover {
    transform: scale(1.05);
}

/* Melhorias nos Depoimentos */
.testimonial {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.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 var(--primary-light);
}

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

.testimonial-name {
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-status {
    font-size: 0.85rem;
    color: var(--green);
    margin: 0;
    font-weight: 600;
}

.testimonial p {
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

/* PROVA SOCIAL POPUP */
.social-proof-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    border-radius: 10px;
    padding: 12px 18px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    z-index: 9999;
    max-width: 300px;
    border-left: 4px solid var(--primary);
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-proof-popup.show {
    transform: translateY(0);
}

.social-proof-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-proof-icon {
    font-size: 1.5rem;
}

.social-proof-text p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}

.social-proof-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* FAQ SECTION */
.faq-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.faq-section h3 {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-item summary {
    padding: 15px 20px;
    font-weight: 600;
    color: var(--primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: background 0.3s;
}

.faq-item summary:hover {
    background: rgba(128, 0, 32, 0.02);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.2rem;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-content {
    padding: 0 20px 15px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* TYPEWRITER EFFECT */
.typewriter {
    display: inline-block;
}

.cursor {
    display: inline-block;
    width: 2px;
    background-color: var(--primary);
    margin-left: 2px;
    animation: blink 1s infinite;
}

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

/* WHATSAPP CAPTURE BOX */
.whatsapp-capture-box {
    background: #f0f9f0;
    border: 2px dashed #25d366;
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.whatsapp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.whatsapp-icon {
    font-size: 1.8rem;
}

.whatsapp-header h4 {
    margin: 0;
    color: #128c7e;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
}

.whatsapp-capture-box p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.5;
}

.whatsapp-input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
}

.whatsapp-input-group input {
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    outline: none;
    transition: border-color 0.3s;
}

.whatsapp-input-group input:focus {
    border-color: #25d366;
}

.whatsapp-input-group button {
    background: #25d366;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    font-size: 0.9rem;
}

.whatsapp-input-group button:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.whatsapp-footer {
    font-size: 0.75rem !important;
    color: #888 !important;
    margin-top: 15px !important;
    margin-bottom: 0 !important;
}

.whatsapp-success {
    margin-top: 15px;
    color: #128c7e;
    font-weight: 700;
    font-size: 1rem;
    padding: 10px;
    background: #e0f2e0;
    border-radius: 8px;
}

@media (max-width: 480px) {
    .whatsapp-capture-box {
        padding: 20px 15px;
    }
    .whatsapp-header h4 {
        font-size: 1.1rem;
    }
}

/* Responsividade para Popup - Ocultar no Mobile para não atrapalhar a leitura */
@media (max-width: 768px) {
    .social-proof-popup {
        display: none !important;
    }
}

/* LOCKED CONTENT STYLES */
.content-locked {
    position: relative;
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
    transition: all 0.8s ease;
}

.content-unlocked {
    filter: blur(0);
    pointer-events: auto;
    user-select: auto;
}

.lock-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
}

.content-unlocked .lock-overlay {
    display: none;
}

.lock-message {
    background: white;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    font-weight: 800;
    color: var(--primary);
    font-size: 1.2rem;
    border: 2px solid var(--primary);
    animation: pulseLock 2s infinite;
}

.lock-message span {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    display: block;
    margin-top: 10px;
}

@keyframes pulseLock {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
