/**
 * HTML Tools Marketplace - Estilos
 * Sistema completo de marketplace responsivo
 * 
 * @package HTMLToolsMarketplace
 */

/* ========================================
   VARIÁVEIS E RESET
======================================== */

:root {
    /* Paleta Clean e Profissional */
    --primary-color: #2563eb;        /* Azul mais suave */
    --primary-dark: #1e40af;         /* Azul escuro */
    --primary-light: #60a5fa;        /* Azul claro suave */
    --secondary-color: #10b981;      /* Verde suave */
    --accent-color: #f59e0b;         /* Laranja - só para CTAs importantes */
    --accent-light: #fbbf24;         /* Laranja claro */
    --warning-color: #f59e0b;        /* Amarelo */
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
    --font-family: 'Lexend Deca', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset e Fonte Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: #333;
    background: #f5f7fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
    font-weight: 700;
}

button, input, select, textarea {
    font-family: var(--font-family);
}

/* ========================================
   HEADER
======================================== */

.site-header {
    background: var(--primary-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.site-branding {
    flex-shrink: 0;
}

.brand-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-logo-wrapper:hover .site-title {
    opacity: 0.9;
}

.brand-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-icon i {
    font-size: 24px;
    color: white;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    color: white;
    transition: opacity 0.3s ease;
}

/* Menu de Navegação */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    color: white;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 8px;
    font-size: 0.9375rem;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.nav-link i {
    font-size: 0.875rem;
}

/* Destaque para Link de Afiliados - apenas o ícone em amarelo */
.nav-link-affiliate i {
    color: #fbbf24;
    font-size: 0.875rem;
}

/* Menu Mobile */
.mobile-navigation {
    display: none;
    position: fixed;
    top: 80px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 80px);
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.75rem;
    z-index: 999;
    transition: right 0.3s ease;
}

.mobile-navigation.active {
    right: 0;
}

.mobile-nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.875rem 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid var(--border-color);
}

.mobile-nav-link:hover {
    background: var(--bg-color);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.mobile-nav-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.mobile-nav-link-affiliate {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    font-weight: 600;
}

.mobile-nav-link-affiliate:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
    color: white;
}

/* Overlay do Menu Mobile */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
}

/* Botão do Menu Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ========================================
   BREADCRUMBS
======================================== */

.breadcrumbs {
    padding: 1rem 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--primary-color);
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--primary-dark);
}

.breadcrumbs .separator {
    margin: 0 0.5rem;
    color: var(--border-color);
}

/* ========================================
   HOME PAGE - DESIGN LIMPO
======================================== */

.marketplace-hero-clean {
    background: white;
    padding: 4rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #eff6ff;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid #dbeafe;
}

.hero-badge i {
    font-size: 0.875rem;
}

.hero-title-clean {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
}

.hero-description-clean {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0 auto 2.5rem;
    max-width: 600px;
}

.hero-search-container {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: center;
}

.hero-search-box {
    position: relative;
    flex: 1;
    max-width: none;
}

.hero-search-box i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
    z-index: 1;
}

.hero-search-box input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.hero-search-box input:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.hero-filter-box {
    position: relative;
    flex-shrink: 0;
}

.hero-filter-box i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
    pointer-events: none;
    z-index: 1;
}

.hero-filter-box select {
    padding: 0.875rem 2.5rem 0.875rem 3rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    min-width: 220px;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1.5L6 6.5L11 1.5" stroke="%239ca3af" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
}

.hero-filter-box select:focus {
    outline: none;
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

/* Área de Resultados */
.marketplace-results-container {
    background: #fafafa;
    padding: 2rem 0 4rem;
    min-height: 60vh;
}

.tools-counter {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* ========================================
   SISTEMA DE CARROSSEL
======================================== */

.carousel-section {
    margin-bottom: 4rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-section.loaded {
    opacity: 1;
}

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.carousel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.carousel-title i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.carousel-navigation {
    display: flex;
    gap: 0.5rem;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.carousel-btn:hover:not(.disabled) {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.carousel-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease-out;
    gap: 1.5rem;
    width: 100%;
}

.carousel-track.dragging {
    transition: none;
    cursor: grabbing;
}

.carousel-track > * {
    flex-shrink: 0;
    box-sizing: border-box;
}

/* Ajustes para cards dentro do carrossel */
.carousel-track .ferramenta-card-clean {
    height: 100%;
    margin: 0;
}

/* Loading do Carrossel */
.carousel-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: var(--bg-color);
    border-radius: var(--radius);
}

.carousel-loading i {
    font-size: 3rem;
    color: var(--primary-color);
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.ferramentas-grid-clean {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 1200px) {
    .ferramentas-grid-clean {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .ferramentas-grid-clean {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .ferramentas-grid-clean {
        grid-template-columns: 1fr;
    }
}

/* Sem Resultados - Limpo */
.no-results-clean {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
}

.no-results-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-results-icon i {
    font-size: 2rem;
    color: #9ca3af;
}

.no-results-clean h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem;
}

.no-results-clean p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

/* Header Azul Profissional */
.site-header {
    background: var(--primary-color);
    box-shadow: none;
}

.site-title a {
    color: white;
}

.site-description {
    color: rgba(255, 255, 255, 0.8);
}

.main-navigation a {
    color: white;
}

.main-navigation a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.btn-marketplace {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-marketplace:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ========================================
   HOME PAGE HERO (antigas - manter para compatibilidade)
======================================== */

.marketplace-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.marketplace-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem;
}

.marketplace-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   BUSCA E FILTROS
======================================== */

.marketplace-search-bar {
    background: var(--white);
    padding: 1.5rem 0;
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
    position: sticky;
    top: 70px;
    z-index: 999;
}

.search-filter-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-box,
.filter-box {
    position: relative;
    flex: 1;
}

.search-box {
    max-width: 600px;
}

.filter-box {
    max-width: 300px;
}

.search-box i,
.filter-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.search-box input,
.filter-box select {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.search-box input:focus,
.filter-box select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ========================================
   SEÇÕES DA HOME
======================================== */

.home-content {
    padding: 3rem 0;
}

.featured-tools-section {
    margin-bottom: 4rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.view-all-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.view-all-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* Categorias Grid */
.categories-section {
    margin: 5rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-icon i {
    font-size: 2rem;
    color: var(--white);
}

.category-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.5rem;
}

.category-count {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Call to Action */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: var(--radius);
    padding: 4rem 2rem;
    text-align: center;
    margin: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.btn-cta {
    background: var(--white);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-sm);
    font-size: 1.125rem;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-xl);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ========================================
   SEÇÕES
======================================== */

.marketplace-content {
    padding: 2rem 0;
}

.section-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.tools-count {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
    margin-left: auto;
}

.featured-section {
    margin-bottom: 4rem;
}

/* ========================================
   GRID DE FERRAMENTAS
======================================== */

.ferramentas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

/* ========================================
   CARDS DE FERRAMENTA
======================================== */

.ferramenta-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
    max-width: 100%;
    border: 1px solid #f0f0f0;
}

.ferramenta-card.is-featured {
    border: 2px solid var(--accent-color);
}

.card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--bg-color);
    width: 100%;
    height: auto;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.ferramenta-card:hover .card-image img {
    transform: scale(1.05);
}

.card-category-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    color: #333;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card-content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card-header-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-title a {
    color: var(--text-color);
    transition: var(--transition);
}

.card-title a:hover {
    color: var(--primary-color);
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #333;
    flex-shrink: 0;
}

.card-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

.card-description {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
    padding: 0.5rem 0;
}

.card-meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-light);
    transition: var(--transition);
}

.card-meta-item i {
    font-size: 0.875rem;
}

.card-demo-link:hover {
    color: var(--primary-color);
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.card-tag {
    background: #f3f4f6;
    color: #6b7280;
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.card-tag:hover {
    background: #2563eb;
    color: white;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    margin-top: 0.5rem;
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.btn-details {
    background: #000;
    color: var(--white);
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-details:hover {
    background: #1f2937;
    transform: scale(1.02);
}

/* ========================================
   PAGINAÇÃO
======================================== */

.marketplace-pagination,
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
}

.pagination a,
.pagination span {
    padding: 0.625rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    min-width: 44px;
    text-align: center;
}

.pagination a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.pagination .current {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ========================================
   LOADING
======================================== */

.marketplace-loading {
    text-align: center;
    padding: 3rem 0;
    color: var(--text-light);
}

.marketplace-loading i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* ========================================
   SEM RESULTADOS
======================================== */

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.no-results i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.no-results h2 {
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ========================================
   PÁGINA SINGLE
======================================== */

.single-ferramenta-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    margin: 2rem 0;
}

.ferramenta-main-content {
    min-width: 0;
}

/* Galeria */
.ferramenta-gallery {
    margin-bottom: 2rem;
}

.gallery-main {
    background: var(--bg-color);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1rem;
}

.gallery-main img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
}

.gallery-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--primary-color);
}

/* Header da Ferramenta */
.ferramenta-header {
    margin-bottom: 2rem;
}

.ferramenta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.ferramenta-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.category-badge {
    background: var(--bg-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.category-badge:hover {
    background: var(--primary-color);
    color: var(--white);
}

.ferramenta-short-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Seção de Estatísticas */
.ferramenta-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    background: var(--bg-color);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 1rem;
    color: white;
}

.stat-icon.star {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.stat-icon.success {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

/* Conteúdo */
.ferramenta-description,
.ferramenta-features,
.ferramenta-technical {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.ferramenta-description h2,
.ferramenta-features h2,
.ferramenta-technical h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
}

.features-list i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Sidebar */
.ferramenta-sidebar {
    position: relative;
}

.sidebar-sticky {
    position: sticky;
    top: 150px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.purchase-card,
.info-card,
.video-card,
.countdown-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    text-align: center;
    margin-bottom: 0;
}

.purchase-card {
    border: 2px solid var(--primary-color);
}

/* Remover padding e borda quando usar o novo componente de preço */
.purchase-card:has(.price-section-modern) {
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
}

.countdown-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: #ea580c;
    text-transform: uppercase;
}

.countdown-header i {
    font-size: 1rem;
    color: #ea580c;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f9fafb;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    min-width: 60px;
    border: 1px solid #e5e7eb;
}

.countdown-number {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #1f2937;
}

.countdown-label {
    display: none;
}

.countdown-separator {
    font-size: 1.5rem;
    font-weight: 400;
    color: #d1d5db;
    margin: 0 -0.25rem;
}

.countdown-message {
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #6b7280;
}

.countdown-message i {
    color: #f59e0b;
    font-size: 0.875rem;
}
}

.countdown-expired {
    text-align: center;
    padding: 1rem;
    color: var(--text-color);
}

.countdown-expired i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.countdown-expired p {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.video-card {
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
}

.video-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-title i {
    color: var(--accent-color);
    font-size: 1.125rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Thumbnail do Vídeo com Overlay */
.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 10;
    background: #000;
}

.video-thumbnail-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 0.9;
}

.video-thumbnail-overlay:hover .video-play-button {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-iframe-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.price-section {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 1.5rem;
}

/* Estilos de Oferta Promocional */
.price-offer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-promo {
    color: var(--text-color) !important;
    animation: pulse-price 2s ease-in-out infinite;
}

@keyframes pulse-price {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes bounce-discount {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.btn-buy {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
    margin-bottom: 1rem;
    text-decoration: none;
}

/* Botão de Demo */
.btn-demo {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1rem;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    margin-bottom: 1rem;
    text-decoration: none;
    border: 2px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn-demo:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
    color: #f1f5f9;
}

.btn-demo i {
    margin-right: 0.5rem;
    font-size: 1.125rem;
}

.payment-info {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-info i {
    color: var(--secondary-color);
}

/* Seção: O Que Você Recebe */
.included-items-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #bae6fd;
    border-radius: var(--radius);
    padding: 1.75rem;
    margin-bottom: 0;
}

.included-items-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.included-items-title i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.included-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    color: var(--text-color);
}

.included-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.included-item:first-child {
    padding-top: 0;
}

.included-item i {
    color: var(--secondary-color);
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

.included-item span {
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.4;
}

.info-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--text-color);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-color);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list i {
    color: var(--primary-color);
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

/* Ferramentas Relacionadas */
.related-tools-section {
    background: var(--bg-color);
    padding: 4rem 0;
    margin-top: 4rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ========================================
   FOOTER
======================================== */

.site-footer {
    background: #1f2937;
    color: var(--white);
    margin-top: 4rem;
}

/* CTA de Afiliados no Topo do Footer */
.footer-affiliate-cta {
    background: #f8f9fa;
    padding: 2.5rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.affiliate-cta-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.affiliate-cta-icon {
    width: 70px;
    height: 70px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.affiliate-cta-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.affiliate-cta-text {
    max-width: 600px;
}

.affiliate-cta-text h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: #1f2937;
    line-height: 1.3;
}

.affiliate-cta-text p {
    font-size: 0.9375rem;
    margin: 0;
    color: #6b7280;
    line-height: 1.5;
}

/* Conteúdo Principal do Footer */
.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 3rem 0 2rem;
}

.footer-column h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
    color: white;
}

.footer-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-stat strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.footer-stat span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links li {
    margin-bottom: 0.625rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

/* Footer Payment */
.footer-payment {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
}

.payment-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    flex-wrap: wrap;
}

.payment-badges i {
    font-size: 1.625rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}

.payment-badges i:hover {
    color: rgba(255, 255, 255, 0.8);
}

.payment-powered {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.payment-powered strong {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-copyright strong {
    color: white;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.footer-social i {
    font-size: 1rem;
}

/* Responsivo do Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .affiliate-cta-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .affiliate-cta-icon {
        margin: 0 auto;
    }
    
    .btn-affiliate {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-stats {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .affiliate-cta-content {
        padding: 0 1rem;
    }
    
    .affiliate-cta-text h3 {
        font-size: 1.25rem;
    }
    
    .btn-affiliate {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-affiliate-cta {
        padding: 2rem 0;
    }
    
    .affiliate-cta-icon {
        width: 60px;
        height: 60px;
    }
    
    .affiliate-cta-icon i {
        font-size: 2rem;
    }
    
    .affiliate-cta-text h3 {
        font-size: 1.125rem;
    }
    
    .affiliate-cta-text p {
        font-size: 0.875rem;
    }
    
    .footer-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .payment-badges {
        justify-content: center;
    }
}

/* ========================================
   ARCHIVE HEADER
======================================== */

.archive-header {
    background: var(--bg-color);
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.archive-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 1rem 0;
}

.archive-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* ========================================
   RESPONSIVO
======================================== */

/* ========================================
   ANIMAÇÕES E EFEITOS
======================================== */

/* Fade In - Aparece suavemente */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.fade-in.visible {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Slide In Right - Sidebar */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    opacity: 0;
}

.slide-in-right.visible {
    animation: slideInRight 0.6s ease-out forwards;
}

/* Pulse Lento - Timer */
@keyframes pulseSlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 8px 20px rgba(234, 88, 12, 0.4);
    }
}

/* Pulse desabilitado - timer mais discreto */
.pulse-slow {
    /* animation: pulseSlow 3s ease-in-out infinite; */
}

/* Hover suave nos cards */
.video-card,
.purchase-card,
.countdown-card,
.info-card {
    transition: all 0.3s ease;
}

.video-card:hover,
.purchase-card:hover,
.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Hover no botão de compra */
.btn-buy {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-buy:hover::before {
    width: 300px;
    height: 300px;
}

.btn-buy:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.4);
    color: #f1f5f9;
}

/* Animação dos thumbnails da galeria */
.gallery-thumb {
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.gallery-thumb.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2);
}

/* Transição suave no hover dos cards de ferramenta */
.ferramenta-card {
    transition: all 0.3s ease;
}

.ferramenta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* ========================================
   STICKY PURCHASE BAR
======================================== */

.sticky-purchase-bar {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--primary-color);
}

.sticky-purchase-bar.visible {
    bottom: 0;
    animation: slideUpBar 0.4s ease-out;
}

@keyframes slideUpBar {
    from {
        bottom: -100px;
        opacity: 0;
    }
    to {
        bottom: 0;
        opacity: 1;
    }
}

.sticky-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.sticky-bar-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.sticky-bar-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sticky-bar-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.sticky-bar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.3;
}

.sticky-bar-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sticky-bar-old-price {
    font-size: 0.875rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.sticky-bar-current-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.sticky-bar-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.sticky-bar-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4);
    color: #f1f5f9;
}

.sticky-bar-button i {
    font-size: 1.125rem;
}

/* Responsivo da Sticky Bar */
@media (max-width: 768px) {
    .sticky-bar-container {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .sticky-bar-product {
        width: 100%;
    }
    
    .sticky-bar-button {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }
    
    .sticky-bar-title {
        font-size: 0.875rem;
    }
    
    .sticky-bar-current-price {
        font-size: 1.25rem;
    }
    
    .sticky-bar-image {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .sticky-bar-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* ========================================
   MELHORIAS DE UX
======================================== */

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Loading state para imagens */
img {
    transition: opacity 0.3s ease;
}

img[src=""],
img:not([src]) {
    opacity: 0;
}

/* Foco acessível em botões */
.btn-buy:focus,
.sticky-bar-button:focus,
button:focus {
    outline: 3px solid var(--primary-light);
    outline-offset: 2px;
}

/* Transições suaves em links */
a {
    transition: color 0.2s ease, transform 0.2s ease;
}

/* ========================================
   RESPONSIVO
======================================== */

@media (max-width: 1024px) {
    .single-ferramenta-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar-sticky {
        position: static;
    }
    
    .ferramentas-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title-clean {
        font-size: 2rem;
    }
    
    .hero-description-clean {
        font-size: 1rem;
    }
    
    .marketplace-hero-clean {
        padding: 3rem 0 2rem;
    }
    
    .hero-search-container {
        flex-direction: column;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .hero-search-box {
        width: 100%;
    }
    
    .hero-filter-box {
        width: 100%;
    }
    
    .hero-filter-box select {
        width: 100%;
        min-width: 100%;
    }
    
    .ferramentas-grid-clean {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .marketplace-title {
        font-size: 1.875rem;
    }
    
    .marketplace-subtitle {
        font-size: 1rem;
    }
    
    .search-filter-container {
        flex-direction: column;
    }
    
    .search-box,
    .filter-box {
        max-width: 100%;
    }
    
    .ferramentas-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 1.5rem;
    }
    
    .ferramenta-title {
        font-size: 1.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title-clean {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .marketplace-hero-clean {
        padding: 2rem 0 1.5rem;
    }
    
    .hero-search-container {
        padding: 0 1rem;
    }
    
    .marketplace-results-container {
        padding: 1.5rem 0 3rem;
    }
    
    .ferramentas-grid-clean {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .marketplace-hero {
        padding: 2rem 0;
    }
    
    .ferramentas-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tools-count {
        margin-left: 0;
    }
    
    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========================================
   SISTEMA DE AVALIAÇÕES
======================================== */

.reviews-section {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 3rem 2rem;
    margin-bottom: 3rem;
}

.reviews-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.reviews-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviews-title i {
    color: #f59e0b;
    font-size: 1.75rem;
}

.average-rating {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-color);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-sm);
}

.average-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
    font-family: 'Lexend Deca', sans-serif;
}

.average-stars {
    display: flex;
    gap: 0.25rem;
}

.average-stars i {
    font-size: 1.75rem;
    color: #f59e0b;
}

.average-stars .far {
    color: #ddd;
}

.rating-count {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.no-ratings {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0;
}

/* Comentários/Reviews */
.reviews-content {
    max-width: 900px;
}

.comment-rating {
    margin-bottom: 1rem;
    display: flex;
    gap: 0.25rem;
}

.comment-rating i {
    font-size: 1.125rem;
}

#comments {
    margin-top: 2rem;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    background: var(--bg-color);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 3px solid var(--primary-color);
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.comment-author img {
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-color);
    font-style: normal;
}

.comment-metadata {
    font-size: 0.875rem;
    color: var(--text-light);
}

.comment-metadata a {
    color: var(--text-light);
    text-decoration: none;
}

.comment-metadata a:hover {
    color: var(--primary-color);
}

.comment-content {
    margin-top: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

/* Formulário de Comentário */
#respond {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: var(--radius-sm);
    margin-top: 2rem;
}

#reply-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 1.5rem;
}

.comment-form-comment label,
.comment-form-author label,
.comment-form-email label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
}

.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: 'Lexend Deca', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.comment-form-comment textarea:focus,
.comment-form-author input:focus,
.comment-form-email input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-submit {
    margin-top: 1.5rem;
}

.form-submit input[type="submit"] {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Lexend Deca', sans-serif;
}

.form-submit input[type="submit"]:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Responsivo Reviews */
@media (max-width: 768px) {
    .reviews-summary {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .average-rating {
        width: 100%;
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 1rem;
    }
    
    .reviews-title {
        font-size: 1.5rem;
    }
    
    .average-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   PÁGINA DE AFILIADOS
======================================== */

.affiliate-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 5rem 0 4rem;
    color: white;
    text-align: center;
}

.affiliate-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.affiliate-title {
    font-size: 3rem;
    font-weight: 800;
    margin: 0 0 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.affiliate-description {
    font-size: 1.25rem;
    margin: 0 0 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.affiliate-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.btn-xl {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.affiliate-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Benefícios */
.affiliate-benefits {
    padding: 5rem 0;
    background: var(--bg-color);
}

.section-header-center {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.75rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.75rem;
}

.benefit-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Como Funciona */
.how-it-works {
    padding: 5rem 0;
    background: white;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.5rem;
}

.step-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.step-arrow {
    font-size: 2rem;
    color: var(--primary-light);
}

/* CTA Section */
.affiliate-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-box .cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 0 1rem;
}

.cta-box .cta-description {
    font-size: 1.25rem;
    margin: 0 0 2.5rem;
    opacity: 0.95;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

/* FAQ */
.faq-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* Responsivo para Afiliados */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .affiliate-title {
        font-size: 2rem;
    }
    
    .affiliate-description {
        font-size: 1rem;
    }
    
    .affiliate-hero {
        padding: 3rem 0 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps-container {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .affiliate-cta-group {
        flex-direction: column;
    }
    
    .btn-large,
    .btn-xl {
        width: 100%;
        justify-content: center;
    }
    
    .affiliate-stats {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .affiliate-title {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-box .cta-title {
        font-size: 1.75rem;
    }
}

/* ========================================
   COMPONENTE DE PREÇO MODERNO - V1
   Layout branco clean e profissional
======================================== */

.price-section-modern {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.price-label-small {
    display: inline;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 2px;
}

.price-old-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.price-label-investment {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    color: #64748b !important;
}

.price-old {
    font-size: 1.1rem;
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 500;
}

.price-section-modern > .price-old {
    display: block;
    margin-bottom: 8px;
}

.price-value {
    display: block;
    font-size: 2.75rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin: 8px 0;
}

.price-discount {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.price-economy {
    font-size: 0.9rem;
    color: #059669;
    font-weight: 600;
    padding: 8px 12px;
    background: #d1fae5;
    border-radius: 6px;
    display: inline-block;
}

/* Container para desconto e economia ficarem lado a lado */
.price-offers-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.price-payment-unique {
    margin-top: 8px;
    margin-bottom: 20px;
    color: #10b981;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-buy-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.btn-buy-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    color: white;
}

.btn-demo-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 1rem;
    background: white;
    color: #2563eb;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: 2px solid #2563eb;
    transition: all 0.2s;
    margin-bottom: 15px;
}

.btn-demo-modern:hover {
    background: #eff6ff;
    color: #2563eb;
}

.payment-info-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    margin-top: 5px;
}

/* Ícones SVG do componente */
.price-section-modern .icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.price-section-modern .icon-tag {
    fill: currentColor;
}

.price-section-modern .icon-cart {
    fill: currentColor;
}

.price-section-modern .icon-play {
    fill: currentColor;
}

.price-section-modern .icon-shield {
    fill: #10b981;
}

.price-section-modern .icon-check {
    fill: #10b981;
}

@media (max-width: 400px) {
    .price-offers-row {
        flex-wrap: wrap;
    }
    
    .price-discount,
    .price-economy {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ========================================
   POPUP FLUTUANTE DE SOCIAL PROOF
   Notificações no canto inferior esquerdo
======================================== */

.social-proof-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    transform: translateX(-400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.social-proof-popup.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: all;
}

.social-proof-popup-content {
    background: white;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 280px;
    max-width: 350px;
    position: relative;
}

.social-proof-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color 0.2s;
}

.social-proof-close:hover {
    color: #64748b;
}

.social-proof-popup-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.social-proof-popup-icon svg {
    width: 22px;
    height: 22px;
}

.social-proof-popup-text {
    flex: 1;
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.4;
    padding-right: 20px;
}

.social-proof-popup-text strong {
    color: #1f2937;
    font-weight: 700;
}

/* Animação de pulso no ícone */
@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.social-proof-popup.show .social-proof-popup-icon {
    animation: pulse-icon 2s ease-in-out infinite;
}

/* ========================================
   COMPONENTE FAQ - PERGUNTAS FREQUENTES
   Accordion expansível para dúvidas
======================================== */

.faq-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.faq-icon {
    width: 28px;
    height: 28px;
    color: #2563eb;
    flex-shrink: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #f9fafb;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-question-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.5;
    flex: 1;
}

.faq-toggle-icon {
    width: 24px;
    height: 24px;
    color: #2563eb;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.faq-answer {
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer-content {
    padding: 1.25rem 1.5rem;
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer-content p {
    margin: 0 0 1rem;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin: 0 0 1rem 1.5rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

.faq-answer-content strong {
    color: #1f2937;
    font-weight: 600;
}

.faq-answer-content a {
    color: #2563eb;
    text-decoration: underline;
}

.faq-answer-content a:hover {
    color: #1e40af;
}

/* Responsivo */
@media (max-width: 768px) {
    .faq-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .faq-title {
        font-size: 1.25rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
    }
    
    .faq-question-text {
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   LAYOUT COM TABS
======================================== */

.single-tabs-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    margin: 2rem 0;
}

/* Área Principal */
.tabs-main-area {
    min-width: 0;
}

.tabs-featured-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #f3f4f6;
}

.tabs-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.btn-demo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-demo-overlay:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translate(-50%, -50%) translateY(-2px);
}

/* Sistema de Tabs */
.tabs-navigation {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 2rem;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #6b7280;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    outline: none;
}

.tab-btn:hover {
    color: #2563eb;
    background: #f9fafb;
}

.tab-btn:focus {
    outline: none;
    box-shadow: none;
}

.tab-btn.active {
    color: #2563eb;
    border-bottom-color: #2563eb;
    font-weight: 600;
    border: none;
    border-bottom: 3px solid #2563eb;
    outline: none;
    box-shadow: none;
}

/* Conteúdo das Tabs */
.tabs-content-area {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem;
}

.tab-content .lead {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.ferramenta-description {
    color: #374151;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Tags */
.tabs-tags-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.tabs-tags-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.tabs-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tab-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tab-tag:hover {
    background: #2563eb;
    color: white;
}

/* Informações do Arquivo */
.tabs-file-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.file-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.info-value {
    font-size: 1.1rem;
    color: #1f2937;
    font-weight: 600;
}

/* Lista de Recursos */
.tabs-recursos-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.tabs-recursos-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    color: #374151;
    font-size: 0.95rem;
}

.tabs-recursos-list i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Vídeo */
.tabs-video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.tabs-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Thumbnail do vídeo */
.tabs-video-container .video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.tabs-video-container .video-thumbnail-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tabs-video-container .play-button {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
}

.tabs-video-container .play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 4px;
}

.tabs-video-container .video-thumbnail-overlay:hover .play-button {
    transform: scale(1.1);
    background: rgba(37, 99, 235, 1);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* Sidebar */
.tabs-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Card de Preço */
.tabs-price-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    margin-bottom: 0;
    text-align: center;
}

/* Linha do preço antigo */
.price-old-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.price-old-row .price-label-small {
    font-size: 0.875rem;
    color: #9ca3af;
    white-space: nowrap;
}

.price-old-row .price-old {
    font-size: 0.875rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 400;
    white-space: nowrap;
}

.price-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

/* Preço atual */
.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.1;
    margin-bottom: 1rem;
}

/* Container de ofertas (desconto + economia) */
.price-offers-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

/* Badge de desconto verde */
.price-discount {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

/* Texto de economia */
.price-economy {
    font-size: 0.9rem;
    color: #059669;
    font-weight: 600;
    padding: 8px 16px;
    background: #d1fae5;
    border-radius: 8px;
}

.price-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Botões de Ação */
.tabs-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Botão Comprar Agora - Azul sólido */
.btn-buy-now {
    background: #2563eb;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-buy-now:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

/* Botão Testar Demo - Branco com borda azul */
.btn-demo-free {
    background: white;
    color: #2563eb;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #2563eb;
}

.btn-demo-free:hover {
    background: #eff6ff;
    transform: translateY(-1px);
}

/* Texto de Segurança */
.price-security-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.price-security-text i {
    color: #10b981;
    font-size: 1rem;
}

/* Card: O que está incluído */
.tabs-included-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    margin-bottom: 0;
}

.tabs-included-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tabs-included-card h3 i {
    color: #10b981;
}

.tabs-included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tabs-included-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #1f2937;
    font-size: 0.9375rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.tabs-included-list li:last-child {
    border-bottom: none;
}

.tabs-included-list i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

/* Card de Informações */
.tabs-info-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    margin-bottom: 0;
}

.tabs-info-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 1.5rem;
}

.tabs-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tabs-info-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #1f2937;
    font-size: 0.9375rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.tabs-info-list li:last-child {
    border-bottom: none;
}

.tabs-info-list i {
    color: #2563eb;
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.tabs-info-list span {
    flex: 1;
    font-weight: 400;
}

/* Card do Autor */
.tabs-author-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.tabs-author-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 1rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 2rem;
    color: #6b7280;
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-badge {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 500;
}

/* Responsivo */
@media (max-width: 1024px) {
    .single-tabs-layout {
        grid-template-columns: 1fr;
    }
    
    .tabs-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .tabs-navigation {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        white-space: nowrap;
    }
    
    .tabs-content-area {
        padding: 1.5rem;
    }
    
    .tab-content h2 {
        font-size: 1.25rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
}

/* ========================================
   FOOTER MODERNO
   ======================================== */

.modern-footer {
    background: #1a202c;
    color: #cbd5e0;
}

/* Newsletter Section */
.footer-newsletter {
    border-bottom: 1px solid #2d3748;
    padding: 3rem 0;
}

.newsletter-content {
    max-width: 768px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #2563eb;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.newsletter-icon i {
    font-size: 2rem;
    color: white;
}

.newsletter-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.newsletter-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 448px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    background: #2d3748;
    border: 1px solid #4a5568;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9375rem;
}

.newsletter-input::placeholder {
    color: #6b7280;
}

.newsletter-input:focus {
    outline: none;
    border-color: #2563eb;
}

.newsletter-button {
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9375rem;
}

.newsletter-button:hover {
    background: #1d4ed8;
}

/* Main Footer Content */
.footer-main {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-description {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    group: hover;
}

.footer-links li a:hover {
    color: white;
}

.footer-links li a i {
    color: #6b7280;
    font-size: 1rem;
    width: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-links li a:hover i {
    color: #2563eb;
}

.affiliate-link i.fa-gift {
    color: #eab308 !important;
}

.affiliate-link:hover i.fa-gift {
    color: #fbbf24 !important;
}

.footer-links li a.affiliate-link i.fa-users {
    color: #eab308 !important;
}

.footer-links li a.affiliate-link:hover i.fa-users {
    color: #fbbf24 !important;
}

.link-with-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.affiliate-badge {
    background: #eab308;
    color: black;
    font-size: 0.625rem;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.affiliate-badge i {
    font-size: 0.625rem;
    color: black !important;
}

.earn-badge {
    background: #eab308;
    color: black;
    font-size: 0.625rem;
    padding: 0.125rem 0.375rem;
    border-radius: 4px;
    font-weight: 600;
}

/* Footer Stats */
.footer-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-number {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}

.stat-label {
    font-size: 0.75rem;
    line-height: 1.3;
    color: #9ca3af;
}

/* Footer Highlight Box */
.footer-highlight-box {
    background: #2d3748;
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 1.5rem;
}

.footer-highlight-box p {
    font-size: 0.75rem;
    color: #9ca3af;
    margin: 0;
    line-height: 1.5;
}

/* Payment Icons */
.payment-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.payment-icon {
    height: 40px;
    background: #2d3748;
    border-radius: 6px;
    border: 1px solid #4a5568;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-icon i {
    font-size: 1.5rem;
    color: #9ca3af;
}

.payment-text {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
}

.trust-badge i {
    color: #10b981;
    font-size: 1rem;
}

/* Footer Social */
.footer-social {
    border-top: 1px solid #2d3748;
    padding-top: 1rem;
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: #2d3748;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.social-icon:nth-child(1):hover {
    background: #1877f2;
    color: white;
}

.social-icon:nth-child(2):hover {
    background: #1da1f2;
    color: white;
}

.social-icon:nth-child(3):hover {
    background: #e1306c;
    color: white;
}

.social-icon:nth-child(4):hover {
    background: #ff0000;
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

.brand-name {
    color: white;
    font-weight: 600;
}

.desktop-only {
    display: none;
}

@media (min-width: 768px) {
    .desktop-only {
        display: inline;
    }
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-legal-links a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-button {
        width: 100%;
    }
    
    .footer-grid {
        gap: 3rem;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

/* ========================================
   BANNER DE AFILIADOS (FOOTER)
   ======================================== */

.footer-affiliate-banner {
    background: #1a202c;
    padding: 2rem 0;
}

.affiliate-banner-content {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.affiliate-banner-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #2563eb;
    border-radius: 12px;
    flex-shrink: 0;
}

.affiliate-banner-icon i {
    font-size: 1.75rem;
    color: white;
}

.affiliate-banner-text {
    flex: 1;
}

.affiliate-banner-text h3 {
    font-size: 1.125rem;
    color: #1f2937;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}

.affiliate-banner-text p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.affiliate-banner-text strong {
    color: #2563eb;
    font-weight: 700;
}

.affiliate-banner-button {
    flex-shrink: 0;
}

.btn-affiliate {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2563eb;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.btn-affiliate:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-affiliate i {
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .affiliate-banner-content {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .affiliate-banner-button {
        width: 100%;
    }
    
    .btn-affiliate {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .affiliate-banner-icon {
        width: 48px;
        height: 48px;
    }
    
    .affiliate-banner-icon i {
        font-size: 1.5rem;
    }
    
    .affiliate-banner-text h3 {
        font-size: 1rem;
    }
    
    .affiliate-banner-text p {
        font-size: 0.8125rem;
    }
}

/* ========================================
   CORREÇÕES FOOTER
======================================== */

/* Banner de Afiliados - Posicionamento */
.footer-affiliate-banner {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    z-index: 10;
    background: transparent;
    padding: 0;
}

/* Conteúdo do Banner */
.affiliate-banner-content {
    max-width: 1020px;
    margin: 0 auto;
    padding: 2.5rem 2.5rem;
}

/* Footer com padding-top */
.modern-footer {
    position: relative;
    padding-top: 8rem;
}

/* Footer Links */
.footer-links {
    margin: 0;
    gap: 0.5rem;
}

/* Texto do Banner */
.affiliate-banner-text p {
    font-size: 0.875rem;
}

/* ========================================
   HEADER NOVO
======================================== */

/* Header Principal */
.site-header {
    background: #2563eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.75rem 0;
}

/* Logo */
.site-branding .brand-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.site-branding .brand-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-branding .brand-icon i {
    font-size: 1.25rem;
    color: white;
}

.site-branding .site-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

.site-branding .site-description {
    font-size: 0.6875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Navegação */
.main-navigation {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.main-navigation .nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-icon-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.notification-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4444;
    color: white;
    font-size: 0.625rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #2563eb;
}

.btn-criar-venda {
    background: #fbbf24;
    color: #1f2937;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-criar-venda:hover {
    background: #f59e0b;
}

.btn-login {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.2);
}

.header-user {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.user-name {
    color: white;
    font-weight: 500;
    font-size: 0.9375rem;
}

/* Tablet e Mobile */
@media (max-width: 1024px) {
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-navigation {
        display: flex;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
    
    .user-name {
        display: none;
    }
    
    .header-content {
        gap: 1rem;
    }
    
    .header-actions {
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .site-branding {
        max-width: 180px;
    }
    
    .brand-icon {
        width: 40px;
        height: 40px;
    }
    
    .brand-icon i {
        font-size: 20px;
    }
    
    .site-title {
        font-size: 1.25rem;
    }
    
    .site-description {
        font-size: 0.6875rem;
    }
}

@media (max-width: 640px) {
    .btn-criar-venda span,
    .btn-login span {
        display: none;
    }
    
    .header-icon-btn {
        width: 36px;
        height: 36px;
    }
    
    .btn-criar-venda,
    .btn-login {
        padding: 0.5rem;
        min-width: 40px;
        justify-content: center;
    }
}
