/**
* Template Name: Futuro Tape Brasil - v1.0
* Author: E3 Tecnologia
*/

/* ============================================
   VARIÁVEIS GLOBAIS E RESET
   ============================================ */
:root {
    --primary: #0f1f3a;
    --primary-dark: #0a1529;
    --primary-light: #1a2d4f;
    --accent: #FFD700;
    --accent-dark: #B8860B;
    --text: #f7fafc;
    --text-muted: #bac3cfff;
    --bg: #0b1220;
    --card-bg: rgba(26, 32, 44, 0.7);
    --border: rgba(255, 215, 0, 0.1);
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --max-width: 1200px;
    --border-radius: 8px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ============================================
   LAYOUT GERAL
   ============================================ */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.main-container {
    margin-top: 70px;
}

/* ============================================
   HEADER / NAVEGAÇÃO
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(11, 18, 32, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 12px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    overflow: visible !important;
    text-overflow: clip !important;
}

.logo-admin {
    height: 32px;
    vertical-align: middle;
}

/* MENU DE NAVEGAÇÃO */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 14px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

/* BOTÕES DO HEADER */
.user-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 13px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-primary:hover {
    background: #FFA500;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,215,0,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: rgba(255,215,0,0.1);
    transform: translateY(-2px);
}

/* MENU MOBILE */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--accent);
    font-size: 24px;
    cursor: pointer;
}

/* ============================================
   COTAÇÕES E CRIPTOMOEDAS
   ============================================ */
/* CARROSSEL DE COTAÇÕES */
.quotations-ticker {
    background: var(--primary-dark);
    padding: 1px 0 !important; /* Reduzido de 8px */
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    margin-top: -30px;
    margin-bottom: 30px; /* Reduzido de 20px */
    height: auto !important;
    min-height: 22px !important; /* Reduzido de 50px */
}

.ticker-container {
    display: flex;
    width: max-content;
    animation: ticker-scroll 90s linear infinite;
    height: 100% !important;
}

.ticker-container.paused {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    align-items: flex-start;
    white-space: nowrap;
    border-right: 1px solid var(--border);
    min-width: 80px !important; /* Reduzido de 100px */
    padding: 0 10px !important; /* Reduzido de 15px */
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.ticker-symbol {
    color: var(--accent);
    font-size: 10px !important; /* Reduzido de 12px */
    margin-bottom: 0px !important; /* Reduzido de 2px */
    font-weight: 600 !important;
}

.ticker-value {
    color: var(--text);
    font-size: 10px !important; /* Reduzido de 14px */
    margin-bottom: 0px !important; /* Reduzido de 1px */
    font-weight: 700 !important;
}

.ticker-change {
    font-size: 9px !important; /* Reduzido de 11px */
    font-weight: 500 !important;
}

.positive { color: var(--success); }
.negative { color: var(--danger); }

.ticker-controls {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 2px;
    background: rgba(11, 18, 32, 0.8);
    border-radius: 4px;
    padding: 1px;
    z-index: 10;
}

.ticker-control {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 10px;
    padding: 2px;
    border-radius: 3px;
    transition: all 0.3s;
}

.ticker-control:hover {
    background: rgba(255,215,0,0.1);
    color: var(--accent);
}

/* CARROSSEL DE CRIPTOMOEDAS */
.crypto-ticker {
    background: var(--primary);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    padding: 1px 0 !important; /* Reduzido de 8px */
    height: auto !important;
    min-height: 22px !important; /* Reduzido de 50px */
    min-width: 80px !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    padding: 30px 0px 60px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,215,0,0.05)"/></svg>');
    background-size: cover;
    z-index: 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

/* TÍTULO HERO */
.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent) 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--accent);
}

/* SUBTÍTULO HERO */
.hero-subtitle {
    font-size: 1.25rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

/* DESCRIÇÃO HERO */
.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 650px;
}

.hero-description strong {
    color: var(--accent);
    font-weight: 600;
}

.hero-description a {
    color: var(--accent-dark);
    text-decoration: none;
}

.hero-description a:hover {
    color: var(--accent-dark);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

/* DESTAQUES HERO */
/*.highlights-container { /* Estilos a serem definidos }*/

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    margin-top: 10px;
}

.highlight-icon {
    color: var(--accent);
    font-size: 1rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.5rem;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* AÇÕES HERO */
.hero-actions {
    display: flex;
    gap: 15px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin: 2rem 0 3rem 0;
    flex-wrap: wrap;
}

.cta-primary {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-secondary {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 12px;
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

/* IMAGEM HERO */
.hero-image {
    flex: 0 0 400px;
}

.hero-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border: 1px solid var(--border);
    backdrop-filter: blur(5px);
}

.hero-card h3 {
    color: var(--accent);
    margin-bottom: 10px;
}

.hero-card p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 14px;
}

/* ESTATÍSTICAS DE CONFIANÇA */
.trust-stats {
    display: flex;
    gap: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-suffix {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   SEÇÃO DE GRÁFICOS
   ============================================ */
.charts-section {
    padding: 40px 0;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
}

.chart-container {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    padding-bottom: 40px;
    border: 1px solid var(--border);
    height: 400px;
    backdrop-filter: blur(5px);
}

.chart-title {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 18px;
}

/* ============================================
   SEÇÃO DE NOTÍCIAS
   ============================================ */
.news-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg) 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.news-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid var(--border);
    transition: transform 0.3s;
    backdrop-filter: blur(5px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-title {
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-description {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 12px;
}

/* FILTRO DE NOTÍCIAS */
.news-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: var(--primary-dark);
    border-color: var(--accent);
}

/* INDICADOR DE NOTÍCIAS AO VIVO */
.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e53e3e;
    font-size: 12px;
    font-weight: 600;
    margin-top: 10px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #e53e3e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* BOTÃO CARREGAR MAIS NOTÍCIAS */
.load-more-news {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 30px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   SEÇÃO DA COMUNIDADE
   ============================================ */
.community-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.community-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid var(--border);
    transition: transform 0.3s;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.community-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,215,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--accent);
    font-size: 20px;
}

.card-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent);
}

.card-description {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* ============================================
   SEÇÃO DE RECURSOS (FEATURES)
   ============================================ */
.features-section {
    padding: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 25px;
    border: 1px solid var(--border);
    transition: transform 0.3s;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,215,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--accent);
    font-size: 20px;
}

.feature-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--accent);
}

.feature-description {
    color: var(--text-muted);
    font-size: 14px;
}

/* ============================================
   SEÇÃO DE PLANOS
   ============================================ */
.plans-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.plan-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid var(--border);
    position: relative;
    transition: transform 0.3s;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card.featured {
    border-color: var(--accent);
}

.plan-card.featured::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent);
    color: #000;
    padding: 5px 30px;
    font-size: 11px;
    font-weight: bold;
    transform: rotate(45deg);
}

.plan-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.plan-title {
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 5px;
}

.plan-price {
    font-size: 32px;
    color: var(--accent);
    font-weight: 700;
}

.plan-period {
    font-size: 14px;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.plan-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ============================================
   SEÇÃO DA BIBLIOTECA
   ============================================ */
.library-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg) 100%);
    display: none;
}

.library-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.category-btn.active,
.category-btn:hover {
    background: var(--accent);
    color: #000;
}

.library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.library-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s;
    backdrop-filter: blur(5px);
}

.library-card:hover {
    transform: translateY(-5px);
}

.library-thumbnail {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.library-thumbnail i {
    font-size: 48px;
    color: var(--accent);
}

.library-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: #000;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
}

.library-content {
    padding: 20px;
}

.library-title {
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 10px;
    line-height: 1.4;
}

.library-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
}

.library-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   ÁREA DO MEMBRO / DASHBOARD
   ============================================ */
.member-dashboard {
    display: none;
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg) 100%);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.dashboard-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid var(--border);
    backdrop-filter: blur(5px);
}

.dashboard-card h3 {
    color: var(--accent);
    margin-bottom: 15px;
}

.operations-list {
    list-style: none;
}

.operations-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
}

.operations-list li:last-child {
    border-bottom: none;
}

.operation-positive { color: var(--success); }
.operation-negative { color: var(--danger); }

/* SEÇÃO DE VIDEOAULAS */
.videos-section {
    margin-top: 30px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.video-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.3s;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-thumbnail {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-thumbnail i {
    font-size: 48px;
    color: var(--accent);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
}

.video-content {
    padding: 15px;
}

.video-title {
    font-size: 16px;
    color: var(--accent);
    margin-bottom: 8px;
    line-height: 1.4;
}

.video-description {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}

/* SEÇÃO DE LOGIN DO MEMBRO */
.member-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg) 100%);
}

.member-area {
    max-width: 400px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid var(--border);
    backdrop-filter: blur(5px);
}

/* ============================================
   SEÇÃO DE CONTATO
   ============================================ */
.contact-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.contact-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-container {
    padding: 40px;
}

/* FORMULÁRIO GERAL */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: var(--accent);
    font-weight: 600;
    font-size: 15px;
}

.form-label i {
    font-size: 16px;
}

.form-input {
    width: 100%;
    padding: 8px 12px !important;
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    background: rgba(255,255,255,0.05);
    color: var(--text);
    font-size: 14px;
    transition: all 0.3s;
    height: auto !important;
    min-height: 42px !important;
    line-height: 1.4 !important;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

.form-input:not(:focus):valid:not(:placeholder-shown) {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.05);
}

.form-input:not(:focus):invalid:not(:placeholder-shown) {
    border-color: var(--danger);
    background: rgba(239, 68, 68, 0.05);
}

/* SELECT ESPECIAL */
select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: var(--card-bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23FFD700' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat right 16px center !important;
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px !important;
    height: 42px !important;
    line-height: 20px !important;
    background-color: var(--card-bg) !important;
    color: var(--text) !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
}

/* Opções do select */
select.form-input option {
    background-color: var(--card-bg) !important;
    color: var(--text) !important;
    padding: 12px !important;
    font-size: 14px !important;
}

select.form-input option:hover,
select.form-input option:focus,
select.form-input option:checked,
select.form-input option:active {
    background-color: var(--primary) !important;
    color: var(--accent) !important;
}

select.form-input option[disabled]:first-child {
    color: var(--text-muted) !important;
    background-color: var(--card-bg) !important;
}

select.form-input:invalid:not(:focus) {
    color: var(--text-muted) !important;
}

/* TEXTAREA */
textarea.form-input {
    resize: vertical;
    min-height: 100px !important;
    padding: 8px 12px !important;
    line-height: 1.5 !important;
}

/* CONTADOR DE CARACTERES */
.char-counter {
    text-align: right;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
}

.char-counter #char-count {
    color: var(--accent);
    font-weight: bold;
}

/* MENSAGENS DE ERRO */
.error-message {
    color: var(--danger);
    font-size: 13px;
    margin-top: 5px;
    min-height: 18px;
    opacity: 0;
    transform: translateY(-5px);
    transition: opacity 0.3s, transform 0.3s;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

/* POLÍTICA DE PRIVACIDADE */
.privacy-policy {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.privacy-policy input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer !important;
    width: 15px !important;
    height: 15px !important;
    min-width: 15px !important;
    min-height: 15px !important;
}

.privacy-policy label {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
}

.privacy-policy a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.privacy-policy a:hover {
    text-decoration: underline;
}

/* BOTÃO DE ENVIO */
.form-submit {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0px;
}

#submit-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    flex: 1;
}

#submit-btn:disabled {
    background:cadetblue;
    opacity: 0.7;
    cursor: not-allowed;
}

.loading-spinner-small {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* INFORMAÇÕES DE CONTATO */
.contact-info {
    background: rgba(255, 215, 0, 0.05);
    border-top: 1px solid var(--border);
    padding: 30px 40px;
}

.contact-info h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.contact-item i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 3px;
}

.contact-item strong {
    color: var(--text);
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
}

/* SUCESSO DO FORMULÁRIO */
.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success i {
    font-size: 60px;
    color: var(--accent);
    margin-bottom: 20px;
}

.form-success h3 {
    color: var(--accent);
    margin-bottom: 15px;
}

.form-success p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* CREDENCIAIS DE TESTE */
.test-credentials {
    background: rgba(255,215,0,0.1);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.test-credentials h4 {
    color: var(--accent);
    margin-bottom: 10px;
}

.test-credentials p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 5px;
}

/* Aqui corrigi a borda vermelha da validação que aparecia no select ao carregar a página */
select.form-input:not(:focus):not(.touched) {
    border-color: var(--border) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

/* ============================================
   WHATSAPP FLUTUANTE
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 20px;
    left: 30px;
    z-index: 1000;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.floating-whatsapp:hover {
    opacity: 1; /* Fica totalmente visível no hover */
    transform: scale(1.05);
}

.whatsapp-toggle {
    background: #25D366;
    animation: pulse-whatsapp 2s infinite;
    padding: 0;
        display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-toggle img {
    width: 50px;
    height: 50px;
}

.whatsapp-toggle:hover {
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   ASSISTENTE VIRTUAL FLUTUANTE
   ============================================ */
.floating-assistant {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 1000;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.floating-assistant:hover {
    opacity: 1; /* Fica totalmente visível no hover */
    transform: scale(1.05);
}

.assistant-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent);
    color: #000;
    border: none;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    animation: pulse 2s infinite;
}

.assistant-toggle:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}

/* CHAT DO ASSISTENTE */
.assistant-chat {
    position: absolute;
    bottom: 70px;
    margin-right: -25px;
    display: none;
    right: 0 !important;
    width: 380px !important;
    height: 520px !important;
    background: var(--card-bg) !important;
    border: 2px solid var(--accent) !important;
    border-radius: 15px !important;
    flex-direction: column !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    backdrop-filter: blur(10px) !important;
    overflow: hidden !important;

}

.assistant-chat.active {
    display: flex;
}

.assistant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgba(255,215,0,0.05);
    border-bottom: 1px solid var(--border);
}

.assistant-header h3 {
    color: var(--accent);
    font-size: 16px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.assistant-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
}

/* MENSAGENS DO ASSISTENTE */
.assistant-messages {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.assistant-message {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
    position: relative;
}

.assistant-message.bot {
    background: rgba(255,215,0,0.1);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.assistant-message.user {
    background: rgba(255,215,0,0.2);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

/* INDICADOR DE DIGITAÇÃO */
.assistant-typing {
    display: none;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    background: rgba(255,215,0,0.1);
    border-radius: 12px;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.assistant-typing.active {
    display: flex;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* INPUT DO ASSISTENTE */
.assistant-input {
    display: flex;
    padding: 15px;
    border-top: 1px solid var(--border);
    gap: 10px;
}

.assistant-input input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    color: var(--text);
    font-size: 13px;
}

.assistant-input button {
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
}

/* AÇÕES RÁPIDAS */
.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 15px 15px;
}

.quick-action {
    background: rgba(255,215,0,0.1);
    border: 1px solid var(--border);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-action:hover {
    background: rgba(255,215,0,0.2);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .assistant-input input {
        font-size: 12px !important; /* Força tamanho fixo em mobile */
    }
    .assistant-chat {
    margin-right: -20px;
    }
}

/* BOTÃO FECHAR MAIOR EM MOBILE PARA MELHOR TOUCH */
@media (max-width: 768px) {
    .assistant-close {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }
}

/* ANIMAÇÃO DE ENTRADA OTIMIZADA PARA MOBILE */
@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (orientation: landscape) {
    @keyframes popIn {
        0% {
            opacity: 0;
            transform: translateX(-50%) scale(0.95);
        }
        100% {
            opacity: 1;
            transform: translateX(-50%) scale(1);
        }
    }
}

/* ESTILO PARA QUANDO O TECLADO VIRTUAL ESTIVER ABERTO */
@media (max-height: 500px) and (orientation: landscape) {
    .assistant-chat {
        height: 70vh;
        max-height: calc(90vh - 40px); /* Deixa espaço para o teclado */
        bottom: 0px !important;
    }
    
    .assistant-messages {
        max-height: 50vh;
    }
}

/* INDICADOR VISUAL PARA LANDSCAPE */
@media (orientation: landscape) and (max-width: 768px) {
    .assistant-chat {
        border: 2px solid var(--accent);
    }
}


/* ============================================
   SPEECH BUBBLE (BALÕES DE FALA)
   ============================================ */
.speech-bubble {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-12px);
    background: #111827;
    color: #fff;
    padding: 10px 16px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    border: 2px solid #FFD700;
    box-shadow: 0 6px 18px rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* BALÃO À ESQUERDA (WhatsApp) */
.bubble-left {
    left: 75px;
}

.bubble-left::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-right: 12px solid #FFD700;
}

.bubble-left::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 10px solid #111827;
}

/* BALÃO À DIREITA (Assistente) */
.bubble-right {
    right: 75px;
    transform: translateY(-50%) translateX(12px);
}

.bubble-right::before {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 12px solid #FFD700;
}

.bubble-right::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid #111827;
}

/* ANIMAÇÃO DOS BALÕES */
.floating-whatsapp:hover .speech-bubble,
.floating-assistant:hover .speech-bubble {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    z-index: 999999;
}

.modal-dialog {
    max-height: 80vh;
    display: flex;
    flex-direction: column;
}

.modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    border-bottom: 1px solid #dee2e6;
}

.modal-body {
    overflow-y: auto;
    padding: 1rem 1.5rem;
    flex-grow: 1;
}

.modal-body h5 {
    color: var(--accent);
    font-weight: 600;
}

.modal-body strong {
    font-weight: 600;
}

/* EFEITO DE ANIMAÇÃO DO MODAL */
.modal.fade.custom-effect .modal-dialog {
    animation: sweetZoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.3s ease-in-out;
}

.modal-backdrop.show {
    background-color: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(2px);
    opacity: 1 !important;
    transition: all 0.3s ease-in-out;
    z-index: 999998;
}

.modal.fade.custom-effect.show .modal-dialog {
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease-in-out;
}

@keyframes sweetZoomIn {
    0% { opacity: 0; transform: scale(0.7); }
    45% { transform: scale(1.05); }
    80% { transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

/* BOTÃO FECHAR DO MODAL */
.close1 {
    position: absolute;
    right: -24px;
    top: -25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.shoe-img {
    width: 70px;
    height: auto;
    transform: rotate(-10deg);
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.close-text {
    margin-top: -20px;
    margin-left: -20px;
    font-size: 14px;
    color: var(--accent-dark);
    font-weight: bold;
    text-shadow: 1px 1px 1px #333;
    transition: all 0.3s ease;
}

.close1:hover .shoe-img {
    transform: rotate(10deg) translateY(-5px) scale(1.1);
    opacity: 1;
}

.close1:hover .close-text {
    font-size: 16px;
    color: var(--accent);
    transform: translateY(-4px);
}

/* LINKS DE VÍDEO NO MODAL */
.modal-body .watch-video i {
    font-size: 2rem;
    transition: 0.3s;
    color: var(--warning);
}

.modal-body .watch-video:hover i {
    color: var(--heading-color);
}

.modal-body .watch-video a {
    font-family: 'Chewy', cursive;
    font-weight: 500;
    color: var(--warning);
    margin-left: 8px;
    transition: 0.3s;
    text-decoration: none;
}

.modal-body .watch-video:hover a {
    color: var(--heading-color);
}

/* ============================================
   GLIGHTBOX
   ============================================ */
.glightbox-container .gslide-media {
    border-radius: 12px;
    overflow: hidden;
    animation: sweetZoomIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glightbox-container video {
    border-radius: 12px;
    max-height: 100vh;
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
}

.glightbox-container .plyr {
    background: transparent !important;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--primary-dark);
    padding: 40px 0 20px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

/* REDES SOCIAIS */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(255,215,0,0.1);
    color: var(--accent);
    transform: translateY(-2px);
}

/* FOOTER MINIMALISTA */
.footer-minimal {
    text-align: center;
    padding: 10px 0;
}

.footer-social-minimal {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 10px 0;
}

.social-icon {
    color: var(--text-muted);
    font-size: 30px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--accent);
}

.footer-copyright a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 13px;
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,215,0,0.3);
    border-radius: 50%;
    border-top-color: var(--accent);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   NOTIFICATION SYSTEM
   ============================================ */
.notification-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1000;
    max-width: 350px;
}

.notification {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease-out;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success { border-left: 4px solid var(--success); }
.notification.error { border-left: 4px solid var(--danger); }
.notification.warning { border-left: 4px solid var(--warning); }
.notification.info { border-left: 4px solid var(--accent); }

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 14px;
}

.notification-title {
    font-weight: 600;
    color: var(--accent);
}

.notification-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 12px;
}

.notification-message {
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-wrap: nowrap;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu a {
        font-size: 13px;
    }
    
    .form-row-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-form-container {
        padding: 30px !important;
    }
    
    .col-md-3, .col-md-6, .col-md-12 {
        width: 100% !important;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    /* HEADER MOBILE */
    .site-header {
        padding: 8px 0;
    }
    
    .logo {
        font-size: 16px !important;
        max-width: 150px;
    }
    
    .logo img.logo-admin {
        height: 24px !important;
    }
    
    .header-content {
        flex-wrap: nowrap;
        gap: 10px;
    }
    
    .mobile-menu-toggle {
        order: 3;
        font-size: 20px;
        margin-left: auto;
        display: block;
    }
    
    .user-actions {
        order: 2;
        gap: 8px;
        margin-left: auto;
    }
    
    .user-actions .btn {
        padding: 6px 10px;
        font-size: 12px;
        min-width: auto;
    }
    
    .user-actions .btn i {
        font-size: 11px;
    }
    
    /* MENU MOBILE */
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(11, 18, 32, 0.98);
        backdrop-filter: blur(15px);
        padding: 20px;
        z-index: 999;
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        flex-direction: column;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .main-container {
        margin-top: 56px;
    }
    
    /* HERO */
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    /* GRIDS */
    .features-grid, .plans-grid, .community-grid, .news-grid, .videos-grid, .library-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured::before {
        top: 10px;
        right: -25px;
        padding: 4px 25px;
        font-size: 10px;
    }
    
    /* COTAÇÕES */
    .quotations-ticker,
    .crypto-ticker {
        padding: 6px 0 !important;
    }
    
    .ticker-item {
        min-width: 90px !important;
        padding: 0 10px !important;
    }
    
    .ticker-symbol {
        font-size: 11px !important;
    }
    
    .ticker-value {
        font-size: 13px !important;
    }
    
    .ticker-change {
        font-size: 10px !important;
    }
    
    .crypto-ticker .ticker-item {
        min-width: 95px !important;
    }
    
    .ticker-controls {
        display: none;
    }
    
    /* FORMULÁRIO */
    .form-row-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-form-container {
        padding: 20px !important;
    }
    
    .form-input {
        padding: 14px 16px !important;
        font-size: 16px !important;
    }
    
    #submit-btn {
        padding: 16px !important;
        font-size: 16px !important;
        width: 100%;
    }
    
    .privacy-policy {
        padding: 12px !important;
        flex-wrap: wrap;
    }
    
    .privacy-policy input[type="checkbox"] {
        width: 22px !important;
        height: 22px !important;
    }
    
    .contact-details {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    
    .contact-item {
        padding: 12px !important;
    }
    
    /* ASSISTENTE */
    .assistant-chat {
        width: 320px;
        height: 450px;
        right: 10px;
    }
    
    .speech-bubble {
        display: none;
    }
}

@media (max-width: 650px) {
    .logo {
        font-size: 15px !important;
    }
    
    .user-actions .btn span {
        display: inline;
    }
    
    .user-actions {
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .chart-container {
        height: 300px;
    }
    
    .notification-container {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .ticker-item {
        min-width: 85px !important;
        padding: 0 8px !important;
    }
    
    .crypto-ticker .ticker-item {
        min-width: 90px !important;
    }
    
    .assistant-chat {
        width: 300px;
        height: 400px;
        right: 10px;
        bottom: 60px;
    }
    
    .assistant-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    /* HEADER MUITO PEQUENO */
    .logo {
        font-size: 14px !important;
        max-width: 120px;
    }
    
    .logo img.logo-admin {
        height: 20px !important;
    }
    
    .user-actions {
        gap: 5px;
    }
    
    .user-actions .btn {
        padding: 5px 8px;
        font-size: 11px;
    }
    
    .user-actions .btn i {
        margin-right: 2px;
    }
    
    .mobile-menu-toggle {
        font-size: 18px;
        padding: 5px;
    }
    
    .user-actions .btn span {
        display: none;
    }
    
    .user-actions .btn i {
        margin-right: 0;
    }
    
    .btn-outline, .btn-primary {
        min-width: 40px;
        justify-content: center;
    }
    
    /* FORMULÁRIO */
    .form-row-grid {
        gap: 10px;
    }
    
    .contact-form-container {
        padding: 15px !important;
    }
    
    .form-label {
        font-size: 14px !important;
    }
    
    .form-label i {
        font-size: 14px !important;
    }
    
    .row {
        margin: 0 -10px !important;
    }
    
    .col-md-3, .col-md-6, .col-md-12 {
        padding: 0 10px !important;
    }
    
    .row > div {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    /* MODAL */
    .shoe-img {
        width: 60px;
    }
    
    .close-text {
        font-size: 12px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .logo {
        font-size: 18px;
    }
    
    .logo img.logo-admin {
        height: 28px;
    }
    
    .user-actions {
        gap: 10px;
    }
    
    .user-actions .btn {
        padding: 7px 12px;
        font-size: 13px;
    }
}

@media (min-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 10px !important;
    }
    
    .contact-card {
        border-radius: 8px !important;
        overflow: hidden !important;
    }
}

/* ANIMAÇÃO DO MENU MOBILE */
.nav-menu {
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-menu {
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
}