:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #34d399;
    --secondary: #0f172a;
    --text-main: #334155;
    --text-light: #64748b;
    --bg-main: #ffffff;
    --bg-light: #f8fafc;
    --accent: #f59e0b; /* yellow orange for bonuses/stars */
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(16, 185, 129, 0.4);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--secondary);
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

.text-accent {
    color: var(--accent);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 20px 0 80px;
}

.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.w-full { width: 100%; }
.inline-block { display: inline-block; }
.bg-light { background-color: var(--bg-light); }

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    background-image: linear-gradient(to bottom, var(--primary-light), var(--primary-dark));
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    z-index: 10;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(16, 185, 129, 0.4);
}

.pulse-anim {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.btn-premium-action {
    display: inline-block;
    background: linear-gradient(90deg, #2dd4bf 0%, #10b981 100%);
    color: white;
    font-weight: 800;
    font-size: 1.15rem;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.35);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    z-index: 10;
}

.btn-premium-action:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.5);
    background: linear-gradient(90deg, #34d399 0%, #059669 100%);
}

.btn-premium-action.w-full {
    width: 100%;
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

.badge {
    display: inline-block;
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--primary-dark);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}
.badge-success {
    background-color: #fce7f3;
    color: #be185d;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.5s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 0;
    background: radial-gradient(circle at top right, #e6f4ea 0%, #ffffff 50%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 5;
}

/* Video Frame */
.hero-video-wrapper {
    width: 100%;
    max-width: 560px;
    margin: 20px auto 64px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 4px rgba(16, 185, 129, 0.25),
        0 0 0 8px rgba(30, 58, 95, 0.1),
        0 20px 50px rgba(0, 0, 0, 0.2);
    background: #0f172a;
    position: relative;
}

.hero-video-wrapper::before {
    content: '';
    display: block;
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid rgba(16, 185, 129, 0.4);
    pointer-events: none;
    z-index: 2;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-accent {
    display: inline-block;
    background: linear-gradient(90deg, #fef3c7, #fde68a);
    color: #92400e;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.2);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.dynamic-title {
    font-size: 4.8rem;
    line-height: 1.05;
    margin-bottom: 2rem;
    font-weight: 900;
    color: #1e293b;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.dynamic-title span {
    display: block;
}

.highlight-shimmer {
    position: relative;
    background: linear-gradient(
        to right, 
        #059669 0%, 
        #10b981 30%, 
        #6ee7b7 50%, 
        #10b981 70%, 
        #059669 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shimmer-text 10s linear infinite;
    filter: drop-shadow(0 0 5px rgba(16, 185, 129, 0.1));
}

@keyframes shimmer-text {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero-text p {
    font-size: 1.35rem;
    color: #475569;
    margin-bottom: 1.5rem;
    max-width: 700px;
    font-weight: 500;
}

.pulse-anim-badge {
    animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-cta .guarantee-text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-weight: 500;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: translateY(-10px);
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--secondary);
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.floating-card.top-left {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.floating-card.bottom-right {
    bottom: 15%;
    right: 0;
    animation-delay: 2s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Benefits Section */
.illustration-jesus {
    max-width: 400px;
    margin: 0 auto 1.5rem;
    display: block;
    border-radius: var(--radius-md);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
}

.benefits h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

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

.benefit-card {
    background: white;
    padding: 35px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(16, 185, 129, 0.2);
}

.icon-wrapper {
    width: 65px;
    height: 65px;
    background: #e6f4ea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Modules Section */
.modules h2 { font-size: 2.25rem; }
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.module-card {
    background: white;
    padding: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: left;
    transition: transform 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.module-card:hover { transform: scale(1.03); }

.module-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
    border-radius: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.module-card h4 {
    padding: 24px 24px 10px 24px;
    margin: 0;
}

.module-card p {
    padding: 0 24px 24px 24px;
    margin: 0;
}

.module-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.module-card:hover .module-cover-img {
    transform: scale(1.05); /* Efeito sutil de zoom ao passar o mouse */
}

/* Bonus Section */
.bonus.pattern-bg {
    background-color: var(--secondary);
    color: white;
    position: relative;
    overflow: hidden;
}

.bonus h2, .bonus h3 { color: white; }

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

.bonus-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.bonus-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: white;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
    z-index: 10;
}

.bonus-cover {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
}

.bonus-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bonus-card h3 {
    padding: 24px 24px 8px 24px;
    color: white;
    margin: 0;
}

.bonus-card p {
    padding: 0 24px 24px 24px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.bonus-card:hover .bonus-img {
    transform: scale(1.05);
}

/* Pricing Section Dual Plans */
.pricing h2 { font-size: 2.25rem; }

.pricing-card-wrapper.dual-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    overflow: visible;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card.highlight-border {
    border: 3px solid #f59e0b;
    box-shadow: 0 25px 60px rgba(245, 158, 11, 0.2);
    transform: scale(1.05);
    z-index: 5;
}

.selection-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 50%, #b45309 100%);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(180, 83, 9, 0.4);
    z-index: 100;
    border: 2px solid rgba(255,255,255,0.4);
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    overflow: hidden; /* Para o efeito de brilho interno */
    animation: badge-float 3s ease-in-out infinite;
}

/* Efeito de Brilho (Shine) que passa pelo Badge */
.selection-badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: 0.5s;
    animation: badge-shine 4s infinite linear;
}

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

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.badge-icon {
    font-size: 1rem;
}

.pricing-header-simple {
    padding: 30px 20px 10px;
    text-align: center;
}

.pricing-header-simple h3 {
    color: var(--secondary);
    font-size: 1.75rem;
    font-weight: 800;
}

.pricing-image-box {
    text-align: center;
    padding: 0 20px;
}

.pricing-bundle-img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-top: 10px;
}

.pricing-features {
    padding: 20px 40px;
    flex-grow: 1;
}

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

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.95rem;
}

.icon-check {
    color: var(--primary);
    font-weight: 800;
    margin-top: 2px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.icon-crown {
    font-size: 1.2rem;
    margin-top: -2px;
    flex-shrink: 0;
}

.pricing-price-simple {
    padding: 0 30px 10px;
    text-align: center;
}

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

.price-big.blue-text {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #0ea5e9;
    line-height: 1;
    margin: 5px 0 15px;
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.btn-primary.w-full {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

.payment-terms.block {
    display: block;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

.pricing {
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: "";
    position: absolute;
    top: 55%;
    left: 20px;
    width: 280px;
    height: 280px;
    background: url('bg_angels.png') no-repeat center;
    background-size: contain;
    opacity: 0.22;
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

.pricing-card.premium-plan {
    animation: premium-glow 4s ease-in-out infinite;
    position: relative;
    overflow: visible; /* Garante que o badge flutuante apareça */
}

.pricing-card.premium-plan {
    animation: premium-glow 4s ease-in-out infinite;
}

@keyframes premium-glow {
    0%, 100% { box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25); }
    50% { box-shadow: 0 25px 60px 5px rgba(16, 185, 129, 0.45); }
}

.premium-shadow {
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.25);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
    text-align: left;
}

.stars {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

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

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    object-fit: cover; /* Para fotos */
    border: 2px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.author-info strong { display: block; color: var(--secondary); }
.author-info span { font-size: 0.875rem; color: var(--text-light); }

/* Guarantee */
.guarantee-box {
    max-width: 600px;
    margin: 40px auto;
    background: white;
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 24px;
    padding: 60px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.guarantee-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.1);
}

.guarantee-badge {
    position: absolute;
    top: -40px;
    background: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.2);
    border: 4px solid #f8fafc;
}

.guarantee-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.guarantee-label {
    font-size: 0.7rem;
    font-weight: 900;
    color: var(--primary);
    margin-top: 2px;
}

.guarantee-text h3 {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.guarantee-text p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 24px;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover { background: #f8fafc; }

.faq-question .icon {
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s;
}

.faq-question.active .icon { transform: rotate(45deg); color: var(--primary); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fdfdfd;
}

.faq-answer p { 
    padding: 10px 24px 24px; 
    color: var(--text-light); 
    text-align: left; 
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--secondary);
    color: white;
    padding: 60px 0 40px;
}

.disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.5); max-width: 800px; margin: 1rem auto; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.875rem; }
.footer-links a:hover { color: white; }

/* Animations & Responsive */
.hero::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 4%;
    width: 250px;
    height: 250px;
    background: url('bg_angels.png') no-repeat center;
    background-size: contain;
    opacity: 0.25;
    mix-blend-mode: multiply;
    filter: sepia(0.3);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 5%;
    right: 4%;
    width: 250px;
    height: 250px;
    background: url('bg_angels.png') no-repeat center;
    background-size: contain;
    opacity: 0.25;
    mix-blend-mode: multiply;
    filter: sepia(0.3) scaleX(-1);
    pointer-events: none;
    z-index: 1;
}

.benefits {
    position: relative;
    z-index: 2;
}

.benefits::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 300px;
    height: 300px;
    background: url('bg_angels.png') no-repeat center;
    background-size: contain;
    opacity: 0.2;
    pointer-events: none;
    z-index: -1;
}

.hidden-onload { opacity: 0; transform: translateY(-20px); }
.hidden-onload-left { opacity: 0; transform: translateX(-50px); }
.hidden-onload-right { opacity: 0; transform: translateX(50px); }

.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (max-width: 768px) {
    .nav-content .btn-outline {
        display: none; /* simple mobile nav */
    }
    .hero-container { flex-direction: column; text-align: center; }
    .dynamic-title { font-size: 2.5rem; }
    .hero-text p { margin: 0 auto 2rem; font-size: 1.1rem; }
    .floating-card { display: none; }
    
    .guarantee-box { flex-direction: column; text-align: center; }
    
    .price-big { font-size: 3.5rem; }
}
