/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #4c1d95;
    --secondary-purple: #6b21a8;
    --light-purple: #a855f7;
    --golden: #f59e0b;
    --golden-light: #fbbf24;
    --dark-bg: #1e1b4b;
    --text-light: #f8fafc;
    --text-gray: #cbd5e1;
    --accent-pink: #ec4899;
    --shadow-glow: rgba(168, 85, 247, 0.4);
}

/* Tipografia fluida */
html {
    font-size: clamp(14px, 2.5vw, 16px);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-purple) 50%, var(--secondary-purple) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(15px, 4vw, 20px);
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    line-height: 1.4;
}

.highlight {
    background: linear-gradient(45deg, var(--golden), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ícones Animados SVG */
.animated-icon {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    animation: iconFloat 3s ease-in-out infinite alternate;
}

.animated-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--golden);
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.3));
    transition: all 0.3s ease;
}

.animated-icon:hover svg {
    fill: var(--golden-light);
    filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.6));
    transform: scale(1.1);
}

@keyframes iconFloat {
    0% { 
        transform: translateY(0px) rotate(0deg); 
    }
    100% { 
        transform: translateY(-8px) rotate(5deg); 
    }
}

.heart-icon {
    animation-delay: 0s;
}

.briefcase-icon {
    animation-delay: 0.5s;
}

.lightning-icon {
    animation-delay: 1s;
}

.target-icon {
    animation-delay: 1.5s;
}

.gift-icon {
    animation-delay: 2s;
}

.star-icon {
    animation-delay: 0.3s;
}

.shield-icon {
    animation-delay: 0.6s;
}

.handshake-icon {
    animation-delay: 0.9s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: clamp(60px, 10vh, 100px) 0;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, white, transparent),
        radial-gradient(2px 2px at 40px 70px, white, transparent),
        radial-gradient(1px 1px at 90px 40px, white, transparent),
        radial-gradient(1px 1px at 130px 80px, white, transparent),
        radial-gradient(2px 2px at 160px 30px, white, transparent),
        radial-gradient(1px 1px at 200px 100px, rgba(245, 158, 11, 0.8), transparent),
        radial-gradient(1px 1px at 300px 50px, rgba(168, 85, 247, 0.6), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 4s ease-in-out infinite alternate;
    opacity: 0.8;
}

@keyframes twinkle {
    0% { 
        opacity: 0.4; 
        transform: translateX(0) translateY(0);
    }
    50% { 
        opacity: 0.8; 
        transform: translateX(2px) translateY(-1px);
    }
    100% { 
        opacity: 1; 
        transform: translateX(-1px) translateY(1px);
    }
}

.hero .container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    z-index: 2;
    position: relative;
}

/* Para telas grandes, usar grid */
@media (min-width: 769px) {
    .hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        z-index: 2;
        position: relative;
    }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, var(--golden), var(--golden-light));
    color: white;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    border: 2px solid transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
    background: linear-gradient(45deg, var(--golden-light), var(--golden));
}

.cta-button.large {
    padding: 22px 44px;
    font-size: 1.25rem;
}

.trust-badges {
    display: flex;
    gap: 20px;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.trust-badges span {
    position: relative;
}

.trust-badges span:not(:last-child)::after {
    content: '·';
    position: absolute;
    right: -12px;
    color: var(--light-purple);
}

.counter {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--golden);
    font-weight: 500;
}

#counter-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--golden-light);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.tarot-cards {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 250px;
    z-index: 3;
}

.card {
    width: 80px;
    height: 130px;
    background: linear-gradient(135deg, var(--secondary-purple), var(--primary-purple));
    border-radius: 12px;
    position: absolute;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    border: 2px solid var(--golden);
    transition: all 0.3s ease;
    cursor: pointer;
}

.card:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
    border-color: var(--golden-light);
}

.card::before {
    content: '✨';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: var(--golden);
}

.card-1 {
    transform: rotate(-15deg) translateX(-40px);
    z-index: 3;
}

.card-2 {
    transform: rotate(0deg);
    z-index: 4;
}

.card-3 {
    transform: rotate(15deg) translateX(40px);
    z-index: 3;
}

.angelic-halo {
    position: absolute;
    width: 280px;
    height: 280px;
    border: 2px solid var(--golden);
    border-radius: 50%;
    opacity: 0.4;
    animation: rotate 20s linear infinite;
    z-index: 1;
}

.angelic-halo::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid var(--light-purple);
    border-radius: 50%;
    opacity: 0.6;
}

.angelic-halo::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50%;
    opacity: 0.8;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Pain Section */
.pain-section {
    padding: 100px 0;
    background: rgba(30, 27, 75, 0.8);
    backdrop-filter: blur(10px);
}

.pain-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.pain-section > .container > p {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.symptoms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.symptom {
    background: rgba(168, 85, 247, 0.1);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(168, 85, 247, 0.3);
    transition: all 0.3s ease;
}

.symptom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.2);
}

.symptom-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.symptom h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.symptom p {
    color: var(--text-gray);
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-purple), var(--dark-bg));
}

.solution-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    align-items: start;
}

.solution-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(10px);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.solution-item h3, .solution-features h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--golden);
}

.solution-features {
    background: rgba(245, 158, 11, 0.1);
    padding: 2.5rem;
    border-radius: 25px;
    border: 2px solid var(--golden);
}

.solution-features ul {
    list-style: none;
    margin-top: 1.5rem;
}

.solution-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: rgba(30, 27, 75, 0.9);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.benefit {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-purple);
}

.benefit p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-purple), var(--primary-purple));
    text-align: center;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.testimonial blockquote {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.testimonial cite {
    color: var(--golden);
    font-weight: 600;
}

.social-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--golden);
    font-family: 'Cinzel', serif;
}

.stat-text {
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Seção de Sementes Espirituais */
.spiritual-seeds-section {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.1) 0%, 
        rgba(16, 16, 40, 0.95) 50%, 
        rgba(245, 158, 11, 0.1) 100%
    );
    position: relative;
    overflow: hidden;
}

.spiritual-seeds-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(245, 158, 11, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(124, 58, 237, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(245, 158, 11, 0.4), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: shimmer 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes shimmer {
    0% { opacity: 0.3; transform: translateX(0); }
    100% { opacity: 0.6; transform: translateX(10px); }
}

.spiritual-seeds-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.spiritual-seeds-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--golden);
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { text-shadow: 0 2px 10px rgba(245, 158, 11, 0.3); }
    100% { text-shadow: 0 4px 20px rgba(245, 158, 11, 0.5), 0 0 30px rgba(245, 158, 11, 0.2); }
}

.seeds-explanation {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    margin-top: 3rem;
    text-align: left;
}

@media (max-width: 768px) {
    .seeds-explanation {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

.seeds-icon {
    flex-shrink: 0;
}

.seed-icon {
    width: 80px;
    height: 80px;
    color: var(--golden);
    filter: drop-shadow(0 4px 12px rgba(245, 158, 11, 0.3));
}

.seeds-text {
    flex: 1;
}

.seeds-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--golden-light);
    margin-bottom: 1rem;
}

.seeds-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.divine-law {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(245, 158, 11, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.1);
}

@media (max-width: 768px) {
    .divine-law {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

.law-icon {
    flex-shrink: 0;
}

.balance-icon {
    width: 50px;
    height: 50px;
    color: var(--golden);
    animation: balance 2s ease-in-out infinite alternate;
}

@keyframes balance {
    0% { transform: rotate(-3deg); }
    100% { transform: rotate(3deg); }
}

.law-text {
    flex: 1;
}

.law-title {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--golden);
    margin-bottom: 0.5rem;
}

.law-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

/* Ícones de features melhorados */
.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--golden);
    margin-right: 10px;
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
    animation: iconFloat 3s ease-in-out infinite alternate;
}

.star-badge {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: middle;
    color: white;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: rgba(30, 27, 75, 0.8);
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.faq-question {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--golden);
}

.faq-answer {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-purple));
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    border: 2px solid rgba(168, 85, 247, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
    border-color: var(--golden);
}

.pricing-card.featured {
    border: 3px solid var(--golden);
    background: rgba(245, 158, 11, 0.1);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--golden), var(--golden-light));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--golden);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-gray);
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-light);
    font-family: 'Cinzel', serif;
}

.price-description {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features ul {
    list-style: none;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pricing-features li:hover {
    color: white;
    transform: translateX(5px);
}

.pricing-features li:hover .feature-icon {
    color: var(--golden-light);
    transform: scale(1.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    display: block;
    background: linear-gradient(45deg, var(--secondary-purple), var(--light-purple));
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.4);
}

.pricing-btn.featured {
    background: linear-gradient(45deg, var(--golden), var(--golden-light));
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.pricing-btn.featured:hover {
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(168, 85, 247, 0.1);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 2rem;
}

.guarantee-text h4 {
    color: var(--golden);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.guarantee-text p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.9rem;
}

/* Urgency Section */
.urgency-section {
    padding: clamp(60px, 8vh, 80px) 0;
    background: linear-gradient(45deg, var(--accent-pink), var(--secondary-purple));
    text-align: center;
}

.urgency-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 1rem;
    color: var(--text-light);
}

.urgency-content p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Final CTA */
.final-cta {
    padding: clamp(80px, 12vh, 100px) 0;
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-purple));
    text-align: center;
}

.final-cta h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    padding: clamp(30px, 5vh, 40px) 0;
    background: var(--dark-bg);
    text-align: center;
    border-top: 1px solid rgba(168, 85, 247, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.footer-company {
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    padding-bottom: 1.5rem;
}

.footer-company h4 {
    color: var(--golden);
    font-size: 1.4rem;
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
    font-weight: 600;
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
}

.company-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.company-info a {
    color: var(--light-purple);
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-info a:hover {
    color: var(--golden);
}

.footer-links {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--golden);
}

.footer-links span {
    color: var(--light-purple);
    margin: 0 5px;
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin: 0;
}

/* Language Toggle Button */
.language-toggle {
    position: fixed;
    top: clamp(15px, 3vh, 20px);
    right: clamp(15px, 3vw, 20px);
    background: rgba(30, 27, 75, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 25px;
    padding: clamp(8px, 2vw, 10px) clamp(12px, 3vw, 15px);
    color: var(--text-light);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 5px;
}

.language-toggle:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: var(--golden);
    transform: scale(1.05);
}

/* Language Popup */
.language-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.language-popup.show {
    opacity: 1;
}

.popup-content {
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-purple));
    border: 2px solid var(--golden);
    border-radius: 25px;
    padding: clamp(2rem, 5vw, 2.5rem);
    max-width: clamp(350px, 90vw, 400px);
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.language-popup.show .popup-content {
    transform: scale(1);
}

.popup-title {
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    color: var(--golden);
    margin-bottom: 1rem;
    font-family: 'Cinzel', serif;
}

.popup-subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
}

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

.language-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 15px;
    padding: clamp(12px, 3vw, 15px) clamp(15px, 4vw, 20px);
    color: var(--text-light);
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.language-option:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: var(--golden);
    transform: translateY(-2px);
}

.language-option .flag {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.language-option .lang-name {
    font-weight: 500;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(12px, 3vw, 15px);
    background: rgba(30, 27, 75, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(168, 85, 247, 0.3);
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.mobile-sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.mobile-sticky-cta .cta-button {
    width: 100%;
    text-align: center;
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    padding: clamp(12px, 3vw, 15px) clamp(20px, 5vw, 25px);
}

/* Breakpoints Melhorados */
/* Tablets grandes */
@media (min-width: 769px) and (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .pricing-card.featured {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
        transform: none;
    }
    
    .hero .container {
        gap: 40px;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .symptoms,
    .solution-grid,
    .benefits-grid,
    .faq-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-bottom: 1.5rem;
    }
    
    .tarot-cards {
        width: 180px;
        height: 180px;
    }
    
    .card {
        width: 55px;
        height: 90px;
    }
    
    .angelic-halo {
        width: 200px;
        height: 200px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .hero {
        padding: clamp(40px, 8vh, 60px) 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero .container {
        display: flex !important;
        flex-direction: column !important;
        gap: clamp(25px, 6vw, 40px);
        text-align: center;
        padding: 0 20px;
        grid-template-columns: none !important;
    }

    .hero-content {
        order: 2;
        width: 100%;
    }

    .hero-visual {
        order: 1;
        height: clamp(280px, 35vh, 350px);
        margin-bottom: 1rem;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        line-height: 1.1;
        margin-bottom: 1rem;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.2rem);
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 5px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-button {
        font-size: clamp(1rem, 4vw, 1.1rem);
        padding: clamp(15px, 4vw, 18px) clamp(25px, 6vw, 35px);
        margin: 1rem 0;
        max-width: 280px;
        width: 100%;
        border-radius: 30px;
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(245, 158, 11, 0.5);
    }

    .tarot-cards {
        transform: scale(0.9);
        width: clamp(200px, 50vw, 250px);
        height: clamp(200px, 50vw, 250px);
        position: relative;
        margin: 0 auto;
    }

    .card {
        width: clamp(55px, 15vw, 70px);
        height: clamp(85px, 22vw, 110px);
        border-radius: 10px;
        border-width: 1.5px;
    }

    .card::before {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }

    .card-1 {
        transform: translate(clamp(-25px, -6vw, -20px), clamp(15px, 4vw, 20px)) rotate(-12deg);
    }

    .card-2 {
        transform: rotate(0deg);
    }

    .card-3 {
        transform: translate(clamp(20px, 6vw, 25px), clamp(15px, 4vw, 20px)) rotate(12deg);
    }

    .angelic-halo {
        width: clamp(220px, 55vw, 280px);
        height: clamp(220px, 55vw, 280px);
        border-width: 1.5px;
    }

    .trust-badges {
        gap: clamp(8px, 3vw, 15px);
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1.5rem;
        padding: 0 10px;
    }

    .trust-badges span {
        font-size: clamp(0.85rem, 3vw, 0.95rem);
        background: rgba(168, 85, 247, 0.1);
        padding: 8px 12px;
        border-radius: 15px;
        border: 1px solid rgba(168, 85, 247, 0.3);
        backdrop-filter: blur(5px);
    }

    .trust-badges span:not(:last-child)::after {
        display: none;
    }

    .counter {
        margin-top: 1.5rem;
        background: rgba(245, 158, 11, 0.1);
        padding: 12px 20px;
        border-radius: 20px;
        border: 1px solid rgba(245, 158, 11, 0.3);
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(0.9rem, 3vw, 1rem);
    }

    #counter-number {
        font-size: clamp(1.2rem, 4vw, 1.4rem);
        text-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
    }

    .pain-section h2,
    .solution-section h2,
    .benefits-section h2,
    .faq-section h2,
    .pricing-section h2,
    .urgency-section h2,
    .final-cta h2 { 
        font-size: clamp(1.6rem, 6vw, 2.2rem); 
        line-height: 1.2; 
        padding: 0 15px;
    }

    .symptoms,
    .solution-grid,
    .benefits-grid,
    .faq-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: clamp(20px, 5vw, 30px);
    }

    .pricing-card.featured {
        transform: none;
        margin-bottom: 2rem;
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .pricing-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .social-stats {
        flex-direction: column;
        gap: 10px;
    }

    .stat-number {
        font-size: clamp(2.2rem, 8vw, 2.8rem);
    }
    
    .footer-content {
        gap: 1.5rem;
        padding: 0 15px;
    }
    
    .footer-company {
        padding-bottom: 1rem;
    }
    
    .footer-company h4 {
        font-size: 1.2rem;
    }
    
    .company-info {
        gap: 0.5rem;
    }
    
    .company-info p {
        font-size: 0.85rem;
    }

    .mobile-sticky-cta {
        display: block;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .language-toggle {
        top: 15px;
        right: 15px;
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: clamp(30px, 6vh, 50px) 0;
    }
    
    .hero .container {
        gap: clamp(20px, 5vw, 30px);
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 4.5vw, 1.1rem);
        margin-bottom: 1.2rem;
        padding: 0 10px;
    }
    
    .cta-button {
        font-size: clamp(0.95rem, 4.5vw, 1.05rem);
        padding: clamp(14px, 4vw, 16px) clamp(22px, 6vw, 30px);
        max-width: 260px;
        border-radius: 25px;
    }
    
    .tarot-cards {
        width: clamp(180px, 45vw, 220px);
        height: clamp(180px, 45vw, 220px);
        transform: scale(0.85);
    }
    
    .card {
        width: clamp(50px, 13vw, 60px);
        height: clamp(75px, 20vw, 95px);
        transition: all 0.4s ease;
    }
    
    .card:hover {
        transform: scale(1.05) !important;
    }
    
    .angelic-halo {
        width: clamp(200px, 50vw, 240px);
        height: clamp(200px, 50vw, 240px);
    }
    
    .trust-badges {
        gap: clamp(6px, 2vw, 10px);
        margin-top: 1.2rem;
    }
    
    .trust-badges span {
        font-size: clamp(0.8rem, 3.5vw, 0.9rem);
        padding: 6px 10px;
    }
    
    .counter {
        padding: 10px 16px;
        margin-top: 1.2rem;
        max-width: 280px;
        font-size: clamp(0.85rem, 3.5vw, 0.95rem);
    }
    
    #counter-number {
        font-size: clamp(1.1rem, 4.5vw, 1.3rem);
    }
    
    .hero-visual {
        height: clamp(250px, 30vh, 300px);
        margin-bottom: 0.8rem;
    }
    
    .cta-button.large {
        padding: clamp(16px, 4vw, 18px) clamp(25px, 6vw, 30px);
        font-size: clamp(1rem, 4.5vw, 1.1rem);
        max-width: 280px;
    }
    
    .testimonial blockquote {
        font-size: clamp(1.1rem, 5vw, 1.3rem);
        padding: 0 10px;
    }
    
    .pricing-section h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    
    .pricing-card {
        padding: clamp(1.5rem, 5vw, 2rem) clamp(1.2rem, 4vw, 1.5rem);
        margin: 0 10px;
    }
    
    .amount {
        font-size: clamp(2.2rem, 8vw, 2.6rem);
    }
    
    .pricing-features li {
        font-size: clamp(0.85rem, 3.5vw, 0.95rem);
        padding: 0.6rem 0;
    }
    
    .popup-content {
        padding: clamp(1.5rem, 5vw, 2rem) clamp(1.2rem, 4vw, 1.5rem);
        max-width: clamp(320px, 90vw, 350px);
        margin: 0 10px;
    }
    
    .popup-title {
        font-size: clamp(1.3rem, 6vw, 1.6rem);
    }
    
    .language-option {
        padding: clamp(10px, 3vw, 12px) clamp(12px, 4vw, 15px);
        font-size: clamp(0.9rem, 4vw, 1rem);
    }
    
    /* Melhorando animações para mobile */
    .card {
        box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }
    
    .card:hover {
        box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    }
    
    .angelic-halo {
        animation: rotate 25s linear infinite;
        opacity: 0.3;
    }
    
    /* Efeito de brilho nas estrelas */
    .stars {
        animation: twinkle 6s ease-in-out infinite alternate;
    }
    
    /* Botão CTA mais atrativo */
    .cta-button {
        box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
        transform: translateY(0);
        transition: all 0.3s ease;
    }
    
    .cta-button:active {
        transform: translateY(1px) scale(0.98);
    }
}

@media (max-width: 400px) {
    .hero {
        padding: clamp(25px, 5vh, 40px) 0;
        min-height: 100vh;
    }
    
    .hero .container {
        display: flex !important;
        flex-direction: column !important;
        gap: clamp(15px, 4vw, 25px);
        text-align: center;
        padding: 0 10px;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-visual {
        order: 1;
        height: clamp(220px, 25vh, 280px);
        width: 100%;
        margin-bottom: 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }
    
    .hero-content {
        order: 2;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(1.4rem, 7vw, 1.8rem);
        line-height: 1.1;
        margin-bottom: 0.8rem;
        padding: 0 5px;
        width: 100%;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 4vw, 1rem);
        line-height: 1.4;
        margin-bottom: 1rem;
        padding: 0 5px;
        max-width: 95%;
        text-align: center;
    }
    
    .cta-button {
        font-size: clamp(0.9rem, 4vw, 1rem);
        padding: clamp(12px, 3vw, 14px) clamp(18px, 5vw, 25px);
        margin: 0.8rem 0;
        max-width: 240px;
        width: 90%;
        border-radius: 25px;
        text-align: center;
    }
    
    .tarot-cards {
        width: clamp(160px, 40vw, 200px);
        height: clamp(160px, 40vw, 200px);
        transform: scale(0.8);
        position: relative;
        margin: 0 auto;
        flex-shrink: 0;
    }
    
    .card {
        width: clamp(45px, 12vw, 55px);
        height: clamp(70px, 18vw, 85px);
        border-radius: 8px;
        border-width: 1px;
    }
    
    .card::before {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
    }
    
    .card-1 {
        transform: translate(clamp(-20px, -5vw, -15px), clamp(10px, 3vw, 15px)) rotate(-10deg);
    }
    
    .card-2 {
        transform: rotate(0deg);
    }
    
    .card-3 {
        transform: translate(clamp(15px, 5vw, 20px), clamp(10px, 3vw, 15px)) rotate(10deg);
    }
    
    .angelic-halo {
        width: clamp(180px, 45vw, 220px);
        height: clamp(180px, 45vw, 220px);
        border-width: 1px;
        opacity: 0.2;
    }
    
    .trust-badges {
        gap: clamp(5px, 2vw, 8px);
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 5px;
    }
    
    .trust-badges span {
        font-size: clamp(0.75rem, 3vw, 0.85rem);
        padding: 5px 8px;
        border-radius: 12px;
    }
    
    .counter {
        padding: 8px 12px;
        margin-top: 1rem;
        max-width: 250px;
        font-size: clamp(0.8rem, 3vw, 0.9rem);
        border-radius: 15px;
    }
    
    #counter-number {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    
    .hero-title .highlight {
        display: inline;
        white-space: normal;
    }
    
    /* Garantindo que nada fique lado a lado */
    .hero .container > * {
        width: 100%;
        flex-shrink: 0;
    }
    
    /* Removendo qualquer grid que possa interferir */
    .hero .container {
        grid-template-columns: none !important;
        display: flex !important;
        flex-direction: column !important;
    }
} 