/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Evitar scroll horizontal em qualquer tela (mobile primeiro) */
html {
    overflow-x: hidden;
    max-width: 100vw;
}

:root {
    /* Design System: Acrílico Preto com Dourado Espelhado */
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --accent-color: #2a2a2a;
    --gold-primary: #d4af37;
    --gold-secondary: #f4d03f;
    --gold-dark: #b8941e;
    --gold-light: #f7e98e;
    --success-color: #48bb78;
    --text-dark: #000000;
    --text-light: #666666;
    --text-gold: #d4af37;
    --bg-light: #0a0a0a;
    --bg-white: #1a1a1a;
    --bg-acrylic: rgba(26, 26, 26, 0.85);
    --border-color: rgba(212, 175, 55, 0.3);
    --border-gold: rgba(212, 175, 55, 0.5);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.2);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.4);
    --transition: all 0.3s ease;
    
    /* Cores de destaque para botões e CTAs */
    --cta-primary: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    --cta-primary-hover: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
    --cta-secondary: rgba(212, 175, 55, 0.2);
    --cta-secondary-hover: rgba(212, 175, 55, 0.3);
    
    /* Glassmorphism */
    --glass-bg: rgba(26, 26, 26, 0.7);
    --glass-border: rgba(212, 175, 55, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    background-attachment: fixed;
    min-height: 100vh;
    padding-bottom: 80px; /* Espaço para o botão flutuante */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Evitar quebra de layout: imagens e tabelas */
img {
    max-width: 100%;
    height: auto;
}


/* Links Globais - Remover azul padrão */
a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:visited {
    color: rgba(255, 255, 255, 0.85);
}

a:hover {
    color: #d4af37;
}

a:focus {
    outline: 2px solid rgba(212, 175, 55, 0.5);
    outline-offset: 2px;
}

/* Top Banner */
.top-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.top-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.header .container {
    min-width: 0;
    overflow-x: hidden;
}

/* Header */
.header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    box-shadow: var(--glass-shadow), var(--shadow-gold);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transform: translateY(0) scale(1);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 0;
    will-change: transform, opacity;
    max-width: 100vw;
    overflow-x: hidden;
}

.header.hidden {
    transform: translateY(-100%) scale(0.95);
    opacity: 0;
    pointer-events: none;
}

.header.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

/* Botão para mostrar header */
.header-toggle-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-100px) scale(0) rotate(-180deg);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: pulse-gold 2s infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-toggle-btn.visible {
    transform: translateY(0) scale(1) rotate(0deg);
    opacity: 1;
}

.header-toggle-btn.visible:not(:hover) {
    animation: pulse-gold 2s infinite, float 3s ease-in-out infinite;
}

.header-toggle-btn:hover {
    transform: scale(1.15) rotate(10deg) translateY(-3px) !important;
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.7), 0 0 50px rgba(212, 175, 55, 0.5);
    animation: pulse-gold 1s infinite !important;
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

.header-toggle-btn:active {
    transform: scale(0.9) rotate(-5deg);
    transition: all 0.1s ease;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.02);
    }
}

.header-toggle-btn svg {
    width: 28px;
    height: 28px;
    color: #000000;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.header-toggle-btn:hover svg {
    transform: translateY(-2px);
}

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4), 0 0 30px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 6px 30px rgba(212, 175, 55, 0.6), 0 0 50px rgba(212, 175, 55, 0.4);
    }
}

@keyframes slideDownBounce {
    0% {
        transform: translateY(-100%) scale(0.9) rotateX(-10deg);
        opacity: 0;
        filter: blur(5px);
    }
    50% {
        transform: translateY(5px) scale(1.02) rotateX(2deg);
        opacity: 0.8;
        filter: blur(2px);
    }
    70% {
        transform: translateY(-2px) scale(0.98);
        opacity: 0.95;
    }
    100% {
        transform: translateY(0) scale(1) rotateX(0deg);
        opacity: 1;
        filter: blur(0);
    }
}

@keyframes slideUpElegant {
    0% {
        transform: translateY(0) scale(1) rotateX(0deg);
        opacity: 1;
        filter: blur(0);
    }
    50% {
        transform: translateY(-50%) scale(0.95) rotateX(5deg);
        opacity: 0.5;
        filter: blur(3px);
    }
    100% {
        transform: translateY(-100%) scale(0.9) rotateX(10deg);
        opacity: 0;
        filter: blur(5px);
    }
}

.header.visible {
    animation: slideDownBounce 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.header.hidden {
    animation: slideUpElegant 0.5s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* Espaçamento para compensar o header fixo */
body {
    padding-top: 0;
}

.header-spacer {
    height: 0;
    transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-spacer.active {
    height: var(--header-height, 120px);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 2rem;
    flex-wrap: wrap;
    min-width: 0;
}

/* Ordem visual: Logo, Botões, Busca */
.header-content > .logo {
    order: 1;
    min-width: 0;
    flex-shrink: 0;
}

.header-content > .header-actions {
    order: 2;
    min-width: 0;
    flex-wrap: wrap;
}

.header-content > .search-bar {
    order: 3;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    max-width: 100%;
}

.logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--text-gold);
    margin-bottom: 0.2rem;
    margin: 0;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    font-weight: 700;
}

.tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin: 0;
}

.search-bar {
    flex: 1;
    max-width: 600px;
    min-width: 300px;
    display: flex;
    position: relative;
    margin: 0 1rem;
}

.search-bar input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-gold);
    border-radius: 12px;
    font-size: 1.1rem;
    color: #ffffff;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.search-bar input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 4px 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--cta-primary);
    border: none;
    color: #000000;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-weight: 700;
}

.search-btn:hover {
    background: var(--cta-primary-hover);
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.5);
}

.search-btn:active {
    transform: translateY(-50%) scale(1.0);
}

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

.nav-menu {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cta-primary);
}

/* Banners Section */
.banners-section {
    margin-bottom: 3rem;
    max-width: 100%;
    overflow-x: hidden;
}

.banner-carousel {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 600px;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.active {
    opacity: 1;
    z-index: 1;
}

.banner-slide:nth-child(1) {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.banner-slide:nth-child(2) {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
}

.banner-slide:nth-child(3) {
    background: linear-gradient(135deg, #000000 0%, #2a2a2a 50%, #000000 100%);
}

.banner-slide:nth-child(4) {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(26, 26, 26, 0.95) 50%, rgba(212, 175, 55, 0.1) 100%);
}

/* Slide de Revenda */
.revenda-slide {
    overflow-y: auto;
    overflow-x: hidden;
}

.revenda-slide .revenda-content {
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.revenda-banner-content {
    text-align: center;
    color: white;
    max-width: 900px;
    width: 100%;
    padding: 0.5rem;
}

.revenda-badge {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #000000;
    padding: 4px 14px;
    border-radius: 18px;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 0.5rem;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.revenda-title {
    color: #d4af37;
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

.revenda-subtitle {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.revenda-subtitle strong {
    color: #d4af37;
}

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

.revenda-feature {
    background: rgba(26, 26, 26, 0.6);
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.revenda-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.revenda-feature h3 {
    color: #d4af37;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.revenda-feature p {
    color: #ffffff;
    font-size: 0.75rem;
    line-height: 1.3;
    margin: 0;
}

.revenda-feature p strong {
    color: #f4d03f;
    font-size: 0.8rem;
}

.revenda-info-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-left: 3px solid #d4af37;
    padding: 0.75rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: left;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1);
}

.revenda-info-box p {
    color: #ffffff;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.revenda-info-box p strong {
    color: #d4af37;
}

.revenda-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.revenda-comp-item {
    background: rgba(26, 26, 26, 0.4);
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.75rem;
    line-height: 1.4;
    color: #ffffff;
}

.revenda-comp-item strong {
    color: #d4af37;
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.8rem;
}

.revenda-comp-item a {
    color: #f4d03f;
    text-decoration: underline;
    font-weight: 600;
}

.revenda-comp-item.highlight {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.revenda-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.revenda-actions .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.banner-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text {
    text-align: center;
    color: white;
    max-width: 700px;
    padding: 2rem;
}

.banner-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.banner-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-gold);
    color: var(--text-gold);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.banner-nav:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.5);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-gold);
}

.dot.active,
.dot:hover {
    background: var(--text-gold);
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.banner-notice {
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    text-align: center;
    border-bottom: 2px solid var(--border-gold);
}

.banner-notice p {
    color: var(--text-gold);
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Hero Section (mantido para compatibilidade) */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

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

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-notice {
    font-size: 0.9rem;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    display: inline-block;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Storytelling Section */
.storytelling {
    padding: 4rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: 20px;
    margin: 3rem 0;
    box-shadow: var(--shadow), var(--shadow-gold);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-timeline {
    margin-top: 3rem;
}

.story-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.story-item:last-child {
    margin-bottom: 0;
}

.story-icon {
    font-size: 3rem;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cta-primary);
    border: 2px solid var(--border-gold);
    border-radius: 50%;
    color: #000000;
    box-shadow: var(--shadow-gold);
}

.story-text {
    flex: 1;
}

.story-text h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.story-text p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.benefits-list,
.products-list {
    list-style: none;
    margin-top: 1rem;
    padding-left: 0;
}

.benefits-list li,
.products-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.benefits-list li strong {
    color: var(--text-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--cta-primary);
    color: #000000;
    font-weight: 700;
    box-shadow: var(--shadow-gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: var(--cta-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    color: #000000;
}

.btn-secondary {
    background: var(--cta-secondary);
    color: var(--text-gold);
    border: 2px solid var(--border-gold);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--cta-secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--text-gold);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Products Section */
.products {
    padding: 3rem 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-gold);
    text-align: center;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow), var(--shadow-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover), 0 0 40px rgba(212, 175, 55, 0.5);
    border-color: var(--gold-primary);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 160px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Skeleton loading */
.image-skeleton {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26, 26, 26, 0.5) 25%, rgba(42, 42, 42, 0.5) 50%, rgba(26, 26, 26, 0.5) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    z-index: 1;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Lazy loaded image */
.lazy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    opacity: 0;
    position: relative;
    z-index: 2;
}

.lazy-image.loaded {
    opacity: 1;
}

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

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

.image-error {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 26, 0.5);
}

.product-image-placeholder {
    font-size: 4rem;
    opacity: 0.5;
    color: rgba(212, 175, 55, 0.5);
}

.product-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-title-link:hover .product-title {
    color: var(--text-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.product-info {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    min-height: 40px;
    flex: 1;
}

.product-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin: 0.25rem 0;
    padding: 0.5rem;
    background: rgba(26, 26, 26, 0.3);
    border-radius: 6px;
}

.price-current {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.price-current .currency {
    font-size: 1.2rem;
    color: var(--text-gold);
}

.price-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.price-original {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.discount-badge {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #000000;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.product-btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--cta-primary);
    color: #000000;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    text-align: center;
    display: block;
    box-shadow: var(--shadow-gold);
}

.product-btn:hover {
    background: var(--cta-primary-hover);
    transform: scale(1.02);
    color: #000000;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.product-notice {
    font-size: 0.75rem;
    color: rgba(212, 175, 55, 0.8);
    text-align: center;
    margin-top: 0.5rem;
}

/* How to Buy Section */
.how-to-buy {
    padding: 4rem 0;
    background: transparent;
    margin: 3rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover), var(--shadow-gold);
    border-color: var(--gold-primary);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--cta-primary);
    color: #000000;
    border: 2px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-gold);
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.step-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.mercadolivre-notice {
    margin-top: 4rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--border-gold);
    color: white;
    border-radius: 12px;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: var(--shadow-gold);
}

.notice-icon {
    font-size: 4rem;
    flex-shrink: 0;
}

.notice-content {
    flex: 1;
}

.notice-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.notice-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
}

/* FAQ Section - Design Ultra Moderno e Profissional */
.faq-section {
    padding: 120px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 70px;
}

.faq-header .section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 12px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.faq-accordion {
    max-width: 950px;
    margin: 0 auto;
}

.faq-accordion-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-accordion-item:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.faq-accordion-item.active {
    border-color: rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, rgba(26, 26, 26, 1) 0%, rgba(30, 30, 30, 1) 100%);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.15),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
}

.faq-question {
    width: 100%;
    padding: 28px 32px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.3px;
}

.faq-question:hover {
    color: #d4af37;
}

.faq-question-text {
    flex: 1;
    padding-right: 24px;
    line-height: 1.5;
}

.faq-icon {
    font-size: 1.8rem;
    font-weight: 300;
    color: #d4af37;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 28px;
    text-align: center;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
}

.faq-accordion-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(212, 175, 55, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease;
    padding: 0 32px;
}

.faq-accordion-item.active .faq-answer {
    max-height: 600px;
    padding: 0 32px 28px 32px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.1px;
}

/* Trust Badges Section - Design Premium */
.trust-badges-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
}

.trust-badges-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
}

.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badge-item {
    text-align: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border-radius: 16px;
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trust-badge-item:hover::before {
    opacity: 1;
}

.trust-badge-item:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
}

.trust-badge-item:hover .trust-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 6px 12px rgba(212, 175, 55, 0.5));
}

.trust-badge-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.trust-badge-item:hover h4 {
    color: #d4af37;
}

.trust-badge-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-weight: 400;
}

/* Categories Section - Design Ultra Moderno */
.categories-section {
    padding: 120px 0;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.categories-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 24px auto 0;
    border-radius: 2px;
}

.section-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 0;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 320px;
}

.category-icon-wrapper {
    padding: 50px 30px 25px;
    text-align: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0.05) 50%, transparent 100%);
    border-bottom: 1.5px solid rgba(212, 175, 55, 0.15);
    position: relative;
}

.category-icon-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    transition: width 0.4s ease;
}

.category-card:hover .category-icon-wrapper::after {
    width: 100px;
}

.category-icon {
    font-size: 4rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.3));
    line-height: 1;
    position: relative;
    z-index: 1;
}

.category-card:hover .category-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(212, 175, 55, 0.5));
}

.category-content {
    padding: 30px 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
    transition: all 0.3s ease;
    letter-spacing: -0.4px;
    line-height: 1.3;
}

.category-card:hover h3 {
    color: #d4af37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.category-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 20px 0;
    flex: 1;
    font-weight: 400;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d4af37;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: auto;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.2px;
}

.category-link::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.category-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(212, 175, 55, 0.25),
        inset 0 1px 0 rgba(212, 175, 55, 0.1);
    background: linear-gradient(135deg, rgba(26, 26, 26, 1) 0%, rgba(30, 30, 30, 1) 100%);
}

.category-card:hover .category-link {
    color: #f4d03f;
    gap: 12px;
}

.category-card:hover .category-link::after {
    transform: translateX(5px);
}

/* Efeito de brilho no hover */
.category-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.category-card:hover::after {
    opacity: 1;
}

/* Animações de entrada */
.category-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }
.category-card:nth-child(5) { animation-delay: 0.5s; }

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

/* Responsive Design - Trust Badges */
@media (max-width: 1024px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Responsive Design - Categories */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-icon-wrapper {
        padding: 30px 20px 15px;
    }
    
    .category-icon {
        font-size: 3rem;
    }
    
    .category-content {
        padding: 20px 25px 25px;
    }
    
    .category-card h3 {
        font-size: 1.25rem;
    }
    
    .category-card p {
        font-size: 0.9rem;
    }
    
    /* FAQ Responsive */
    .faq-section {
        padding: 80px 0;
    }
    
    .faq-header .section-title {
        font-size: 2.2rem;
    }
    
    .faq-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 22px 24px;
        font-size: 1.05rem;
    }
    
    .faq-answer {
        padding: 0 24px;
    }
    
    .faq-accordion-item.active .faq-answer {
        padding: 0 24px 24px 24px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
    
    /* Trust Badges Responsive */
    .trust-badges-section {
        padding: 60px 0;
    }
    
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .trust-badge-item {
        padding: 35px 20px;
    }
    
    .trust-icon {
        font-size: 2.5rem;
    }
    
    /* Footer Responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}

@media (max-width: 480px) {
    .faq-header .section-title {
        font-size: 1.9rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-accordion-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    /* Category Page Responsive */
    .category-hero {
        padding: 60px 0 50px;
    }
    
    .category-title {
        font-size: 2.2rem;
    }
    
    .category-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .main-content {
        padding: 30px 25px;
    }
    
    .main-content h2 {
        font-size: 1.6rem;
    }
    
    .main-content h3 {
        font-size: 1.3rem;
    }
    
    .main-content p,
    .main-content ul li {
        font-size: 1rem;
    }
    
    .related-categories h2 {
        font-size: 2rem;
    }
    
    .related-categories h3 {
        font-size: 1.5rem;
    }
    
    .category-links {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-links .category-link {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-item {
        padding: 24px;
    }
    
    .faq-item h3 {
        font-size: 1.1rem;
    }
    
    .faq-item p {
        font-size: 0.95rem;
    }
    
    .category-icon {
        font-size: 3rem;
    }
    
    .category-card h3 {
        font-size: 1.2rem;
    }
    
    .category-card p {
        font-size: 0.9rem;
    }
    
    .trust-badges-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .trust-badge-item {
        padding: 30px 20px;
    }
    
    .trust-icon {
        font-size: 2.2rem;
    }
    
    .trust-badge-item h4 {
        font-size: 1.05rem;
    }
    
    .trust-badge-item p {
        font-size: 0.85rem;
    }
}

/* Breadcrumbs - Design Moderno */
.breadcrumbs {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    margin-top: 80px;
}

.breadcrumbs .container {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumbs a:hover {
    color: #d4af37;
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* Category Hero Section - Design Premium */
.category-hero {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.category-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.category-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.category-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    line-height: 1.2;
}

.category-title::after {
    content: '';
    display: block;
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    margin: 24px auto 0;
    border-radius: 2px;
}

.category-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Category Content Section */
.category-content {
    padding: 80px 0;
    background: #000000;
    position: relative;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.main-content {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.main-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 40px 0 20px;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4af37;
    margin: 30px 0 15px;
    letter-spacing: -0.3px;
}

.main-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    letter-spacing: 0.1px;
}

.main-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.main-content ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.main-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: 700;
    font-size: 1.2rem;
}

.main-content strong {
    color: #d4af37;
    font-weight: 600;
}

/* Related Categories Section */
.related-categories {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.related-categories h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.related-categories h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #d4af37;
    text-align: center;
    margin: 40px 0 30px;
    letter-spacing: -0.3px;
}

.category-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.category-links .category-link {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 16px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.category-links .category-link:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, rgba(26, 26, 26, 1) 0%, rgba(30, 30, 30, 1) 100%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
    color: #d4af37;
}

/* FAQ Grid (para páginas de categoria) */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.9) 100%);
    border: 1.5px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.15);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Melhorias de Tipografia Global */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

p {
    letter-spacing: 0.1px;
}

/* Footer - Design Profissional */
.footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, #000000 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 1.8fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 18px;
    color: #d4af37;
    letter-spacing: -0.2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-section ul li:last-child {
    margin-bottom: 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-section a:hover {
    color: #d4af37;
    transform: translateX(3px);
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #d4af37;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-link {
        gap: 0.75rem;
    }
    
    .logo-image {
        height: 45px;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .tagline {
        font-size: 0.75rem;
    }
    
    .banner-carousel {
        height: auto;
        min-height: 500px;
    }
    
    .revenda-slide .revenda-content {
        padding: 1.5rem 1rem;
        align-items: flex-start;
    }
    
    .revenda-banner-content {
        padding: 1rem;
    }
    
    .banner-text h2 {
        font-size: 2rem;
    }
    
    .banner-text p {
        font-size: 1rem;
    }
    
    .revenda-title {
        font-size: 1.6rem;
    }
    
    .revenda-subtitle {
        font-size: 0.95rem;
    }
    
    .revenda-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .revenda-feature {
        padding: 0.75rem;
    }
    
    .revenda-icon {
        font-size: 1.5rem;
    }
    
    .revenda-feature h3 {
        font-size: 0.85rem;
    }
    
    .revenda-feature p {
        font-size: 0.8rem;
    }
    
    .revenda-comparison {
        grid-template-columns: 1fr;
    }
    
    .revenda-actions {
        flex-direction: column;
    }
    
    .revenda-actions .btn {
        width: 100%;
    }
    
    .banner-nav {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .banner-prev {
        left: 10px;
    }
    
    .banner-next {
        right: 10px;
    }
    .header-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    /* Ordem visual em mobile: Logo, Botões, Busca */
    .header-content > .logo {
        order: 1;
    }
    
    .header-content > .header-actions {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        flex-wrap: wrap;
    }
    
    .header-content > .header-actions .btn {
        flex: 1 1 auto;
        min-width: 0;
        max-width: 100%;
        text-align: center;
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .header-content > .search-bar {
        order: 3;
        max-width: 100%;
        min-width: 0;
        width: 100%;
        margin: 0.5rem 0;
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .story-item {
        flex-direction: column;
        text-align: center;
    }

    .story-icon {
        margin: 0 auto;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .mercadolivre-notice {
        flex-direction: column;
        text-align: center;
    }

    .notice-icon {
        font-size: 3rem;
    }
}

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

/* Botão Flutuante WhatsApp - sempre visível na viewport (mobile primeiro) */
.whatsapp-float {
    position: fixed !important;
    bottom: 20px;
    right: 20px;
    left: auto !important;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 30px rgba(37, 211, 102, 0.2);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    font-weight: 600;
    font-size: 15px;
    -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5), 0 0 40px rgba(37, 211, 102, 0.3);
    text-decoration: none;
    color: white;
}

.whatsapp-float:active {
    transform: translateY(-1px) scale(1.02);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 6px;
    flex-shrink: 0;
}

.whatsapp-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.whatsapp-text {
    white-space: nowrap;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 30px rgba(37, 211, 102, 0.2);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 40px rgba(37, 211, 102, 0.4);
    }
}

/* Responsivo para mobile - WhatsApp sempre visível, sem scroll horizontal */
@media (max-width: 768px) {
    .header-toggle-btn {
        width: 48px;
        height: 48px;
        top: 15px;
        right: 15px;
    }
    
    .header-toggle-btn svg {
        width: 24px;
        height: 24px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        left: auto !important;
        padding: 14px;
        font-size: 14px;
        gap: 0;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        min-width: 56px;
        min-height: 56px;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    
    .whatsapp-icon {
        width: 24px;
        height: 24px;
        padding: 5px;
    }
    
    .whatsapp-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 12px;
        right: 12px;
        left: auto !important;
        width: 52px;
        height: 52px;
        min-width: 52px;
        min-height: 52px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-icon {
        width: 26px;
        height: 26px;
    }
    
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Layout que não quebra: telas muito estreitas e safe-area */
@media (max-width: 360px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .logo h1 {
        font-size: 1.25rem;
    }
    .logo-image {
        height: 48px;
    }
    .header-actions .btn {
        min-width: 0;
        font-size: 0.8rem;
        padding: 0.5rem 0.6rem;
    }
    .whatsapp-float {
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
        bottom: 10px;
        right: 10px;
    }
}

@supports (padding: max(0px)) {
    .header {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    .whatsapp-float {
        bottom: max(12px, env(safe-area-inset-bottom));
        right: max(12px, env(safe-area-inset-right));
        left: auto !important;
    }
}
