/* =========================================
   1. VARIÁVEIS E RESET
   ========================================= */
:root {
    --primary: #1e3a8a;
    /* Blue 900 */
    --secondary: #f97316;
    /* Orange 500 */
    --accent: #10b981;
    /* Green 500 */

    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;

    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-500: #3b82f6;
    --blue-900: #1e3a8a;

    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #10b981;
    --green-600: #059669;

    --red-600: #dc2626;
    --red-700: #b91c1c;

    --orange-300: #fdba74;
    --yellow-400: #facc15;
    --yellow-500: #eab308;

    --purple-600: #9333ea;

    --white: #ffffff;

    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    color: var(--gray-800);
    background: var(--gray-50);
    line-height: 1.5;
}

img {

    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* =========================================
   TIPOGRAFIA GLOBAL E HEADING SYSTEM
   ========================================= */
p, span, div, a, li, ul {
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 0.5em;
    font-style: normal;
}

h1, .text-h1 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h2, .text-h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h3, .text-h3 {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
}

h4, .text-h4 {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

h5, .text-h5 {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
}

h6, .text-h6 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media(min-width: 768px) {
    h1, .text-h1 {
        font-size: 2.75rem;
    }
    h2, .text-h2 {
        font-size: 2.25rem;
    }
    h3, .text-h3 {
        font-size: 2rem;
    }
    h4, .text-h4 {
        font-size: 1.5rem;
    }
    h5, .text-h5 {
        font-size: 1.25rem;
    }
}

/* =========================================
   2. UTILITÁRIOS GERAIS
   ========================================= */
.container {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
}

@media(min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media(min-width: 768px) {
    .container {
        max-width: 768px;
        padding-right: 2rem;
        padding-left: 2rem;
    }
}

@media(min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media(min-width: 1280px) {
    .container {
        max-width: 1152px;
    }
}

.hidden {
    display: none !important;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

.text-justify {
    text-align: justify;
    hyphens: auto;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

.z-10 {
    z-index: 10;
}

.z-50 {
    z-index: 50;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.font-medium {
    font-weight: 500;
}

.uppercase {
    text-transform: uppercase;
}

.transition {
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .md\:block {
        display: block !important;
    }

    .md\:hidden {
        display: none !important;
    }

    .md\:mb-0 {
        margin-bottom: 0 !important;
    }

    .md\:flex-row {
        flex-direction: row !important;
    }

    .md\:text-6xl {
        font-size: 3.75rem !important;
    }
}

@media (min-width: 1024px) {
    .lg\:block {
        display: block !important;
    }

    .lg\:hidden {
        display: none !important;
    }

    .lg\:flex {
        display: flex !important;
    }
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mr-1 {
    margin-right: 0.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-4 {
    gap: 1rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1.4;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.5;
}

.text-base {
    font-size: 1rem;
    line-height: 1.6;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.6;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.4;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 1.3;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 1.2;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 1.2;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1.1;
}

.text-9xl {
    font-size: 8rem;
}

.text-white {
    color: white;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.text-gray-300 {
    color: var(--gray-300);
}

.text-gray-400 {
    color: var(--gray-400);
}

.text-gray-500 {
    color: var(--gray-500);
}

.text-gray-600 {
    color: var(--gray-600);
}

.text-gray-800 {
    color: var(--gray-800);
}

.text-blue-100 {
    color: var(--blue-100);
}

.text-blue-200 {
    color: var(--blue-200);
}

.text-blue-900 {
    color: var(--blue-900);
}

.text-purple-800 {
    color: #5b21b6;
}

.text-blue-600 {
    color: #2563eb;
}

.text-yellow-400 {
    color: var(--yellow-400);
}

.text-green-300 {
    color: var(--green-300);
}

.text-green-400 {
    color: var(--green-400);
}

.text-green-500 {
    color: var(--green-500);
}

.text-orange-300 {
    color: var(--orange-300);
}

.text-blue-300 {
    color: var(--blue-300);
}

.text-orange-500 {
    color: var(--secondary);
}

.bg-white {
    background-color: var(--white);
}

.bg-gray-100 {
    background-color: var(--gray-100);
}

.bg-blue-100 {
    background-color: var(--blue-100);
}

.bg-orange-100 {
    background-color: var(--orange-100);
}

.bg-green-100 {
    background-color: var(--green-100);
}

.bg-green-500 {
    background-color: var(--green-500);
}

.bg-yellow-500 {
    background-color: var(--yellow-500);
}

.bg-red-600 {
    background-color: var(--red-600);
}

.bg-blue-500 {
    background-color: var(--blue-500);
}

.bg-purple-900 {
    background-color: #581c87;
}

.bg-orange-500 {
    background-color: #f97316;
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-home {
    background: var(--primary);
}

.bg-smarters {
    background: #6b21a8;
}

.bg-xciptv {
    background: #2563eb;
}

.bg-xcloud {
    background: var(--gray-800);
}

.bg-purple {
    background: #4f46e5;
}

.opacity-5 {
    opacity: 0.05;
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-20 {
    opacity: 0.2;
}

.opacity-95 {
    opacity: 0.95;
}

.border {
    border-width: 1px;
    border-style: solid;
}

.border-gray-200 {
    border-color: var(--gray-200);
}

.border-gray-300 {
    border-color: var(--gray-300);
}

.border-gray-700 {
    border-color: var(--gray-700);
}

.border-white {
    border-color: white;
}

.border-opacity-10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.border-opacity-50 {
    border-color: rgba(255, 255, 255, 0.5);
}

.border-b {
    border-bottom-width: 1px;
}

.transform {
    transform: var(--transform);
}

.scale-105:hover {
    transform: scale(1.05);
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

.rotate-12 {
    transform: rotate(12deg);
}

.-skew-x-12 {
    transform: skewX(-12deg);
}

.skew-x-12 {
    transform: skewX(12deg);
}

.translate-x-1\/2 {
    transform: translateX(50%);
}

.-translate-x-1\/2 {
    transform: translateX(-50%);
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .5;
    }
}

/* =========================================
   3. HEADER & MENU
   ========================================= */
.main-header {
    background: linear-gradient(to right, #1e3a8a, #111827, #000000);
    color: white;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
}

.logo {
    height: 5rem;
    object-fit: contain;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

@media(min-width: 1024px) {
    .logo {
        height: 8rem;
    }
}

.desktop-nav {
    display: none;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
}

@media(min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    font-size: 0.875rem;
    white-space: nowrap;
    transition: background-color 0.3s;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.cta-button {
    background: linear-gradient(to right, var(--secondary), #dc2626);
    color: white;
    font-weight: 800;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    animation: pulse-orange 2s infinite;
    transition: transform 0.3s;
}

.cta-button:hover {
    background: linear-gradient(to right, #ea580c, #b91c1c);
    transform: scale(1.1);
}

.menu-toggle {
    display: block;
    color: white;
    font-size: 1.875rem;
    padding: 0.5rem;
}

@media(min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

#mobile-menu {
    background-color: var(--gray-900);
    border-top: 1px solid var(--gray-800);
}

.mobile-nav-item {
    display: block;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(31, 41, 55, 0.5);
    font-size: 1.125rem;
    color: white;
}

.mobile-nav-item:hover {
    background-color: var(--gray-800);
}

/* =========================================
   4. MARKETING SLIDER (AJUSTADO E CORRIGIDO)
   ========================================= */
.marketing-section {
    background-color: var(--gray-900);
    color: white;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-800);
    user-select: none;
}

/* Altura ajustada para o texto não ficar colado */
.carousel-container {
    position: relative;
    width: 100%;
    height: 10rem;
}

/* Mobile com altura maior */
@media(min-width: 768px) {
    .carousel-container {
        height: 6rem;
    }
}

/* Desktop mais compacto */

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Gradients */
.bg-grad-blue {
    background: linear-gradient(to right, var(--primary), #312e81);
}

.bg-grad-green {
    background: linear-gradient(to right, #065f46, #134e4a);
}

.bg-grad-red {
    background: linear-gradient(to right, #9a3412, #7f1d1d);
}

.bg-grad-gray {
    background: linear-gradient(to right, var(--gray-800), var(--gray-900));
}

.slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0 3rem 2rem;
    /* Padding lateral seguro + espaço inferior para os dots */
    text-align: center;
    width: 100%;
    height: 100%;
    gap: 0.25rem;
    /* Espaço entre linhas no mobile */
}

@media(min-width: 768px) {
    .slide-content {
        flex-direction: row;
        gap: 0.75rem;
        padding: 0.5rem 5rem 1.5rem;
    }
}

/* Tipografia Fiel ao Original */
.slide-badge {
    font-size: 10px;
    /* text-[10px] */
    font-weight: 700;
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

@media(min-width: 768px) {
    .slide-badge {
        font-size: 0.75rem;
        /* text-xs */
        margin-bottom: 0;
    }
}

.slide-text {
    font-weight: 700;
    font-size: 0.75rem;
    /* text-xs mobile */
    line-height: 1.25;
}

@media(min-width: 768px) {
    .slide-text {
        font-size: 0.875rem;
        /* text-sm tablet */
    }
}

@media(min-width: 1024px) {
    .slide-text {
        font-size: 1.125rem;
        /* text-lg desktop */
    }
}

.carousel-dots {
    position: absolute;
    bottom: 0.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
}

.dot.active {
    background-color: var(--secondary);
    width: 1.5rem;
    border-radius: 9999px;
}

/* Setas */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.4);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 30;
    transition: all 0.3s;
    cursor: pointer;
}

.carousel-btn:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-prev {
    left: 0.5rem;
}

.btn-next {
    right: 0.5rem;
}

@media(min-width: 768px) {
    .btn-prev {
        left: 1rem;
    }

    .btn-next {
        right: 1rem;
    }
}

/* =========================================
   5. HOME (HERO)
   ========================================= */
.hero-section {
    position: relative;
    padding: 3rem 0;
    text-align: center;
    color: white;
    overflow: hidden;
}

@media(min-width: 768px) {
    .hero-section {
        padding: 5rem 0;
    }
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--gray-900), var(--primary));
    opacity: 0.9;
    mix-blend-mode: multiply;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    background-color: var(--secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media(min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.gradient-text {
    background: linear-gradient(to right, #f97316, #eab308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--gray-200);
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

@media(min-width: 768px) {
    .hero-text {
        font-size: 1.5rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media(min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-whatsapp {
    background-color: var(--green-500);
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    justify-content: center;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background-color: var(--green-600);
    transform: scale(1.05);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@media(min-width: 768px) {

    .btn-whatsapp,
    .btn-outline {
        width: auto;
    }
}

/* =========================================
   6. CATEGORIAS
   ========================================= */
.categories-section {
    padding: 4rem 0;
    background-color: white;
    margin-top: -2.5rem;
    position: relative;
    z-index: 20;
    border-top-left-radius: 2.5rem;
    border-top-right-radius: 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media(min-width: 1280px) {
    .categories-section .container {
        max-width: 1400px;
    }
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media(min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.cat-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    background-color: var(--primary);
    border: 2px solid transparent;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
}

.cat-card:hover {
    border-color: var(--secondary);
    transform: translateY(-0.5rem);
}

.cat-icon {
    margin-bottom: 1rem;
    color: var(--secondary);
    font-size: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 1rem;
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.cat-card:hover .cat-icon {
    transform: scale(1.1);
}

.cat-title {
    font-weight: 700;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 0.75rem;
}

.cat-desc {
    color: var(--blue-100);
    line-height: 1.6;
    font-size: 1.05rem;
}

/* =========================================
   7. COMPATIBILIDADE
   ========================================= */
.compat-section {
    background-color: var(--gray-100);
    padding: var(--spacing-section, 4rem) 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}



/* =========================================
   8. BENEFÍCIOS & COMO FUNCIONA
   ========================================= */
.benefits-section {
    padding: 5rem 0;
    background-color: white;
}

@media(min-width: 1280px) {
    .benefits-section .container {
        max-width: 1350px;
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
}

@media(min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-card {
    background-color: var(--gray-200);
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--gray-300);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.benefit-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-0.5rem);
}

.benefit-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.875rem;
}

.bg-icon-blue {
    background-color: var(--blue-100);
    color: var(--primary);
}

.bg-icon-orange {
    background-color: var(--orange-100);
    color: var(--secondary);
}

.bg-icon-green {
    background-color: var(--green-100);
    color: var(--green-600);
}

.benefit-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-800);
}

.benefit-text {
    color: var(--gray-700);
    text-align: justify;
    font-size: 1.05rem;
    line-height: 1.6;
}

.how-section {
    padding: 4rem 0;
    background-color: var(--primary);
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    position: relative;
}

@media(min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.steps-line {
    display: none;
    position: absolute;
    top: 2rem;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%);
    z-index: 0;
}

@media(min-width: 768px) {
    .steps-line {
        display: block;
    }
}

.step-circle {
    width: 4rem;
    height: 4rem;
    background: var(--secondary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 10;
    border: 4px solid var(--primary);
}

/* =========================================
   9. PREÇOS
   ========================================= */
.pricing-section {
    padding: 5rem 0;
    background-color: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media(min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.price-card {
    border-radius: 1.5rem;
    border: 4px solid var(--yellow-500);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: scale(1.03);
}

.card-light {
    background: white;
    color: var(--gray-800);
}

.card-dark {
    background: var(--primary);
    color: white;
}

.price-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--yellow-500);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-bottom-left-radius: 0.75rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}


.price-duration {
    display: inline-block;
    background: var(--blue-100);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-dark .price-duration {
    background: rgba(255,255,255,0.15);
    color: var(--yellow-400);
}

.price-save {
    display: inline-block;
    background: var(--green-500);
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    margin-top: 0.5rem;
}

.price-meta {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-500);
}

.card-dark .price-meta {
    color: var(--blue-200);
}

/* Ajuste de espaçamento proporcional */
.price-header {
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.price-features {
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1;
    font-size: 1rem;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    white-space: nowrap;
}

.price-features i {
    color: var(--yellow-500);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.card-light .price-features {
    color: var(--gray-600);
}

.card-dark .price-features {
    color: var(--blue-100);
}

.btn-price {
    display: block;
    width: 100%;
    background: var(--yellow-500);
    color: var(--primary);
    font-weight: 800;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    font-size: 1.125rem;
    transition: 0.3s;
    margin-bottom: 0.5rem;
}

.btn-price:hover {
    background: var(--yellow-400);
    transform: translateY(-0.25rem);
}

/* =========================================
   10. FAQ
   ========================================= */
.faq-section {
    padding: 4rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

details {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
}

summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.125rem;
    padding: 1.25rem;
    list-style: none;
    cursor: pointer;
    color: var(--gray-800);
    outline: none;
}

summary::-webkit-details-marker {
    display: none;
}

details[open] summary .fa-chevron-down {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 1.25rem 1.25rem 1.25rem;
    color: var(--gray-600);
    line-height: 1.6;
    text-align: justify;
    hyphens: auto;
}

/* =========================================
   11. DOWNLOADS
   ========================================= */
.downloads-section {
    padding: 4rem 0;
    background: white;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid var(--gray-200);
    color: var(--gray-500);
    font-weight: 700;
    transition: 0.3s;
    background: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.downloader-card {
    background-color: var(--gray-900);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--gray-700);
    color: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 4rem;
}

.downloader-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--gray-700);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.icon-orange-box {
    background: var(--secondary);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.icon-orange-box i {
    font-size: 1.875rem;
    color: white;
}

.tutorial-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media(min-width: 768px) {
    .tutorial-steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    background: var(--gray-800);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--gray-700);
    transition: 0.3s;
}

.step-card:hover {
    border-color: var(--secondary);
}

.step-title {
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.25rem;
    display: block;
    margin-bottom: 0.75rem;
}

.step-text {
    color: var(--gray-300);
    font-size: 0.875rem;
    line-height: 1.6;
}

.apps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media(min-width: 640px) {
    .apps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .apps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.app-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.app-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.app-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.app-code-box {
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.app-btn {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 700;
    color: white;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.app-btn:hover {
    opacity: 0.9;
}

/* =========================================
   12. TUTORIAIS & PLAYER
   ========================================= */
.tutorials-section {
    padding: 4rem 0;
    background: var(--gray-100);
}

.tutorial-container {
    max-width: 56rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tutorial-row {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    transition: 0.3s;
}

@media(min-width: 768px) {
    .tutorial-row {
        flex-direction: row;
    }
}

.tutorial-row:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.player-section {
    background: var(--gray-900);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

/* =========================================
   13. CONTATO
   ========================================= */
.contact-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.contact-card-container {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--gray-100);
    max-width: 64rem;
    margin: 0 auto;
}

@media(min-width: 768px) {
    .contact-card-container {
        flex-direction: row;
    }
}

.contact-info {
    background: var(--primary);
    color: white;
    padding: 2.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media(min-width: 768px) {
    .contact-info {
        width: 40%;
    }
}

.contact-form {
    padding: 2.5rem;
    background: white;
    width: 100%;
}

@media(min-width: 768px) {
    .contact-form {
        width: 60%;
    }
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 1.5rem;
}

.input-field {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    outline: none;
    transition: 0.3s;
    margin-bottom: 1rem;
}

.input-field:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

.btn-submit {
    width: 100%;
    background: var(--secondary);
    color: white;
    font-weight: 700;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.btn-submit:hover {
    background: var(--orange-600);
    transform: scale(1.02);
}

/* =========================================
   14. FOOTER
   ========================================= */
.main-footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 3rem 0;
    border-top: 1px solid var(--gray-800);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media(min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.footer-link {
    display: block;
    margin-bottom: 0.5rem;
    transition: 0.3s;
    font-size: 0.875rem;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

.payment-icons {
    display: flex;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: var(--gray-500);
}

/* =========================================
   15. EXTRAS
   ========================================= */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

.pulse-animation {
    animation: pulse-green 2s infinite;
}

.cta-pulse {
    animation: pulse-orange 2s infinite;
}

section.page-section {
    display: none;
}

section.page-section.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.whatsapp-label {
    background: white;
    color: var(--gray-800);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    opacity: 0;
    transition: 0.3s;
    display: none;
}

@media(min-width: 768px) {
    .whatsapp-float:hover .whatsapp-label {
        opacity: 1;
    }

    .whatsapp-label {
        display: block;
    }
}

.whatsapp-circle {
    background: var(--green-500);
    color: white;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.whatsapp-float:hover .whatsapp-circle {
    background: var(--green-600);
    transform: scale(1.1);
}

.legal-text {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

.legal-text h3 {
    color: var(--gray-900);
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text p {
    margin-bottom: 1rem;
}

.legal-text ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
}



/* 2. Configuração Base das Classes */
.fa,
.fas,
.far,
.fab {
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

/* Configuração específica para cada família */
.fas {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.far {
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
}

.fab {
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}

/* 3. Mapeamento dos Ícones usados no seu site */
/* Adicionei aqui todos que encontrei no seu HTML */

/* Marcas (fab) */
.fa-whatsapp:before {
    content: "\f232";
}

.fa-android:before {
    content: "\f17b";
}

.fa-apple:before {
    content: "\f179";
}

.fa-cc-visa:before {
    content: "\f1f0";
}

.fa-cc-mastercard:before {
    content: "\f1f1";
}

/* Sólidos (fas) */
.fa-tv:before {
    content: "\f26c";
}

.fa-bolt:before {
    content: "\f0e7";
}

.fa-bars:before {
    content: "\f0c9";
}

.fa-gift:before {
    content: "\f06b";
}

.fa-money-bill-wave:before {
    content: "\f53a";
}

.fa-tags:before {
    content: "\f02c";
}

.fa-briefcase:before {
    content: "\f0b1";
}

.fa-download:before {
    content: "\f019";
}

.fa-check-circle:before {
    content: "\f058";
}

.fa-futbol:before {
    content: "\f1e3";
}

.fa-film:before {
    content: "\f008";
}

.fa-child:before {
    content: "\f1ae";
}

.fa-theater-masks:before {
    content: "\f630";
}

.fa-newspaper:before {
    content: "\f1ea";
}

.fa-wifi:before {
    content: "\f1eb";
}

.fa-video:before {
    content: "\f03d";
}

.fa-headset:before {
    content: "\f590";
}

.fa-server:before {
    content: "\f233";
}

.fa-chevron-down:before {
    content: "\f078";
}

.fa-layer-group:before {
    content: "\f5fd";
}

.fa-fire:before {
    content: "\f06d";
}

.fa-play:before {
    content: "\f04b";
}

.fa-cloud:before {
    content: "\f0c2";
}

.fa-globe:before {
    content: "\f0ac";
}

.fa-broom:before {
    content: "\f51a";
}

.fa-plug:before {
    content: "\f1e6";
}

.fa-rocket:before {
    content: "\f135";
}

.fa-barcode:before {
    content: "\f02a";
}

.fa-qrcode:before {
    content: "\f029";
}

/* Regulares (far) */
.fa-envelope:before {
    content: "\f0e0";
}

/* Espaçamento estrutural entre Header e Footer */
.site-main {
    padding-top: 2.5rem;
    /* espaço abaixo do header */
    padding-bottom: 3rem;
    /* espaço acima do footer */
}

.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

/* Correção específica Web Player (remove faixa branca) */
.site-main-player {
    padding-top: 0;
    background: var(--gray-900);
}

.player-section {
    padding-top: 4rem;
}

/* Web Player: remover espaço vazio antes do footer */
.site-main-player {
    padding-bottom: 0;
}

.contact-section {
    padding: 4rem 0;
}