@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;800&display=swap');

:root {
    --primary-red: #ff0000;
    --primary-red-dim: #cc0000;
    --bg-dark: #050505;
    --bg-card: rgba(20, 20, 20, 0.6);
    --text-white: #ffffff;
    --text-gray: #a3a3a3;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.05);
    --glow-red: rgba(255, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Effects */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 0, 0, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 0, 0, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

/* Typography */
h1,
h2,
h3 {
    line-height: 1.2;
    font-weight: 700;
}

h1 span,
h2 span {
    color: var(--primary-red);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-red);
    color: white;
    box-shadow: 0 0 20px var(--glow-red);
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: var(--primary-red-dim);
    transform: translateY(-2px);
    box-shadow: 0 0 30px var(--glow-red);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--primary-red);
    background: rgba(255, 0, 0, 0.1);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.badge-new {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.stars {
    color: #ffd700;
}

/* Products Section (Items) */
.products-section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.3);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.product-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), #990000);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.card-price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-list li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.check-icon {
    color: var(--primary-red);
    width: 18px;
    height: 18px;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
    margin-top: 4rem;
    background: #000;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-red);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

/* Mobile Responsiveness specifically for the items (as requested) */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero {
        min-height: auto;
        /* Remove large height constraint */
        padding-bottom: 0;
    }

    .stats-row {
        margin-top: 1rem;
        margin-bottom: 0;
        /* Zero gap */
    }

    .products-grid {
        grid-template-columns: 1fr;
        /* Force single column on mobile */
        padding: 0 1rem;
    }

    .diff-grid,
    .threes-grid {
        grid-template-columns: 1fr !important;
    }

    .table-container {
        overflow-x: auto;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links a {
        margin: 0 1rem;
    }
}

/* Difference Section Styles */
.difference-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-dark), #0a0000);
}

.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.diff-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.diff-decorativo {
    color: #6b7280;
}

.diff-estrategico {
    color: #ff4500;
}

/* Orange/Red */

.diff-desc {
    font-size: 1.1rem;
    color: white;
}

.divider-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 4rem 0;
}

/* 3 Things Section */
.threes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.thing-item h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    /* Number color */
}

.thing-item .bar {
    width: 100%;
    height: 2px;
    background: #333;
    margin-bottom: 1rem;
    position: relative;
}

.thing-item .bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background: var(--primary-red);
}

.thing-item h3 {
    font-size: 1.25rem;
    line-height: 1.4;
}

/* Problem Section (Seguidores vs Vendas) */
.problem-section {
    padding: 6rem 0;
    background: var(--bg-dark);
    overflow: hidden;
    /* For the image overlap if needed */
}

@media (max-width: 768px) {
    .problem-section {
        padding: 0 0 2rem 0;
        /* No top padding */
    }
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.problem-image-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: 800;
    font-size: 2rem;
    text-align: center;
}

.problem-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Problem Section Image */
.problem-image-card {
    width: 100%;
    height: 250px;
    /* Reduced from 350px */
    background: none;
    border: none;
    padding: 0;
    margin-bottom: 3rem;
    overflow: hidden;
    border-radius: 8px;
}

.problem-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .problem-image-card {
        height: auto;
        /* Natural height */
        width: 100%;
        margin: 0 0 2rem 0;
        aspect-ratio: 16/9;
        /* Force horizontal aspect if needed, or just let auto handle it */
    }

    .problem-img {
        height: auto;
        object-fit: contain;
    }
}

.unified-error-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 in a row */
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.error-card {
    background: #cc0000;
    padding: 2rem;
    border-radius: 12px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    min-height: 120px;
}

.error-card.full-span {
    background: #cc0000;
    /* Ensure same bg */
    width: 100%;
}

@media (max-width: 768px) {
    .unified-error-grid {
        grid-template-columns: 1fr;
    }
}

.error-title {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.error-desc {
    font-size: 0.9rem;
    opacity: 0.9;
}

.problem-footer-text {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--text-gray);
}

.problem-highlight {
    color: var(--primary-red);
    font-weight: 700;
}

@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .error-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Comparison Table */
.comparison-section {
    padding: 2rem 0;
    background: #050505;
}

/* Redesigned Quiz Section */
#quiz {
    padding: 8rem 0;
    background: radial-gradient(circle at center, #1a0000 0%, #000000 100%);
    position: relative;
    overflow: hidden;
}

#quiz::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGNpcmNsZSBjeD0iMSIgY3k9IjEiIHI9IjEiIGZpbGw9InJnYmEoMjU1LCAwLCAwLCAwLjIpIi8+PC9zdmc+');
    opacity: 0.3;
    pointer-events: none;
}

.quiz-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.quiz-question-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--primary-red);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quiz-question-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 0, 0, 0.3);
}

.quiz-question-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.question-number {
    background: var(--primary-red);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 6px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quiz-option {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #d1d5db;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.quiz-option:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: var(--primary-red);
    color: white;
    padding-left: 2rem;
}

.quiz-option ion-icon {
    color: var(--primary-red);
    opacity: 0;
    transition: opacity 0.2s;
}

.quiz-option:hover ion-icon {
    opacity: 1;
}

.quiz-option.selected {
    background: rgba(255, 0, 0, 0.2);
    border-color: var(--primary-red);
    color: white;
    padding-left: 2rem;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

.quiz-option.selected ion-icon {
    opacity: 1;
}

.quiz-cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding: 2.5rem 3rem;
    background: linear-gradient(145deg, rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.1);
    transition: all 0.5s ease;
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .quiz-cta-box {
        flex-direction: column;
        text-align: center !important;
        gap: 1.5rem;
    }

    .quiz-cta-box div {
        text-align: center !important;
    }
}

.quiz-cta-box.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    display: none;
    /* Hide fully to avoid spacing issues */
}


.table-container {
    background: #0f0f0f;
    /* Darker bg for table area */
    border-radius: 16px;
    border: 1px solid #333;
    padding: 1rem;
}

.comp-table {
    width: 100%;
    border-collapse: collapse;
    color: white;
}

.comp-table th,
.comp-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #333;
}

.comp-table th {
    font-size: 1.1rem;
    font-weight: 700;
}

.comp-table tr:last-child td {
    border-bottom: none;
}

.comp-table td:not(:first-child),
.comp-table th:not(:first-child) {
    border-left: 1px solid #333;
}

/* Highlight Card Animation */
.product-card.highlight-card {
    border-color: #ff0000 !important;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.4), inset 0 0 10px rgba(255, 0, 0, 0.2) !important;
    transform: scale(1.05);
    z-index: 100;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background: #800000;
    /* Deep Red from screenshot */
    background: linear-gradient(180deg, #800000 0%, #500000 100%);
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-arrow {
    background: rgba(0, 0, 0, 0.3);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    /* Arrow Shape: Rectangle with point on right, cutout on left */
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%, 5% 50%);
}

.step-arrow ion-icon {
    font-size: 2rem;
    color: white;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.5;
    color: #e5e5e5;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #0a0a0a;
    /* Dark background to contrast with the red HowItWorks */
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
    /* Left align on desktop as per screenshot style, or center if preferred. Let's keep it standard container logic */
}

.faq-item {
    background: linear-gradient(90deg, rgba(80, 0, 0, 0.3) 0%, rgba(20, 0, 0, 0.3) 100%);
    border: 1px solid rgba(255, 0, 0, 0.1);
    border-left: 4px solid var(--primary-red);
    padding: 1.5rem;
    border-radius: 8px;
    transition: transform 0.2s;
}

.faq-item:hover {
    background: linear-gradient(90deg, rgba(100, 0, 0, 0.4) 0%, rgba(30, 0, 0, 0.4) 100%);
    transform: translateX(10px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.faq-question ion-icon {
    color: var(--primary-red);
    font-size: 1.5rem;
}

.faq-question h3 {
    font-size: 1.25rem;
    color: white;
    font-weight: 700;
}

.faq-answer p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.5;
    padding-left: 2.5rem;
    /* Align text under title */
}

.faq-answer strong {
    color: white;
}

/* Dust Effect */
#dust-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.dust-particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
    animation: floatDust linear infinite;
}

@keyframes floatDust {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    20% {
        opacity: 0.4;
    }

    80% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100vh) translateX(50px);
        /* Move up and slightly right */
        opacity: 0;
    }
}


/* FORCE MOBILE SPACING OVERRIDES */
@media (max-width: 768px) {
    .hero {
        min-height: auto !important;
        height: auto !important;
        padding-top: 4rem;
        padding-bottom: 2rem !important;
        /* Restored breathing room */
        display: block !important;
    }

    .hero-content {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .stats-row {
        margin-top: 1.5rem;
        margin-bottom: 2rem !important;
        /* Standard spacing */
        padding-bottom: 0 !important;
    }

    .problem-section {
        padding-top: 2rem !important;
        /* Restored breathing room */
        margin-top: 0 !important;
    }

    .problem-image-card {
        margin-top: 0 !important;
        margin-bottom: 2rem !important;
        height: auto !important;
        /* Let the new vertical image dictate height */
        aspect-ratio: auto !important;
        border-radius: 12px !important;
        /* Rounded corners */
        overflow: hidden !important;
    }

    .problem-img {
        object-fit: contain !important;
        /* Show full image */
        height: auto !important;
        border-radius: 12px !important;
        /* Ensure image itself is rounded */
    }
}

/* Detailed Footer */
.main-footer {
    background: #150505;
    /* Very dark red/black background */
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 0, 0, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-heading {
    font-size: 1.5rem;
    color: white;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.footer-text,
.footer-col p {
    color: #cccccc;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-links-list a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.footer-links-list a:hover {
    text-decoration: underline;
}

.footer-social {
    margin-top: 1.5rem;
    color: #cccccc;
}

.footer-social a {
    color: var(--primary-red);
    font-weight: 700;
    text-decoration: none;
    margin: 0 0.25rem;
}

.contact-item {
    margin-bottom: 1.5rem;
    color: #cccccc;
}

.contact-item strong {
    display: block;
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--primary-red);
    text-decoration: none;
    font-size: 1rem;
}

.footer-highlight {
    font-weight: 700;
}

.footer-copyright {
    text-align: left;
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}