:root {
    --color-bg: #0a0a0a;
    --color-surface: #121212;
    --color-primary: #D4AF37;
    /* Gold */
    --color-primary-glow: rgba(212, 175, 55, 0.5);
    --color-text: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-accent: #00f2ff;
    /* Cyan/Neon accent */

    --font-main: 'Inter', sans-serif;
    --font-display: 'Orbitron', sans-serif;

    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

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

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

/* Background Elements */
.bg-gradient-sphere {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: float 10s infinite ease-in-out;
}

.sphere-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-primary), transparent);
    top: -100px;
    left: -100px;
}

.sphere-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #2a2a2a, transparent);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 50px);
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-fast);
}

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

.logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:not(.btn):hover {
    color: var(--color-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.btn-block {
    width: 100%;
    display: flex;
}

.btn-primary {
    background: var(--color-primary);
    color: #000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--color-primary-glow);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text);
}

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

.btn-dark {
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-dark:hover {
    background: #111;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6);
}

.btn-old-site {
    background: linear-gradient(90deg, #1b1b1b, #333333);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--color-text);
    margin-top: 20px; /* Adicionado margem vertical */
}

.btn-old-site:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1rem;
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.6s;
}
.glow-effect:hover::after {
    transform: scale(1);
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    width: 90%;
    max-width: 500px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--color-primary);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    text-align: center;
}

.popup-overlay.active .popup-content {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--color-text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: var(--color-primary);
}

.popup-header {
    margin-bottom: 20px;
}

.popup-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.popup-header h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text);
}

.popup-message {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.popup-main-action {
    margin-bottom: 30px;
}

.popup-main-action p {
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--color-text);
}

.popup-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.popup-secondary-actions .small-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Hero Section */
.hero {
	min-height: 100vh;
	height: auto;
	display: flex;
	align-items: center;
	position: relative;
	padding-top: 80px;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    min-height: 160px;
    /* Reserve space for typing */
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--color-primary);
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.coin-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    animation: float-coin 6s ease-in-out infinite;
}

.floating-coin {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3));
}

.coin-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
    z-index: -1;
}

@keyframes float-coin {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 60px;
    background: linear-gradient(to right, var(--color-primary), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-center {
    text-align: center;
}

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

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.glass-card:hover::before {
    transform: translateX(100%);
}

.icon-wrapper {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.glass-card:hover .icon-wrapper {
    transform: scale(1.1);
    text-shadow: 0 0 15px var(--color-primary);
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Cases Section */
.cases {
    padding: 100px 0;
}

.cases-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-frame {
    aspect-ratio: 16/9;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cases-content h2 {
    margin-bottom: 30px;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text);
}

.feature-item i {
    color: var(--color-primary);
}

.cases-desc {
    font-size: 1.1rem;
}

/* Roadmap Section */
.roadmap {
    background: #ffffff;
    color: #333333;
    padding: 100px 0;
    margin-top: 60px;
}

.roadmap .section-title {
    margin-bottom: 40px;
    background: none;
    -webkit-text-fill-color: initial;
    color: #333333;
}

.roadmap-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 20px;
}

.roadmap-grid::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #d4af37, rgba(0, 0, 0, 0));
    transform: translateX(-50%);
    opacity: 0.7;
}

.roadmap-card {
    position: relative;
    width: 48%;
    background: #1a1a1a !important;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
    padding: 24px 28px;
    color: #f5f5f5;
}

.roadmap-card.featured {
    border-color: #d4af37;
    box-shadow: 0 22px 60px rgba(212, 175, 55, 0.35);
}

.roadmap-card::before {
    content: '';
    position: absolute;
    top: 32px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #1a1a1a;
    border: 3px solid #d4af37;
    z-index: 2;
}

.roadmap-card:nth-child(odd) {
    align-self: flex-start;
}

.roadmap-card:nth-child(odd)::before {
    right: -7px;
}

.roadmap-card:nth-child(even) {
    align-self: flex-end;
}

.roadmap-card:nth-child(even)::before {
    left: -7px;
}

.roadmap .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.stage-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
}

.quarter-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #333333;
    color: #f5f5f5;
}

.roadmap-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.roadmap-card .card-subtitle {
    font-size: 0.9rem;
    color: #d0d0d0;
    margin-bottom: 16px;
}

.roadmap-list {
    list-style: none;
    padding-left: 0;
    margin: 0 0 20px 0;
}

.roadmap-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 0.95rem;
    color: #f0f0f0;
}

.roadmap-list i {
    color: #d4af37;
}

.roadmap-card .btn {
    margin-top: 10px;
}

/* Roadmap Responsive */
@media (max-width: 992px) {
    .roadmap-card {
        width: 80%;
    }
}

@media (max-width: 768px) {
    .roadmap-grid::before {
        left: 16px;
        transform: none;
    }

    .roadmap-card,
    .roadmap-card:nth-child(odd),
    .roadmap-card:nth-child(even) {
        width: 100%;
        align-self: flex-start;
    }

    .roadmap-card::before {
        left: -7px;
        right: auto;
    }
}

/* Documents Section */
.documents {
    background: linear-gradient(135deg, #d4af37, #f5e3a1);
    padding: 80px 0;
    color: #1a1a1a;
}

.documents .section-title {
    margin-bottom: 20px;
    background: none;
    -webkit-text-fill-color: initial;
    color: #333333; /* grafite para o título Documentos */
}

.documents-subtitle {
    max-width: 540px;
    margin: 0 auto 40px auto;
    color: #3b320f;
    font-size: 1rem;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.document-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: 18px;
    padding: 28px 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.document-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.document-card p {
    font-size: 0.95rem;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.btn-light-doc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 999px;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-light-doc:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
    background: #000000;
}

/* FAQ Preview Section */
.faq-preview {
    padding: 90px 0;
    background: linear-gradient(135deg, #d4af37, #f5e3a1);
}

.faq-preview .section-title {
    margin-bottom: 20px;
    background: none;
    -webkit-text-fill-color: initial;
    color: #333333; /* grafite para o título Perguntas Frequentes */
}

.faq-preview-subtitle {
    max-width: 560px;
    margin: 0 auto 40px auto;
    color: #333333; /* grafite para o subtítulo da FAQ */
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.faq-item {
    background: rgba(0, 0, 0, 0.88);
    border-radius: 16px;
    padding: 24px 22px;
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.faq-item h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.faq-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.faq-preview-cta {
    margin-top: 40px;
}

.faq-btn-more {
    min-width: 260px;
}

.faq-preview-cta .btn + .btn {
    margin-left: 16px;
}

/* Distribution Section */
.distribution {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.distribution-bg {
    position: absolute;
    inset: 0;
    background-image: url('base/assets/images/background/3.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
    opacity: 0.9;
    z-index: -2;
}

.distribution::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.35), transparent 60%),
                radial-gradient(circle at bottom right, rgba(0, 0, 0, 0.8), transparent 55%);
    z-index: -1;
}

.distribution .section-title {
    text-align: left;
    margin-bottom: 18px;
}

.distribution-content {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 40px;
    align-items: flex-start;
}

.distribution-lead {
    font-size: 1.1rem;
    color: #f5f5f5;
    margin-bottom: 18px;
}

.distribution-note {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.distribution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.distribution-card {
    background: rgba(0, 0, 0, 0.82);
    border-radius: 18px;
    padding: 22px 22px 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.distribution-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.distribution-card p,
.distribution-card ul {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.distribution-card ul {
    padding-left: 18px;
    margin: 8px 0 0;
}

.distribution-card li + li {
    margin-top: 4px;
}

.distribution-small {
    font-size: 0.85rem;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .distribution-content {
        grid-template-columns: 1fr;
    }
}

/* Magazines Section */
.magazines {
    padding: 100px 0;
    background: #0f0f10;
    position: relative;
    overflow: hidden;
}

.magazines-subtitle {
    max-width: 560px;
    margin: 0 auto 50px auto;
    color: var(--color-text-muted);
}

.magazines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.magazine-card {
    background: rgba(15, 15, 20, 0.9);
    border-radius: 20px;
    padding: 22px 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.magazine-cover {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
}

.magazine-cover img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.4s ease;
}

.magazine-card:hover .magazine-cover img {
    transform: scale(1.06);
}

.magazine-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: #ffffff;
}

.magazine-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    flex-grow: 1;
}

.magazines::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.35;
    pointer-events: none;
}

/* Testimonials Section */
.testimonials {
    padding: 90px 0;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 55%),
                radial-gradient(circle at bottom right, rgba(0, 240, 255, 0.09), transparent 55%),
                #050507;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.25;
    pointer-events: none;
}

.testimonials .section-title {
    margin-bottom: 16px;
}

.testimonials-subtitle {
    max-width: 580px;
    margin: 0 auto 40px auto;
    color: var(--color-text-muted);
    font-size: 0.98rem;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: rgba(10, 10, 14, 0.96);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.testimonial-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.testimonial-video iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonial-content h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: #ffffff;
}

.testimonial-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

@media (max-width: 992px) {
    .testimonials-carousel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
    }

    .testimonial-card {
        min-width: 80%;
        scroll-snap-align: center;
    }
}

/* Partners Section */
.partners {
    padding: 70px 0 80px 0;
    background: #050507;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.partners .section-title {
    margin-bottom: 16px;
}

.partners-subtitle {
    max-width: 620px;
    margin: 0 auto 40px auto;
    color: var(--color-text-muted);
    font-size: 0.96rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 26px;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    padding: 18px 26px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(0.1);
    opacity: 0.95;
    transition: transform 0.2s ease, opacity 0.2s ease, filter 0.2s ease;
}

.partner-logo:hover img {
    transform: translateY(-2px) scale(1.03);
    opacity: 1;
    filter: grayscale(0);
}

/* Bonus & Affiliates Section */
.bonus-affiliates {
    padding: 80px 0 90px 0;
    background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.14), transparent 55%),
                radial-gradient(circle at bottom right, rgba(0, 240, 255, 0.08), transparent 55%),
                #050507;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bonus-affiliates .section-title {
    margin-bottom: 18px;
}

.bonus-subtitle {
    max-width: 640px;
    margin: 0 auto 40px auto;
    color: var(--color-text-muted);
    font-size: 0.98rem;
}

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

.bonus-card {
    background: linear-gradient(145deg, rgba(10, 10, 14, 0.98), rgba(24, 24, 32, 0.98));
    border-radius: 22px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    padding: 26px 24px 24px;
}

.bonus-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.bonus-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0 90px 0;
    background: #020308;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: -20%;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.3), transparent 60%),
        radial-gradient(circle at bottom right, rgba(0, 240, 255, 0.22), transparent 55%);
    opacity: 0.8;
    pointer-events: none;
}

.final-cta-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 40px;
    align-items: center;
    background: rgba(10, 10, 16, 0.96);
    border-radius: 26px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.95);
}

.final-cta-title {
    font-family: var(--font-display);
    font-size: 2.1rem;
    margin-bottom: 16px;
}

.final-cta-text {
    color: var(--color-text-muted);
    font-size: 0.98rem;
    max-width: 480px;
}

.final-cta-actions {
    margin-top: 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.final-cta-side {
    padding-left: 10px;
}

.final-cta-subtitle {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.final-cta-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.social-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(5, 5, 10, 0.9);
    color: #ffffff;
    font-size: 0.85rem;
    text-decoration: none;
}

.social-chip i {
    color: var(--color-primary);
}

.social-chip span {
    font-weight: 500;
}

.final-cta-note {
    font-size: 0.86rem;
    color: var(--color-text-muted);
}

@media (max-width: 992px) {
    .final-cta-inner {
        grid-template-columns: 1fr;
        padding: 28px 22px;
    }

    .final-cta-side {
        padding-left: 0;
    }
}

/* Footer */
.footer {
    padding: 60px 0 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
    margin-bottom: 0;
    background: #050507;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 32px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.footer-col h5 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.footer-about {
    max-width: 260px;
}

.footer-logo img {
    height: 40px;
}

.footer-socials {
    margin-top: 16px;
    display: flex;
    gap: 12px;
}

.footer-socials a {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    text-decoration: none;
}

.footer-socials a i {
    transition: transform 0.2s ease, color 0.2s ease;
}

.footer-socials a:hover i {
    transform: translateY(-2px);
    color: var(--color-primary);
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li + li,
.footer-contact li + li {
    margin-top: 6px;
}

.footer-links a,
.footer-contact ul a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-contact ul a:hover {
    color: var(--color-primary);
}

.footer-contact-emails,
.footer-contact-whatsapp {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-contact-whatsapp a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.footer-contact-whatsapp a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-dev a {
    color: var(--color-primary);
    text-decoration: none;
}

.footer-dev a:hover {
    text-decoration: underline;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

.floating-chat {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1200;
}

.chat-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    background: #111111;
}

.chat-btn i {
    font-size: 1.3rem;
}

.chat-whatsapp {
    background: #25D366;
}

.chat-telegram {
    background: #0088cc;
}

.chat-youtube {
    background: #ff0000;
}

.chat-tawk {
    background: linear-gradient(135deg, #d4af37, #8a6c1c);
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.8);
}

.chat-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.85);
}

@media (max-width: 768px) {
    .floating-chat {
        right: 16px;
        bottom: 16px;
    }
}

/* Animations Classes */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-reveal {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: scale(1);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        padding-top: 120px;
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Mobile menu to be implemented if needed, for now hidden or simple stack */
    }

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

    .btn-lg {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .popup-content {
        width: 95%;
        padding: 30px 20px;
    }
}

@media (min-width: 1200px) {
    .benefits,
    .cases,
    .documents,
    .faq-preview,
    .distribution,
    .magazines,
    .testimonials,
    .partners,
    .bonus-affiliates,
    .final-cta {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .roadmap {
        padding: 130px 0;
        margin-top: 80px;
    }
}