/* =========================================
   RESET & VARIABLES
   ========================================= */
:root {
    --bg-black: #050505;
    --bg-charcoal: #121212;
    --bg-card: #1E1E1E;

    --text-white: #FFFFFF;
    --text-gray: #B0B0B0;

    --neon-green: #00FF88;
    --neon-purple: #8A2BE2;
    --neon-cyan: #00E5FF;
    --neon-red: #FF3333;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-white);
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   UTILITIES
   ========================================= */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-neon-green {
    color: var(--neon-green);
}

.text-neon-purple {
    color: var(--neon-purple);
}

.text-neon-cyan {
    color: var(--neon-cyan);
}

.text-neon-red {
    color: var(--neon-red);
}

.margin-top-40 {
    margin-top: 40px;
}

.section-dark {
    background-color: var(--bg-black);
    padding: 80px 0;
}

.section-charcoal {
    background-color: var(--bg-charcoal);
    padding: 80px 0;
}

.section-gradient {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   BUTTONS
   ========================================= */
.cta-button {
    display: inline-block;
    background-color: var(--neon-green);
    color: #000;
    font-family: var(--font-heading);
    font-weight: 900;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    border: 2px solid var(--neon-green);
}

.cta-button:hover {
    background-color: transparent;
    color: var(--neon-green);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.6);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--text-white);
    color: var(--text-white);
    padding: 15px 35px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: #000;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 255, 136, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    padding: 60px 0 60px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.4) 100%),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop') center/cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--neon-cyan);
}

.hero h1 {
    font-size: 2.5rem;
    /* Mobile first */
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.subheadline {
    font-size: 1.1rem;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 30px;
}

.hero-details-simple {
    margin: 35px auto 0;
    display: table;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-details-simple p {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    font-size: 0.95rem;
    font-weight: 600;
}

.detail-item i {
    margin-right: 8px;
    font-size: 1.2rem;
}

.hero-details-simple {
    margin-top: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ccc;
    letter-spacing: 0.5px;
}

/* =========================================
   PROBLEM SECTION
   ========================================= */
.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #333;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--neon-green);
}

.icon-box {
    font-size: 2.5rem;
    color: var(--neon-red);
    margin-bottom: 20px;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.problem-footer {
    margin-top: 50px;
    font-size: 1.2rem;
    font-style: italic;
    color: #fff;
    border-left: 4px solid var(--neon-green);
    padding-left: 20px;
    display: inline-block;
}

/* =========================================
   SOLUTION SECTION
   ========================================= */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
}

.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    margin-right: 20px;
    line-height: 1;
    font-family: var(--font-heading);
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-content p {
    color: var(--text-gray);
}

/* =========================================
   AUDIENCE SECTION
   ========================================= */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.audience-item {
    background: var(--bg-card);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
}

.audience-item i {
    font-size: 2.5rem;
    color: var(--neon-cyan);
    margin-bottom: 15px;
}

.audience-item h4 {
    margin-bottom: 10px;
}

.audience-item p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.center-btn {
    text-align: center;
}

/* =========================================
   AUTHORITY SECTION
   ========================================= */
.authority-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.authority-card {
    background: var(--bg-black);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #333;
    text-align: center;
}

.authority-img {
    width: 100%;
    height: 350px;
    /* Taller for better portrait view */
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #444;
}

.placeholder-img {
    width: 100%;
    height: 350px;
    background-color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-weight: bold;
    margin-bottom: 20px;
    border-radius: 10px;
}

.authority-card h3 {
    color: var(--neon-purple);
    margin-bottom: 10px;
}

.skin-in-game {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.skin-in-game i {
    font-size: 2rem;
    color: gold;
}

.skin-in-game p {
    font-size: 0.95rem;
}

/* =========================================
   PROOF SECTION
   ========================================= */
.proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #333;
    background: #000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================================
   OFFER SECTION
   ========================================= */
.offer-box {
    background: linear-gradient(180deg, #1E1E1E 0%, #000000 100%);
    border: 1px solid #333;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.offer-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-green));
}

.offer-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.offer-header p {
    color: var(--text-gray);
    margin-bottom: 30px;
}

.offer-list {
    text-align: left;
    display: inline-block;
    margin-bottom: 40px;
}

.offer-list li {
    margin-bottom: 15px;
    font-size: 1.05rem;
    display: flex;
    align-items: flex-start;
    /* Align to top for better multi-line handling */
    gap: 10px;
}

.offer-list li i {
    margin-top: 5px;
    /* Adjust icon position since we changed alignment */
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}

.offer-list li strong {
    white-space: nowrap;
    /* Keeps 'BÔNUS 1:' together */
}

.pricing {
    margin-bottom: 30px;
}

.old-price {
    display: inline-block;
    text-decoration: none;
    color: var(--neon-purple);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: rgba(138, 43, 226, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--neon-purple);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.2);
}

.new-price {
    display: block;
    font-size: 1.5rem;
    color: var(--text-white);
    font-weight: 700;
}

.big-number {
    font-size: 3rem;
    color: var(--neon-green);
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.cash-price {
    display: block;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 5px;
}

.sold-out-batch {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    opacity: 0.6;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.sold-out-batch .batch-name {
    text-decoration: line-through;
    color: var(--text-gray);
}

.sold-out-batch .batch-status {
    color: #ff4757;
    font-weight: bold;
}

.progress-container {
    margin-top: 25px;
    margin-bottom: 25px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--text-white);
}

.progress-bar-bg {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #dc2743, #f09433);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(220, 39, 67, 0.5);
    animation: fillProgress 1.5s ease-out forwards;
}

@keyframes fillProgress {
    from {
        width: 0;
    }
}

.large-btn {
    width: 100%;
    max-width: 400px;
}

.guarantee-text {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

/* =========================================
   FAQ SECTION (Interactive)
   ========================================= */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    padding: 0;
    /* Removing padding from container to handle inside */
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid var(--neon-purple);
    cursor: pointer;
    transition: background-color 0.3s;
    overflow: hidden;
}

.faq-item:hover {
    background-color: #252525;
}

.faq-item h4 {
    margin: 0;
    padding: 20px;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item h4::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--neon-purple);
    transition: transform 0.3s ease;
}

.faq-item.active h4::after {
    transform: rotate(45deg);
}

/* Hide content by default */
.faq-item p,
.faq-item ul,
.faq-item br {
    display: none;
    padding: 0 20px 20px 20px;
    color: var(--text-gray);
    font-size: 0.95rem;
    cursor: default;
}

/* Show content when active */
.faq-item.active p,
.faq-item.active ul,
.faq-item.active br {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   SCROLL REVEAL ANIMATIONS
   ========================================= */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for grids (optional simple implementation) */
.card:nth-child(2) {
    transition-delay: 0.1s;
}

.card:nth-child(3) {
    transition-delay: 0.2s;
}

.audience-item:nth-child(1) {
    transition-delay: 0.1s;
}

.audience-item:nth-child(2) {
    transition-delay: 0.2s;
}

.audience-item:nth-child(3) {
    transition-delay: 0.3s;
}

.audience-item:nth-child(4) {
    transition-delay: 0.4s;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
    padding: 40px 0;
    border-top: 1px solid #222;
    background: #000;
}

footer p {
    color: #666;
    font-size: 0.9rem;
}

.disclaimer {
    font-size: 0.75rem;
    margin-top: 10px;
    color: #444;
}

/* =========================================
   LOCATION SECTION
   ========================================= */
.location-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 10px;
    text-transform: none;
}

.location-title {
    font-size: 2.2rem;
    /* Mobile friendly base size */
    color: #D4A056;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(212, 160, 86, 0.2);
    text-align: center;
    white-space: nowrap;
    /* Forces one line */
}

.city-highlight {
    opacity: 0.9;
    white-space: nowrap;
    /* Tries to keep - CUIABÁ together */
}

.location-address {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.location-info {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.location-info i {
    color: #fff;
    /* Icons white as per image style */
}

.location-link {
    text-decoration: none;
    display: inline-block;
    /* Reset to allow inner div to handle flex */
}

.link-content {
    color: #D4A056;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ensures center alignment */
    gap: 10px;
    transition: color 0.3s ease;
}

.link-content:hover {
    color: #fff;
    text-decoration: underline;
}

/* =========================================
   WHATSAPP SECTION
   ========================================= */
.whatsapp-section {
    padding: 60px 0;
    background: #0d0d0d;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    /* WhatsApp Green */
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.5);
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(220, 39, 67, 0.4);
    border: none;
}

.instagram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(220, 39, 67, 0.6);
    filter: brightness(1.1);
}

.instagram-button i {
    font-size: 1.5rem;
}

/* =========================================
   MOBILE SPECIFIC HELPERS
   ========================================= */
.mobile-break {
    display: block;
}

.hero-title-mobile {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.mobile-btn-fixed {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 22px 20px;
    font-size: 1.25rem;
    border-radius: 50px;
    white-space: normal;
    line-height: 1.2;
}

/* =========================================
   RESPONSIVE (TABLET & DESKTOP)
   ========================================= */
@media (min-width: 768px) {

    .hero h1,
    .hero-title-mobile {
        font-size: 3.5rem;
        line-height: 1.1;
    }

    .mobile-break {
        display: none;
    }

    .mobile-btn-fixed {
        display: inline-block;
        width: auto;
        padding: 18px 40px;
        white-space: normal;
    }

    .location-title {
        font-size: 3.5rem;
    }

    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .authority-img {
        object-position: center;
        /* Fix for desktop crop */
    }

    .authority-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .proof-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .step-item {
        flex: 1;
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 15px;
        font-size: 4rem;
    }

    .step-content h3 {
        justify-content: center;
    }

    .problem-footer {
        padding-left: 0;
        border-left: none;
        border-bottom: 4px solid var(--neon-green);
        padding-bottom: 10px;
    }
}