:root {
    --primary-color: #0b3b60; /* Deep Mary Blue */
    --primary-light: #165688;
    --accent-color: #d4af37; /* Gold */
    --accent-hover: #f1cf59;
    --text-dark: #2c3e50;
    --text-light: #f8f9fa;
    --bg-color: #fdfdfd;
    --bg-gradient: 
        radial-gradient(circle at 15% 10%, rgba(212, 175, 55, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 90%, rgba(11, 59, 96, 0.05) 0%, transparent 40%),
        linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-font-smoothing: antialiased;
}

.quiz-container {
    width: 100%;
    max-width: 480px; /* Mobile-first layout */
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0 auto;
}

.step {
    display: none;
    flex-direction: column;
    flex: 1;
    padding: 1.5rem 1.2rem;
    animation: fadeIn 0.8s ease-out forwards;
}

.step.active {
    display: flex;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* --- PROGRESS BAR --- */
.progress-bar-container {
    padding: 1.5rem 1.5rem 0 1.5rem;
    width: 100%;
    z-index: 10;
}

.progress-track {
    width: 100%;
    height: 6px;
    background: rgba(11, 59, 96, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent-hover) 0%, var(--accent-color) 100%);
    border-radius: 10px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.step-header {
    text-align: center;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
}

/* --- Navigation Styles --- */
.btn-back {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: none;
    color: #8da2b5;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 0 0.8rem 0;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.btn-back:hover {
    color: var(--primary-color);
}

.btn-back svg {
    margin-right: 4px;
    transition: transform 0.3s ease;
}

.btn-back:hover svg {
    transform: translateX(-3px);
}

.pre-title {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.headline {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.headline .highlight {
    color: var(--accent-color);
    font-style: italic;
    font-weight: 600;
}

.divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0.8rem auto;
}

.sub-headline-container {
    padding: 0.5rem 0;
    margin: 0 auto;
    max-width: 95%;
}

.sub-headline {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    line-height: 1.4;
    color: #4a5c6d;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0.5px;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    position: relative;
    padding: 0.5rem 0;
    min-height: 180px;
}

/* Removed image glow */

.hero-image {
    max-width: 100%;
    max-height: 240px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(11, 59, 96, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-image:hover {
    transform: scale(1.02);
}

.action-container {
    margin-top: auto;
    padding-bottom: 0.5rem;
}

.btn-primary {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    padding: 1.1rem;
    font-size: 1.1rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(11, 59, 96, 0.2), inset 0 2px 5px rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(11, 59, 96, 0.3), inset 0 2px 5px rgba(255,255,255,0.2);
    border-color: var(--accent-color);
}

.btn-primary:hover::after {
    animation: shine 1.5s ease-out infinite;
    opacity: 1;
}

.secure-note {
    text-align: center;
    font-size: 0.8rem;
    color: #6c8093;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.secure-note::before,
.secure-note::after {
    content: '';
    height: 1px;
    width: 20px;
    background: rgba(108, 128, 147, 0.3);
}

/* --- ETAPA 2: INPUT STYLES --- */
.input-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
}

.input-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    text-align: center;
}

.input-field {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(11, 59, 96, 0.15);
    border-radius: 12px;
    font-size: 1.15rem;
    font-family: var(--font-body);
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: #ffffff;
    text-align: center;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.02);
}

.input-field:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.input-field::placeholder {
    color: #9ab0c4;
}

.error-msg {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    font-weight: 500;
    text-align: center;
}

.error-msg.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* --- ETAPA 3: OPTIONS STYLES --- */
.success-banner {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.instruction-text {
    font-size: 0.9rem;
    color: #6c8093;
    margin-top: 0.5rem;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1rem;
    flex: 1;
    overflow-y: auto;
    padding: 0.2rem;
}

.option-card {
    display: flex;
    align-items: center;
    padding: 1rem 1.2rem;
    background: #ffffff;
    border: 2px solid rgba(11, 59, 96, 0.08);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.option-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(11, 59, 96, 0.08);
}

.option-card input {
    display: none;
}

.option-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.option-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    flex: 1;
}

.checkbox-indicator {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(11, 59, 96, 0.2);
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
}

.option-card input:checked ~ .checkbox-indicator {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.option-card input:checked ~ .checkbox-indicator::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.option-card input:checked ~ .option-text {
    font-weight: 600;
    color: var(--primary-color);
}

.option-card:has(input:checked) {
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.05);
}

.radio-indicator {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(11, 59, 96, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
}

.option-card input[type="radio"]:checked ~ .radio-indicator {
    border-color: var(--accent-color);
    border-width: 6px;
}

.option-card input[type="radio"]:checked ~ .option-text {
    font-weight: 600;
    color: var(--primary-color);
}

/* --- ETAPA 5: GRID OPTIONS --- */
.grid-options-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    overflow-y: auto;
    padding: 0.2rem;
}

.grid-card {
    background: #ffffff;
    border: 2px solid rgba(11, 59, 96, 0.08);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.grid-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(11, 59, 96, 0.08);
}

.grid-card input {
    display: none;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0.8rem;
    height: 100%;
    justify-content: center;
}

.grid-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    transition: transform 0.3s ease;
}

.grid-card:hover .grid-icon {
    transform: scale(1.1);
}

.grid-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.3;
}

.grid-card:has(input:checked) {
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.05);
}

.grid-card:has(input:checked) .grid-text {
    font-weight: 600;
    color: var(--primary-color);
}

.grid-card::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.grid-card:has(input:checked)::after {
    opacity: 1;
    transform: scale(1);
}

/* --- ETAPA 7: PROCESSAMENTO --- */
.processing-wrapper {
    align-items: center;
    justify-content: center;
    padding-top: 1rem;
}

.summary-container {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 4px solid var(--accent-color);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    width: 100%;
    text-align: left;
    box-shadow: 0 10px 30px rgba(11, 59, 96, 0.06);
}

.summary-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.summary-text:last-child {
    margin-bottom: 0;
}
.summary-text strong {
    color: var(--primary-color);
    font-weight: 600;
}
.summary-text .content-span {
    flex: 1;
}

.loading-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0 2.5rem 0;
}

.circular-progress {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-color) 0deg, rgba(11, 59, 96, 0.05) 0deg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25), inset 0 2px 8px rgba(0,0,0,0.03);
}

.inner-circle {
    position: absolute;
    height: 126px;
    width: 126px;
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffff, #f0f6fc);
    box-shadow: inset 0 3px 8px rgba(11, 59, 96, 0.04);
}

.progress-value {
    position: relative;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-shadow: 0 2px 4px rgba(11, 59, 96, 0.1);
}

.loading-text-container {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loading-message {
    font-size: 1.15rem;
    color: var(--primary-color);
    font-weight: 500;
    text-align: center;
    animation: fadePulse 1.8s ease-in-out infinite;
}

@keyframes fadePulse {
    0% { opacity: 0.4; transform: translateY(2px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0.4; transform: translateY(2px); }
}

/* Disabled button state */
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    background: #aab8c2;
    border-color: transparent;
}
.btn-primary:disabled::after {
    display: none;
}

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

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-20px); }
}

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

/* --- ETAPA 8: ORAÇÃO --- */
.step-8 .content-wrapper {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2rem;
}

/* Prayer container */
.prayer-container {
    background: linear-gradient(160deg, rgba(212, 175, 55, 0.08) 0%, rgba(11, 59, 96, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 24px;
    padding: 2rem 1.5rem 1.8rem;
    margin: 0.25rem 0 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(11, 59, 96, 0.07), 0 4px 20px rgba(212, 175, 55, 0.1);
}

.prayer-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.prayer-container::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.25), transparent);
}

/* Prayer image */
.prayer-image-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.prayer-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--accent-color);
    animation: imageGlow 3s ease-in-out infinite;
}

@keyframes imageGlow {
    0%, 100% { box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.12), 0 12px 35px rgba(212, 175, 55, 0.28); }
    50%       { box-shadow: 0 0 0 9px rgba(212, 175, 55, 0.2),  0 12px 45px rgba(212, 175, 55, 0.45); }
}

/* Prayer text */
.prayer-cross {
    display: block;
    text-align: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.prayer-paragraph {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 0.98rem;
    line-height: 1.9;
    color: #3a5068;
    margin-bottom: 1rem;
    text-align: left;
}

.prayer-paragraph.prayer-invocation {
    font-style: normal;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    text-align: center;
}

.prayer-name {
    color: var(--accent-color);
    font-style: normal;
    font-weight: 700;
}

.prayer-hook {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-top: 1.4rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    line-height: 1.65;
}

/* 7 Dias hook */
.prayer-cta-hook {
    text-align: center;
    padding: 0 0.5rem 1.5rem;
}

.prayer-cta-hook::before {
    content: '✦';
    display: block;
    color: var(--accent-color);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    opacity: 0.7;
}

.prayer-cta-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 0.85rem;
}

.prayer-cta-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: #4a5c6d;
}

/* Benefits */
.benefits-section {
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefits-group {
    background: #ffffff;
    border: 1px solid rgba(11, 59, 96, 0.08);
    border-radius: 20px;
    padding: 1.4rem 1.3rem 0.8rem;
    box-shadow: 0 4px 20px rgba(11, 59, 96, 0.04);
}

.benefits-group-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.1rem;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(11, 59, 96, 0.05);
}

.benefits-list li:last-child {
    border-bottom: none;
    padding-bottom: 0.1rem;
}

.benefits-list li div,
.benefits-bonus-item div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.benefits-list li strong,
.benefits-bonus-item strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
}

.benefits-list li span,
.benefits-bonus-item span {
    font-size: 0.85rem;
    color: #6c8093;
    line-height: 1.45;
}

.benefit-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.benefits-bonus {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(11, 59, 96, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 20px;
    padding: 1.1rem 1.3rem;
    position: relative;
    overflow: hidden;
}

.benefits-bonus::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.benefits-bonus-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.85rem;
}

.benefits-bonus-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

/* Social proof */
.social-proof-section {
    text-align: center;
    padding: 1.5rem 0.75rem 1.2rem;
    border-top: 1px solid rgba(11, 59, 96, 0.07);
    position: relative;
}

.social-proof-section::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--accent-color);
    opacity: 0.18;
    position: absolute;
    top: 0.2rem;
    left: 0.2rem;
    line-height: 1;
    pointer-events: none;
}

.social-proof-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.5;
    margin-bottom: 0.9rem;
}

.social-proof-subtitle {
    font-size: 0.88rem;
    line-height: 1.75;
    color: #6c8093;
}

/* Offer card */
.offer-section {
    margin: 0.5rem 0 1rem;
}

.offer-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 24px;
    padding: 1.8rem 1.5rem 1.6rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(11, 59, 96, 0.22), 0 4px 15px rgba(11, 59, 96, 0.15);
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.offer-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.offer-price-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.25rem;
}

.offer-price-value {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1.1;
    margin-bottom: 1.3rem;
}

.offer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1.1rem;
}

.offer-badges {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.offer-badge {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 0.4rem 0.9rem;
}

/* Step 8 CTA — botão dourado */
.step-8 .btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    color: var(--primary-color);
    border-color: rgba(212, 175, 55, 0.4);
    font-weight: 700;
    animation: ctaPulse 2.5s ease-in-out infinite;
}

.step-8 .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent-color) 100%);
    color: var(--primary-color);
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3),  inset 0 2px 5px rgba(255,255,255,0.25); }
    50%       { box-shadow: 0 18px 50px rgba(212, 175, 55, 0.55), inset 0 2px 5px rgba(255,255,255,0.25); }
}
