:root {
    --gold-primary: #D4AF37;
    --gold-light: #F2C94C;
    --gold-dark: #aa8c2c;
    --bg-dark: #050505;
    --bg-card: #0f0f0f;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Typhography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(to right, var(--gold-light), var(--gold-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold {
    color: var(--gold-primary);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 50px;
}

/* Buttons & CTA */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-light) 50%, var(--gold-primary) 100%);
    background-size: 200% auto;
    color: #000;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    padding: 20px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-position: right center;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.pulse {
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Glassmorphism Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Hero Section */
.hero {
    padding: 100px 0 150px;
    background: radial-gradient(circle at top center, #1a1505 0%, #050505 80%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.headline {
    font-size: 3.5rem;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.subheadline {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto 50px;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 2px solid #222;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.trust-indicators span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-indicators svg {
    width: 16px;
    color: var(--gold-primary);
}

.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.shape-fill {
    fill: var(--bg-card);
}

/* Social Proof Strip */
.social-strip {
    background: var(--bg-card);
    border-bottom: 1px solid #222;
    padding: 25px 0;
}

.social-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.user-avatars {
    display: flex;
    padding-left: 10px;
}

.user-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-left: -10px;
}

.stars {
    color: var(--gold-primary);
    letter-spacing: 3px;
}

/* Pain Points */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pain-card {
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.pain-card:hover {
    transform: translateY(-10px);
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pain-card h3 {
    color: var(--text-white);
    margin-bottom: 15px;
}

.pain-card p {
    color: var(--text-gray);
}

/* Solution */
.solution-section {
    background: #080808;
}

.solution-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.solution-content {
    flex: 1;
}

.solution-content .section-title {
    text-align: left;
}

.check-list {
    list-style: none;
    margin: 40px 0;
}

.check-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.check-icon {
    min-width: 25px;
    height: 25px;
    background: var(--gold-primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.solution-visual {
    flex: 1;
}

.solution-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Gallery */
.gallery-section {
    background: var(--bg-dark);
}

.swiper-slide {
    width: 300px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--gold-primary);
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid var(--gold-primary);
    z-index: 20;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background: var(--gold-primary);
}

/* Bonuses */
.bonus-section {
    background: var(--bg-card);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bonus-card {
    padding: 30px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.bonus-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.7rem;
    background: var(--gold-primary);
    color: #000;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 800;
}

.bonus-card h3 {
    margin-bottom: 10px;
    color: var(--text-white);
}

.bonus-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-section {
    background: url('../images/bg-pattern.png'), #050505;
    background-blend-mode: overlay;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.t-card {
    padding: 30px;
    border-radius: 16px;
}

.t-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.t-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold-primary);
}

.t-header h4 {
    font-size: 1.1rem;
    margin: 0;
}

.t-header .stars {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.t-card p {
    font-style: italic;
    color: #ddd;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.video-item iframe {
    width: 100%;
    height: 250px;
    border-radius: 12px;
}

/* FAQ */
.acc-item {
    margin-bottom: 15px;
    border: 1px solid #222;
    border-radius: 8px;
    overflow: hidden;
    background: #0a0a0a;
}

.acc-btn {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.acc-btn::after {
    content: '+';
    color: var(--gold-primary);
    font-size: 1.5rem;
}

.acc-btn.active::after {
    content: '-';
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    background: #111;
}

.acc-content p {
    padding: 20px;
    color: var(--text-gray);
}

/* Offer */
.offer-section {
    padding: 100px 0;
}

.offer-card {
    max-width: 600px;
    margin: 0 auto;
    background: #111;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    border: 1px solid #333;
}

.glass-glow {
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.offer-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold-primary);
    color: #000;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    white-space: nowrap;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.anchor-box {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.anchor-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-gray);
    border-bottom: 1px dashed #333;
    padding-bottom: 10px;
}

.strike {
    text-decoration: line-through;
}

.anchor-total {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    color: #fff;
    margin-top: 15px;
    font-size: 1.2rem;
}

.strike-red {
    color: #ff4444;
    text-decoration: line-through;
}

.price-box {
    margin-bottom: 30px;
}

.small-text {
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.price-tag {
    color: var(--gold-primary);
}

.symbol {
    font-size: 2rem;
    vertical-align: top;
}

.value {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
}

.installments {
    color: #fff;
    margin-top: 10px;
}

.guarantee-box {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.seal {
    width: 80px;
}

/* Sticky Bar */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px;
    display: none;
    justify-content: center;
    z-index: 999;
}

.sticky-bar .cta-button {
    width: 100%;
    max-width: 400px;
    padding: 15px;
    font-size: 1rem;
}

/* Responsive */
/* Responsive */
@media (max-width: 768px) {

    /* Global Adjustments */
    section {
        padding: 50px 0;
    }

    .headline {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .subheadline {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* Swiper Mobile Fix */
    .swiper-slide {
        width: 80%;
        /* Fluid width for mobile */
        height: 350px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.7);
        /* Darker bg for contrast */
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1rem;
    }

    /* Layout Tweaks */
    .solution-wrapper {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .offer-card {
        padding: 30px 20px;
    }

    .value {
        font-size: 3.5rem;
    }

    .hero {
        padding: 80px 0 100px;
    }

    .video-wrapper {
        margin-bottom: 30px;
    }

    /* Ensure no horizontal overflow */
    .container {
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .headline {
        font-size: 1.8rem;
    }

    .swiper-slide {
        width: 85%;
        height: 320px;
    }
}