:root {
    --primary: #D4AF37;
    --primary-light: #F4E4BC;
    --secondary: #F4C2C2;
    --text-dark: #2D3436;
    --text-light: #636E72;
    --white: #FFFFFF;
    --bg-ethereal: #F9F9F9;
    --shadow: 0 10px 30px rgba(0,0,0,0.08);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-ethereal);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .bible-verse {
    font-family: 'Playfair Display', serif;
}

#app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-image: url('assets/img/bg.png'); /* Updated path */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

#app::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.step {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.hidden {
    display: none !important;
}

/* Progress Bar */
#progress-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    z-index: 100;
    text-align: center;
}

#progress-bar {
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 5px;
}

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

#progress-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

/* Hero Content */
.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.hero-mockup {
    max-width: 250px;
    margin: 0 auto 30px;
    display: block;
}

.name-input {
    width: 100%;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #eee;
    font-family: inherit;
    font-size: 1.1rem;
    margin-bottom: 20px;
    outline: none;
    text-align: center;
    transition: border-color 0.3s;
}

.name-input:focus {
    border-color: var(--primary);
}

.step-icon {
    width: 80px;
    margin-bottom: 20px;
}

.highlight {
    color: #E74C3C;
    font-weight: 700;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), #B8860B);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Questions */
.title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.option {
    background: white;
    border: 2px solid transparent;
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    text-align: left;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.option::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.option:active::after {
    width: 300%;
    height: 300%;
}

.option:hover {
    border-color: var(--primary);
    transform: scale(1.02) translateY(-2px);
    background: var(--primary-light);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.emoji {
    font-size: 1.8rem;
    margin-right: 15px;
}

.opt-text strong {
    display: block;
    font-size: 1.1rem;
}

.opt-text span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Loading & Transitions */
.loader-circle {
    width: 50px;
    height: 50px;
    border: 5px solid #eee;
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    margin: 30px auto;
    animation: spin 1s linear infinite;
}

.loader-circle.large {
    width: 80px;
    height: 80px;
    border-width: 8px;
}

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

.highlight-box {
    background: var(--primary-light);
    padding: 15px;
    border-radius: 10px;
    margin: 20px 0;
    font-weight: 700;
    color: var(--primary);
}

.bible-verse {
    font-style: italic;
    font-size: 1.2rem;
    margin: 30px 0;
    color: var(--text-dark);
    position: relative;
    padding: 0 20px;
}

.bible-verse span {
    display: block;
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 600;
    color: var(--primary);
}

/* Forms */
textarea {
    width: 100%;
    height: 150px;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #eee;
    font-family: inherit;
    font-size: 1rem;
    margin: 20px 0;
    outline: none;
    transition: border-color 0.3s;
}

textarea:focus {
    border-color: var(--primary);
}

/* Audio Player Interactive */
.audio-player {
    background: #f0f0f0;
    padding: 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.audio-player:hover {
    background: #e8e8e8;
    border-color: var(--primary-light);
}

.player-icon {
    font-size: 1.5rem;
    user-select: none;
}

.player-bar {
    flex-grow: 1;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
}

.player-fill {
    width: 30%;
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
}

/* Sales Page Enhanced */
.sales-step {
    max-width: 900px;
    padding: 0;
    overflow: hidden;
    background: white;
}

.sales-content {
    padding: 0;
}

.sales-header {
    padding: 60px 40px 40px;
    background: linear-gradient(180deg, #FFF9E6 0%, white 100%);
}

.mockup-container {
    position: relative;
    display: inline-block;
    margin: 40px 0;
}

.main-mockup {
    width: 100%;
    max-width: 400px;
    margin: 30px auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.price-box {
    background: #FFF9E6;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    display: block;
    font-size: 1.2rem;
}

.new-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #27AE60;
    display: block;
}

.installments {
    font-weight: 600;
}

.btn-buy {
    background: #27AE60;
    color: white;
    width: 100%;
    max-width: 380px;
    padding: 18px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    margin: 15px auto;
    box-shadow: 0 10px 20px rgba(39, 174, 96, 0.2);
    transition: var(--transition);
    display: block;
    text-decoration: none;
    text-align: center;
}

.btn-buy:hover {
    transform: scale(1.02);
    background: #219150;
}

.cta-container {
    text-align: center;
    margin: 30px 0;
}

.sub-price {
    font-size: 1rem;
    color: #E74C3C;
    font-weight: 700;
    margin-top: 5px;
    text-align: center;
    display: block;
}
.testimonial-carousel {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

.testimonial {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid var(--primary);
    font-style: italic;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.testimonial p {
    margin-bottom: 10px;
}

.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: #E74C3C;
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
    transform: rotate(15deg);
}

.section-divider {
    height: 1px;
    background: #eee;
    margin: 40px 0;
    width: 100%;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 40px;
}

.feature-card {
    background: #fdfdfd;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.feature-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.benefits-section {
    padding: 0 40px;
}

.benefits-list {
    text-align: left;
    max-width: 500px;
    margin: 30px auto;
}

.check {
    color: #27AE60;
    font-weight: 800;
    margin-right: 10px;
}

.social-proof {
    padding: 0 40px;
}

.guarantee-section {
    padding: 0 40px 60px;
}

.guarantee-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 20px;
}

.guarantee-seal {
    width: 80px;
}

.guarantee-text {
    text-align: left;
}

.guarantee-text strong {
    display: block;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.guarantee-text span {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 600px) {
    .feature-grid { grid-template-columns: 1fr; }
    .guarantee-container { flex-direction: column; text-align: center; }
    .guarantee-text { text-align: center; }
}

.loading-text {
    font-weight: 600;
    color: var(--primary);
    margin-top: 10px;
    letter-spacing: 1px;
}

.timer {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 15px;
    color: var(--text-dark);
}

/* Animations */
.fade-in { animation: fadeIn 1s ease-out forwards; }
.slide-up { animation: slideUp 0.8s ease-out forwards; }
.pulse { animation: pulse 2s infinite; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@media (max-width: 600px) {
    .step { padding: 25px; }
    .hero-content h1 { font-size: 1.8rem; }
    .feature-grid { grid-template-columns: 1fr; }
}
/* Benefits Section Enhanced */
.benefits-section {
    padding: 40px 20px;
    background: #fff;
}

.section-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.side-mockup {
    width: 100%;
    max-width: 350px;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.1));
}

.benefits-detail-list {
    list-style: none;
    text-align: left;
}

.benefits-detail-list li {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--text-dark);
}

.benefits-detail-list li strong {
    color: #27AE60;
    display: block;
}

.summary-text {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 15px;
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 20px;
}

/* Deliverables Highlight */
.deliverables-highlight {
    padding: 40px 20px;
    background: #f1fff3; /* Light green background from example */
}

.highlight-card {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.highlight-card h4 {
    color: #27AE60;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.highlight-card p {
    margin-bottom: 5px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.sub-price {
    font-size: 1.1rem;
    color: #E74C3C;
    font-weight: 700;
    margin-top: 15px;
}

/* Sacred Image */
.sacred-image-section {
    padding: 40px 0;
}

.sacred-img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Social Proof Screenshots */
.testimonial-image-container {
    margin: 30px auto;
    max-width: 500px;
}

.whatsapp-screenshot {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Footer Guarantee */
.seal-bottom {
    width: 120px;
    margin: 20px 0;
}

@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .side-mockup {
        max-width: 250px;
        margin: 0 auto;
    }
}
