@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;900&display=swap');

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --gold: #eebb4d;
    --gold-hover: #d4a030;
    --gold-glow: rgba(238, 187, 77, 0.3);
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-tertiary: #a0a0a0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
}

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

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

/* Background Animations */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.bg-vignette {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(238, 187, 77, 0.05) 0%, transparent 70%);
}

.chart-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='1000' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 150 L100 130 L200 160 L300 100 L400 120 L500 80 L600 110 L700 40 L800 60 L900 20 L1000 50' fill='none' stroke='%23eebb4d' stroke-width='1' opacity='0.1'/%3E%3Cpath d='M0 170 L100 150 L200 180 L300 120 L400 140 L500 100 L600 130 L700 60 L800 80 L900 40 L1000 70' fill='none' stroke='%23ffffff' stroke-width='1' opacity='0.05'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    animation: scrollChart 60s linear infinite;
}

@keyframes scrollChart {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.floating-symbols {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.symbol {
    position: absolute;
    color: var(--gold);
    opacity: 0.03;
    font-size: 8rem;
    font-weight: 700;
    pointer-events: none;
    animation: float 15s ease-in-out infinite alternate;
}

@keyframes float {
    from {
        transform: translateY(0) rotate(0deg);
    }

    to {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* UI Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--gold-glow);
    text-align: center;
}

.btn:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--gold-glow);
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
}

/* Sections Styling */
section {
    padding: 100px 0;
    position: relative;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-end;
    /* Align content to bottom */
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 20px 20px 100px 20px;
    /* Added bottom padding */
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('henrique-hero.jpg') center top/cover no-repeat;
    /* Focus on top */
    z-index: -2;
    filter: brightness(0.6) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 1) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    /* Slightly constrained width for better reading */
    z-index: 1;
}

.hero-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 4vw, 3rem);
    /* Reduced size */
    font-weight: 900;
    /* Extra Black */
    margin-bottom: 30px;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    letter-spacing: -0.02em;
}

.hero-logo-box {
    margin-top: 50px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.5s;
}

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

.hero-logo-box p {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.hero-logo {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--gold-glow));
    animation: pulseLogo 3s ease-in-out infinite alternate;
}

@keyframes pulseLogo {
    from {
        transform: scale(1);
        filter: drop-shadow(0 0 20px var(--gold-glow));
    }

    to {
        transform: scale(1.05);
        filter: drop-shadow(0 0 35px var(--gold-glow));
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    min-width: 50px;
    height: 50px;
    background: rgba(238, 187, 77, 0.1);
    border: 1px solid var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Bonus Section */
.bonus-section {
    background: rgba(238, 187, 77, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

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

.bonus-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold);
}

.bonus-badge {
    background: var(--gold);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
    display: inline-block;
}

.bonus-value {
    color: var(--text-tertiary);
    text-decoration: line-through;
    font-size: 0.9rem;
}

/* Carousel */
.carousel-container {
    width: 100%;
    overflow: hidden;
    margin-top: 50px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 300px;
}

/* Pricing Grid */
.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Aligns them nicely if heights differ */
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.price-card {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    text-align: center;
    position: relative;
    padding: 40px 30px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

/* Featured Card (Annual) */
.price-card.featured {
    border: 1px solid var(--gold);
    background: rgba(238, 187, 77, 0.05);
    transform: scale(1.05);
    /* Make it pop */
    z-index: 2;
    box-shadow: 0 0 40px rgba(238, 187, 77, 0.15);
}

.price-card.featured:hover {
    transform: scale(1.08);
    /* Slightly more on hover */
    box-shadow: 0 0 60px rgba(238, 187, 77, 0.25);
}

.discount-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #000;
    font-weight: 800;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px var(--gold-glow);
}

.price-subtitle {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-top: -10px;
    margin-bottom: 30px;
}

.btn-block {
    display: block;
    width: 100%;
    margin-bottom: 30px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.glow-effect {
    animation: glowBtn 2s infinite alternate;
}

@keyframes glowBtn {
    from {
        box-shadow: 0 0 10px var(--gold-glow);
    }

    to {
        box-shadow: 0 0 25px var(--gold-glow);
    }
}

/* Benefit List */
.benefit-list {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.benefit-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.benefit-list li:last-child {
    border-bottom: none;
}

.guarantee-box {
    margin-top: 60px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 20px;
        align-items: flex-end;
        justify-content: center;
        background-position: center top;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 20px;
        width: 100%;
    }

    .hero-headline {
        font-size: 2rem;
        line-height: 1.25;
        margin-bottom: 25px;
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    }

    .hero-bg-img {
        background-position: center top;
    }

    .section-title {
        font-size: 2rem;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

/* Text Highlights */
.text-white {
    color: #ffffff;
    font-weight: 700;
}

.gold-gradient {
    background: linear-gradient(to right, #eebb4d, #f6d365, #eebb4d);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(238, 187, 77, 0.4);
}

/* Testimonials Image Carousel */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 600px;
    margin: 40px auto;
    overflow: hidden;
}

.testimonials-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.testimonial-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.testimonial-slide img {
    max-width: 100%;
    max-height: 600px;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.testimonial-slide img:hover {
    transform: scale(1.02);
}

.testimonials-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonials-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonials-carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.testimonials-carousel-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 12px var(--gold-glow);
    transform: scale(1.3);
}

/* Mobile Responsive for Testimonials Carousel */
@media (max-width: 768px) {
    .testimonials-carousel-wrapper {
        max-width: 100%;
    }

    .testimonial-slide img {
        max-height: 500px;
        border-radius: 12px;
    }

    .testimonials-carousel-dots {
        gap: 10px;
        margin-top: 20px;
    }

    .testimonials-carousel-dot {
        width: 10px;
        height: 10px;
    }
}

/* --- Irresistible Pitch Enhancements --- */

.value-stack {
    margin: 60px auto 40px;
    max-width: 800px;
    text-align: center;
}

.value-stack .glass-card {
    padding: 35px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.value-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    gap: 15px;
}

.value-item span:first-child {
    text-align: left;
    color: var(--text-secondary);
}

.value-item .price-del {
    color: #ff4444;
    text-decoration: line-through;
    font-weight: 700;
    white-space: nowrap;
}

.total-value-box {
    margin-top: 35px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(238, 187, 77, 0.1) 0%, rgba(238, 187, 77, 0.02) 100%);
    border: 1.5px dashed var(--gold);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.total-value-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(238, 187, 77, 0.1), transparent);
    animation: shimmer 4s infinite;
}

.total-value-box h3 {
    margin: 10px 0;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: -1px;
}

/* Urgency & Scarcity */
.urgency-bar-container {
    max-width: 500px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 0 20px;
}

.urgency-label {
    font-weight: 800;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #ff4444;
}

.progress-bar {
    height: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.progress-fill {
    height: 100%;
    width: 87%;
    background: linear-gradient(90deg, #ff4444, #ff8888);
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.3);
    border-radius: 20px;
    animation: progressFill 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Trust Icons Refinement */
.trust-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 50px auto 30px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.trust-item svg {
    color: var(--gold);
    width: 28px;
    height: 28px;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .value-item {
        font-size: 0.9rem;
        padding: 12px 10px;
    }

    .value-item span:first-child {
        text-align: left;
    }

    .total-value-box h3 {
        font-size: 1.8rem;
    }

    .pricing-container {
        gap: 20px;
    }

    .price-card {
        padding: 40px 20px;
    }

    .trust-icons {
        gap: 20px;
        flex-wrap: wrap;
    }
}