/* Variáveis para Cores Comuns */
:root {
    --cor-primaria-escura: #1e3a8a; /* Azul escuro */
    --cor-primaria-media: #3b82f6;  /* Azul médio */
    --cor-secundaria: #fcd34d;      /* Amarelo */
    --cor-fundo-claro: #f3f4f6;     /* Cinza claro */
    --cor-texto-principal: #1f2937; /* Cinza muito escuro */
    --cor-texto-secundario: #4b5563; /* Cinza médio */
    --cor-branco: #ffffff;
}

/* Desabilitar seleção de texto e imagens */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Desabilitar arrastar imagens */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}

/* Proteção contra print screen */
@media print {
    * {
        display: none !important;
    }
}

/* Scroll suave para navegação interna */
html {
    scroll-behavior: smooth;
}

/* Melhorar a aparência das seções */
section {
    transition: all 0.3s ease;
}

/* Estilo para links de navegação ativos */
.nav-primary a.active {
    color: #fff;
    background-color: rgba(255,255,255,0.1);
    border-radius: 4px;
}

/* Melhorar a visualização das seções ao navegar */
section:target {
    animation: highlight 2s ease;
}

@keyframes highlight {
    0% { background-color: transparent; }
    50% { background-color: rgba(255,255,255,0.05); }
    100% { background-color: transparent; }
}

/* Melhorar a responsividade do menu */
@media (max-width: 768px) {
    .nav-primary {
        flex-direction: column;
    }
}

/* ==== MELHORIA DOS QUADROS DE PLANOS ==== */
.product-box, .vps-price-card {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 6px 18px rgba(4,156,236,0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    max-width: 100%;          
    box-sizing: border-box;   
}

.product-box:hover, .vps-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(4,156,236,0.12);
}

.product-box h3, .vps-price-card h3 {
    font-size: 1.4rem;
    color: #049cec;
    text-align: center;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.product-features li::before {
    content: "\f00c"; 
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900; 
    display: inline-block;
    font-size: 0.85rem;
    margin-right: 6px;
    color: #049cec;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #2c3e50;
}

@media (max-width:768px){
    .product-box, .vps-price-card {
        padding: 20px;
        margin: 0 auto 20px auto;
        max-width: 100%;   
    }
    .product-box h3, .vps-price-card h3 {
        font-size: 1.2rem;
    }
}

/* Alternância de tamanhos e cores */
.text-color-primary { color: #049cec; }
.text-color-dark { color: #2c3e50; }
.content-header p, .feature-module p { line-height: 1.6; }

/* Destaques sutis */
mark {
    background-color: transparent;
    color: #049cec;
    font-weight: 700;
}

/* Efeito moderno nas seções alternadas */
.content-row:nth-of-type(odd) {
    background-color: #f8f9fa;
    transition: background-color 0.5s ease;
}

/* Melhorias na seção de VPS */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #e9ecef;
    border-radius: 50px;
    padding: 5px;
    width: fit-content;
    margin: 0 auto 30px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}

.pricing-toggle button {
    background: transparent;
    border: none;
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #555;
    text-shadow: none;
}

.pricing-toggle button.active {
    background: #049cec;
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.product-box {
    position: relative;
    overflow: hidden;
}

.product-box .product-price {
    font-size: 2.5rem;
    color: #2c3e50;
    transition: all 0.4s ease-in-out;
}

.product-box .term {
    font-size: 1.1rem;
    color: #7f8c8d;
    transition: all 0.4s ease-in-out;
}

.product-total {
    font-size: 0.9rem;
    color: #7f8c8d;
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
}

.product-box:hover .product-total {
    opacity: 1;
    visibility: visible;
}

/* NOVOS ESTILOS PARA MELHORAR UX */
  
/* Melhorias gerais de espaçamento e tipografia */
.content-header h1, .content-header h2 {
    margin-bottom: 15px;
}

.content-header p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Estilo para módulos de hospedagem melhorados */
.feature-module {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.feature-module:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-module h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.feature-module p {
    color: #555;
    line-height: 1.6;
}

.feature-module img {
    max-width: 100%;
    border-radius: 8px;
}

/* Tabela moderna para servidores dedicados - Melhoria UX */
.dedicated-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.dedicated-table thead th {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.dedicated-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    position: relative;
    /* Espaço para o ícone */
    padding-left: 40px; 
}

.dedicated-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.dedicated-table tr:hover {
    background-color: #f1f9ff;
}

/* Estilo para os ícones no Desktop e Mobile */
.dedicated-table td .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #3498db;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.term {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Responsividade para tabelas */
@media (max-width: 768px) {
    .dedicated-table {
        border: 0;
    }
    .dedicated-table thead {
        display: none;
    }
    .dedicated-table tr {
        display: block;
        margin-bottom: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        border-radius: 8px;
        background-color: #fff;
    }
    .dedicated-table td {
        display: flex; /* Uso de flexbox para alinhamento perfeito */
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #f2f2f2;
        padding: 15px;
        position: relative;
    }
    .dedicated-table td:last-child {
        border-bottom: none;
        text-align: center;
    }
    
    /* Esconder o data-label padrão para evitar repetição */
    .dedicated-table td::before {
        content: none;
    }

    /* Criar um novo label moderno e visível */
    .dedicated-table td:not(:first-child)::before {
        content: attr(data-label);
        font-weight: bold;
        color: #444;
        text-transform: uppercase;
        font-size: 0.85em;
        flex-shrink: 0;
        margin-right: 10px;
    }

    /* Ajuste no primeiro 'td' para o título do plano */
    .dedicated-table tr td:first-child {
        justify-content: center;
        text-align: center;
        font-size: 1.1em;
        font-weight: bold;
        padding: 15px 10px;
        border-bottom: 2px solid #3498db;
    }

    /* Estilo dos ícones no mobile, alinhados à esquerda */
    .dedicated-table td .icon {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-right: 10px;
        font-size: 1rem;
        color: #3498db;
    }
}

/* Estilo para o título da seção de pagamentos */
#pagamentos .content-header h2 {
    text-align: center;           
    font-size: 2rem;              
    font-weight: 800;             
    color: #2c3e50;              
    letter-spacing: 0.5px;        
    margin-bottom: 10px;          
}

#pagamentos .content-header p {
    text-align: center;           
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;             
    margin: 0 auto 20px auto;     
}

/* Estilos Específicos para a nova Seção VPS */
.vps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Base do card de preço */
.vps-price-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1; 
    min-width: 280px; 
    border: 2px solid #ddd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Destaque para o plano popular */
.vps-price-card.featured {
    border-color: #049cec;
    box-shadow: 0 8px 25px rgba(4, 156, 236, 0.2);
    transform: translateY(-10px);
}

.vps-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Título do plano */
.vps-price-card h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Preço */
.vps-price-card .product-price {
    margin-bottom: 25px;
}

.vps-price-card .price-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #049cec;
    line-height: 1;
}

.vps-price-card .term {
    font-size: 1.2rem;
    color: #555;
    margin-left: 5px;
}

/* Lista de recursos */
.vps-price-card .product-features {
    flex-grow: 1;
    text-align: left;
    margin-bottom: 25px;
}

.vps-price-card .product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vps-price-card .product-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 15px;
}

.vps-price-card .product-features .icon {
    font-size: 1.5rem;
    color: #049cec;
    flex-shrink: 0;
}

.vps-price-card .product-features .feature-text {
    flex-grow: 1;
}

.vps-price-card .product-features .feature-text h4 {
    margin: 0;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.vps-price-card .product-features .feature-text p {
    margin: 0;
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.4;
}

/* Botão de contratação */
.vps-price-card .button {
    width: 100%;
    margin-top: 20px;
}

/* Responsividade Aprimorada */
@media (max-width: 992px) {
    .vps-grid {
        flex-direction: column;
    }
    .vps-price-card {
        flex: auto;
        min-width: 100%; 
    }
}

/* Estilos para o AOS */
.aos-animate {
    transition-duration: 1s;
}

/* Discount button and price UI */
.price-controls { margin-top: 12px; display:flex; flex-direction:column; gap:6px; align-items:center; }
.price-row { display:flex; gap:10px; align-items:baseline; justify-content:center; flex-wrap:wrap; }
.price-original { font-size:1.1rem; color:#2c3e50; }
.price-original.striked { text-decoration: line-through; color:#8a99a6; opacity:0.9; }
.discounted-price { font-size:1.8rem; font-weight:700; color:#049cec; line-height:1; }
.annual-total { font-size:0.85rem; color:#7f8c8d; }
.discount-btn {
    background:linear-gradient(180deg,#049cec,#027fc6);
    color:white;
    border:none;
    padding:8px 14px;
    border-radius:999px;
    cursor:pointer;
    font-weight:600;
    box-shadow: 0 6px 18px rgba(4,156,236,0.18);
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.discount-btn:active{ transform: translateY(1px) scale(.995); }
.discount-btn.secondary {
    background: transparent;
    color:#049cec;
    border: 2px solid #e6f4ff;
    box-shadow:none;
}

/* Small badge for discounted label */
.discount-badge{
    background: #e6f8ff;
    color: #0376b3;
    padding:4px 8px;
    font-weight:700;
    border-radius:999px;
    font-size:0.8rem;
    border: 1px solid rgba(3,118,179,0.06);
}

/* Payment section */
.payments-section{
    background:linear-gradient(180deg, #ffffff, #fbfdff);
    border-radius:12px;
    padding:22px;
    box-shadow:0 8px 24px rgba(4, 156, 236, 0.06);
    margin:40px 0;
}
.payments-grid{ display:flex; gap:20px; align-items:center; justify-content:space-between; flex-wrap:wrap; }
.payments-item{ display:flex; gap:12px; align-items:center; min-width:200px; }
.payments-item .icon{ font-size:28px; }
.payments-note{ color:#586a78; font-size:0.95rem; margin-top:8px; }

/* small helpers */
.visually-hidden{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }

/* Estilo para listas de termos (numeração hierárquica) */
.terms-list {
    list-style-type: decimal; 
    padding-left: 30px; 
    margin-bottom: 20px;
    font-size: 1rem; 
    color: #555; 
}

.terms-list li {
    margin-bottom: 12px; /* Increased margin for better separation */
    line-height: 1.6; /* Increased line height for readability */
}

/* Estilos de customização para DESTAQUE PRINCIPAL (Termos e Conceitos Chave) */
.terms-list li strong {
    color: #049cec; /* Cor de destaque principal (Azul Enuvem) */
    font-weight: 800;
    padding: 4px 8px; 
    background-color: #f1f9ff; /* Fundo azul claro */
    border: 1px solid #cceeff; 
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(4, 156, 236, 0.15); 
    line-height: 1.8; 
    display: inline-block; /* Essencial para que o padding funcione corretamente */
    transition: background-color 0.2s;
}

.terms-list li strong:hover {
    background-color: #e6f4ff; /* Ligeiro destaque ao passar o mouse */
}

/* Estilos de customização para DESTAQUE DE VALORES/TEMPO (Era 'em', agora 'highlight-time') */
.terms-list li .highlight-time {
    font-style: normal;
    font-weight: 700;
    color: #c0392b; /* Cor de atenção (vermelho escuro profissional) */
    background-color: #fff7f7;
    padding: 3px 8px;
    border-radius: 999px; /* Badge pill shape */
    border: 1px solid #f0e6e6;
    margin: 0 4px;
    display: inline-block;
}

/* Removendo o estilo 'em' antigo, pois será substituído */
.terms-list li em {
    font-style: italic; /* Volta ao padrão, se algum sobrar */
    font-weight: inherit;
    color: inherit;
}

/* ==== ESTILOS DA PÁGINA SOBRE NÓS (RENOVADOS) ==== */
/* Global About Layout */
.content-row-alt {
    background-color: #f7faff; /* Fundo alternado */
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.about-header p {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 15px auto;
}

.feature-badge {
    background: #049cec;
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 8px;
}

/* Estilos de Seção Aprimorados */
.about-section {
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.5s ease;
    overflow: hidden; 
}

.about-section.card-shadow {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef;
}

.about-section h2 {
    color: #049cec;
    font-size: 2rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    position: relative;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(4, 156, 236, 0.2);
}

.about-icon {
    font-size: 2.5rem;
    margin-right: 15px;
    color: #2c3e50; /* Ícones em cor escura para contraste */
}

.about-section p {
    line-height: 1.7;
    color: #444;
}

/* Timeline (History) Enhancement */
.timeline {
    position: relative;
    margin-top: 30px;
    padding: 20px 0 20px 60px; /* Mais padding para a linha */
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 4px;
    background-color: #e0e0e0;
    z-index: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '\f111'; /* Ícone de círculo (Font Awesome) */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: -48px; /* Ajuste para alinhar com a linha */
    top: 0;
    font-size: 1.2rem;
    color: #049cec;
    background: white;
    padding: 5px;
    border-radius: 50%;
    border: 3px solid #049cec;
    z-index: 2;
    box-shadow: 0 0 0 5px #f7faff; /* Camada para destacar do fundo */
}

.timeline-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    border-left: 5px solid #049cec;
}

.timeline-content:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(4, 156, 236, 0.15);
}

.timeline-date {
    font-weight: 800;
    color: #c0392b; /* Cor de destaque para a data */
    margin-bottom: 8px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Infrastructure Table Enhancement */
.infrastructure-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #eef;
}

.infrastructure-table th {
    background-color: #2c3e50; /* Fundo mais escuro para cabeçalho */
    color: white;
    font-size: 1.1rem;
}

/* Values Grid Enhancement (Simplified and Text-Focused) */
.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    border: none;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 5px solid #ccc; /* Linha de separação */
    flex: 1;
    min-width: 250px;
    padding: 25px;
    border-radius: 8px;
    text-align: left; /* Alinhamento à esquerda para um estilo mais profissional */
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(4, 156, 236, 0.15);
    border-left-color: #049cec; /* Destaque azul no hover */
}

.value-card h3 {
    font-size: 1.4rem;
    color: #049cec; /* Título em azul para destaque */
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #f0f0f0;
}

.value-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    justify-content: center;
}

.team-member {
    flex-basis: 250px;
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .values-grid {
        flex-direction: column;
    }
    .timeline {
        padding-left: 20px;
    }
    .timeline-item::before {
        left: -30px;
    }
}

/* Sistema completo de estados de estoque */
.btn-order {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none !important; /* Remove sublinhado de links */
    display: inline-block; /* Para links se comportarem como botões */
}

/* Remover qualquer sublinhado em hover/focus */
.btn-order:hover,
.btn-order:focus,
.btn-order:active {
    text-decoration: none !important;
}

/* Estado normal (em estoque) */
.btn-order:not(.out-of-stock):not(.disabled) {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.3);
    cursor: pointer;
}

.btn-order:not(.out-of-stock):not(.disabled):hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px -1px rgba(59, 130, 246, 0.4);
}

/* Estado esgotado (recomendado - vermelho) */
.btn-order.out-of-stock {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    color: white !important;
    cursor: not-allowed !important;
    opacity: 0.9 !important;
    border: none !important;
    box-shadow: 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
    position: relative;
}

/* Remover efeitos de hover para botões esgotados */
.btn-order.out-of-stock:hover,
.btn-order.out-of-stock:focus {
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    transform: none !important;
    box-shadow: 0 2px 4px -1px rgba(220, 38, 38, 0.2) !important;
}

/* Estado esgotado com efeito de "riscado" */
.btn-order.out-of-stock::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    transform: rotate(-15deg);
    pointer-events: none; /* Para não interferir com o clique */
}

/* Estado indisponível (apagado) */
.btn-order.unavailable {
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    border: 1px solid #d1d5db !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

/* Remover efeitos de hover para botões indisponíveis */
.btn-order.unavailable:hover,
.btn-order.unavailable:focus {
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Se ainda houver sublinhado, use este reset global para links com classe btn-order */
a.btn-order,
a.btn-order:hover,
a.btn-order:focus,
a.btn-order:visited {
    text-decoration: none !important;
}

/* Indicador visual adicional */
.out-of-stock-badge {
    position: relative;
}

.out-of-stock-badge::before {
    content: 'ESGOTADO';
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc2626;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    z-index: 10;
}

/* Base e Utilitários */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--cor-texto-principal);
}

.corpo-base {
    color: var(--cor-texto-principal);
}

.container-centralizado {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.secao-padrao {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.secao-fundo-claro {
    background-color: var(--cor-fundo-claro);
}

.texto-alinhado-centro {
    text-align: center;
}

/* Estilo do Título da Seção */
.titulo-secao-area {
    text-align: center;
    margin-bottom: 3rem;
}

.titulo-secao {
    font-size: 2rem;
    font-weight: bold;
    color: var(--cor-primaria-escura);
    margin-bottom: 0.5rem;
}

.linha-divisoria-titulo {
    width: 5rem;
    height: 4px;
    background-color: var(--cor-primaria-media);
    margin-left: auto;
    margin-right: auto;
    border-radius: 9999px; /* Arredondado total */
    margin-top: 0.75rem;
    margin-bottom: 2.5rem;
}

.descricao-secao {
    font-size: 1.125rem;
    color: var(--cor-texto-secundario);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

/* Botões */
.botao-cta-principal {
    display: inline-block;
    margin-top: 2rem;
    background-color: var(--cor-branco);
    color: var(--cor-primaria-escura);
    font-weight: bold;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
}

.botao-cta-principal:hover {
    background-color: #e5e7eb;
    transform: scale(1.05);
}

.botao-cta-secundario {
    display: inline-block;
    margin-top: 3rem;
    background-color: var(--cor-secundaria);
    color: #1e3a8a;
    font-weight: bold;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: all 0.3s ease;
    transform: scale(1);
}

.botao-cta-secundario:hover {
    background-color: #fce37d;
    transform: scale(1.05);
}

/* Seção de Destaque (Hero) */
.cabecalho-principal {
    background: linear-gradient(135deg, #1e3a8a, #4f46e5); /* Gradiente azul/índigo */
    color: var(--cor-branco);
    padding-top: 5rem;
    padding-bottom: 5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.titulo-destaque {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.subtitulo-destaque {
    font-size: 1.25rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Responsividade do Hero */
@media (min-width: 640px) {
    .cabecalho-principal {
        padding-top: 7rem;
        padding-bottom: 7rem;
    }
    .titulo-destaque {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .titulo-destaque {
        font-size: 3.75rem;
    }
}

/* Nossas Localizações */
.grade-localizacoes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

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

.card-localizacao {
    background-color: var(--cor-branco);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
    text-align: center;
}

.card-localizacao:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--cor-primaria-media);
}

.icone-localizacao {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    display: inline-block;
}

.nome-localizacao {
    font-size: 1rem;
    font-weight: 600;
    color: #4b5563;
}

.codigo-localizacao {
    font-size: 0.75rem;
    color: var(--cor-primaria-media);
    font-weight: bold;
}

/* Aplicações Pré-instaladas (Marketplace) */
.grade-aplicativos {
    display: grid;
    gap: 1.5rem;
}

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

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

.card-aplicativo {
    background-color: var(--cor-branco);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top-width: 4px;
    border-top-style: solid;
}

.card-aplicativo:hover {
    box-shadow: 0 20px 25px -5px rgba(59, 130, 246, 0.5), 0 8px 10px -6px rgba(59, 130, 246, 0.3);
}

.borda-superior-azul {
    border-color: var(--cor-primaria-media);
}

.app-cabecalho {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.icone-aplicativo {
    font-size: 1.875rem;
    color: #2563eb;
}

.app-titulo {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--cor-texto-principal);
}

.app-subtitulo {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.app-descricao {
    color: #374151;
    font-size: 0.875rem;
}

/* Recursos Incluídos (Features) */
.grade-recursos {
    display: grid;
    gap: 2rem;
}

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

.card-recurso {
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card-recurso:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    border-color: #60a5fa;
}

.icone-recurso-fundo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 9999px;
    background-color: #dbeafe; /* Azul muito claro */
    color: #2563eb; /* Azul escuro */
    margin-bottom: 1rem;
    font-size: 1.875rem;
}

.recurso-titulo {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--cor-primaria-escura);
}

.recurso-descricao {
    color: #4b5563;
    font-size: 0.875rem;
}

/* Soluções Especializadas */
.grade-solucoes {
    display: grid;
    gap: 1rem;
}

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

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

.card-solucao {
    background-color: var(--cor-branco);
    padding: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card-solucao:hover {
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3), 0 4px 6px -2px rgba(59, 130, 246, 0.1);
    background-color: #eff6ff; /* Azul muito claro */
}

.solucao-titulo {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--cor-primaria-escura);
}

/* Data Centers TIER III */
.grade-data-centers {
    display: grid;
    gap: 1.5rem;
}

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

@media (min-width: 1024px) {
    .grade-data-centers {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card-datacenter {
    background-color: var(--cor-branco);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.card-datacenter:hover {
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.4);
}

.datacenter-cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.tag-tier {
    display: inline-block;
    color: var(--cor-branco);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.tag-tier-azul {
    background-color: var(--cor-primaria-media);
}

.tag-tier-laranja {
    background-color: #f97316;
}

.tag-tier-azul-claro {
    background-color: #3b82f6;
}

.icone-datacenter {
    color: var(--cor-primaria-media);
    font-size: 1.25rem;
}

.datacenter-titulo {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--cor-primaria-escura);
    margin-bottom: 0.25rem;
}

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

.datacenter-endereco {
    color: #374151;
    font-size: 0.875rem;
}

/* Call to Action Final */
.secao-cta-final {
    background-color: var(--cor-primaria-escura);
    color: var(--cor-branco);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.titulo-cta-final {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .titulo-cta-final {
        font-size: 2.25rem;
    }
}

.descricao-cta-final {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.grade-cta-recursos {
    display: grid;
    gap: 2rem;
    margin-top: 2.5rem;
}

@media (min-width: 768px) {
    .grade-cta-recursos {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card-cta-recurso {
    padding: 1.5rem;
    background-color: #1d4ed8; /* Azul um pouco mais claro que o fundo */
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.icone-cta {
    font-size: 2.25rem;
    color: var(--cor-secundaria);
    margin-bottom: 0.75rem;
}

.titulo-cta-recurso {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}


/* VPS READY E GPU */

/* Estilos para a página de aplicativos (apps) */

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

.logo {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(45deg, #1a73e8, #6c8ef5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.stat-item {
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
    padding: 1rem 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4f46e5;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
}

/* Search */
.search-container {
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    border-radius: 50px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #0f172a;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

.search-input::placeholder {
    color: #64748b;
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
}

/* Categories */
.categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.category-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.category-btn:hover, .category-btn.active {
    background: #4f46e5;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #4f46e5;
}

/* Apps Grid */
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.app-card {
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: #4f46e5;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #22c55e);
}

.app-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.app-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #4f46e5, #4338ca);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
    margin-right: 1rem;
}

.app-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1.3;
    color: #0f172a;
}

.app-description {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.app-tag {
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.app-tag.vps { 
    background: rgba(16, 185, 129, 0.1); 
    color: #10b981;
}
.app-tag.dedicated { 
    background: rgba(245, 158, 11, 0.1); 
    color: #f59e0b;
}
.app-tag.free { 
    background: rgba(34, 197, 94, 0.1); 
    color: #22c55e;
}

.app-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.app-price {
    font-weight: 700;
    color: #4f46e5;
    font-size: 1rem;
}

.app-btn {
    background: #4f46e5;
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

.app-btn:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.1), 0 4px 6px -2px rgba(79, 70, 229, 0.05);
}

/* Highlight */
.highlight {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(90deg, #f59e0b, #f97316);
    color: white;
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
}

/* Category Section */
.category-section {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #4f46e5;
    border-radius: 3px;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

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

.no-results {
    text-align: center;
    padding: 3rem;
    color: #64748b;
    grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 768px) {
    .apps-grid {
        grid-template-columns: 1fr;
    }
    
    .categories {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 0.8rem 1.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .logo {
        font-size: 2.5rem;
    }
}

/* ===== ESTILOS PARA SERVIDORES GPU ===== */

/* Container principal GPU */
.gpu-section {
    position: relative;
    padding: 100px 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    overflow: hidden;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0.7;
    }
}

.content-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #1a73e8, #6c8ef5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #5f6368;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Cards GPU */
.gpu-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.gpu-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    width: 100%;
    max-width: 350px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.gpu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.gpu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1a73e8, #6c8ef5);
}

.gpu-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a73e8;
}

.gpu-card-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #5f6368;
}

/* Features Grid GPU */
.gpu-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.gpu-feature-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gpu-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.gpu-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a73e8, #6c8ef5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.gpu-feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.gpu-feature-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* CTA GPU */
.gpu-cta-container {
    text-align: center;
    margin-top: 40px;
}

.gpu-cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: linear-gradient(45deg, #1a73e8, #6c8ef5);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gpu-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(26, 115, 232, 0.4);
    color: white;
    text-decoration: none;
}

.gpu-cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #6c8ef5, #1a73e8);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gpu-cta-button:hover::after {
    opacity: 1;
}

.gpu-cta-button span {
    position: relative;
    z-index: 1;
}

.glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.1) 0%, rgba(26, 115, 232, 0) 70%);
    filter: blur(20px);
    z-index: 0;
}

.glow-1 {
    top: 10%;
    left: 10%;
}

.glow-2 {
    bottom: 10%;
    right: 10%;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .gpu-card {
        max-width: 100%;
    }
    
    .gpu-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Estilos para a tabela de comparação de GPU */
.ovh-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
}

.page-title {
    font-size: 2.5rem;
    color: var(--cor-primaria-escura);
    margin-bottom: 10px;
    font-weight: 800;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--cor-texto-secundario);
    max-width: 800px;
    margin: 0 auto;
}

.comparator-section {
    margin-bottom: 30px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
}

.comparator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comparator-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #334155;
}

.comparator-badge {
    background: #3b82f6;
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.btn-compare-clear {
    background: #ef4444;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-compare-clear:hover {
    background: #dc2626;
}

/* Filtros */
.ovh-filters {
    margin-bottom: 30px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filters-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #334155;
}

.filters-count {
    background: #3b82f6;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.9rem;
    margin-left: 8px;
}

.filters-toggle {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filters-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.filter-group {
    margin-bottom: 15px;
}

.filter-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #475569;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.filter-option label {
    cursor: pointer;
    color: #64748b;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.active-filter {
    background: #e0f2fe;
    border: 1px solid #7dd3fc;
    padding: 6px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.active-filter button {
    background: none;
    border: none;
    color: #0369a1;
    cursor: pointer;
    padding: 0;
}

/* Tabela de servidores */
.servers-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.servers-table th {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #1e40af;
}

.servers-table td {
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: middle;
}

.servers-table tr:nth-child(even) {
    background: #f8fafc;
}

.servers-table tr:hover {
    background: #f1f5f9;
}

.server-name-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.server-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

.server-specs {
    font-size: 0.9rem;
    color: #64748b;
}

.compare-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: background 0.3s;
}

.compare-btn:hover {
    background: #2563eb;
}

.compare-btn.comparing {
    background: #10b981;
}

/* Cards de servidores (mobile) */
.servers-cards {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.server-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.card-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

.card-price {
    text-align: right;
}

.card-price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3b82f6;
}

.card-price-period {
    font-size: 0.9rem;
    color: #64748b;
}

.card-specs {
    margin-bottom: 15px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.spec-label {
    font-weight: 600;
    color: #475569;
    font-size: 0.9rem;
}

.spec-value {
    color: #64748b;
    font-size: 0.9rem;
    text-align: right;
}

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

.card-actions {
    display: flex;
    gap: 10px;
}

.compare-btn-mobile {
    background: #3b82f6;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compare-btn-mobile.comparing {
    background: #10b981;
}

/* Estados de estoque */
.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.stock-badge.in-stock {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.stock-badge.low-stock {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.stock-badge.out-of-stock {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.stock-badge.no-control {
    background: #e5e7eb;
    color: #374151;
    border: 1px solid #d1d5db;
}

.stock-badge.no-control-with-stock {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

.stock-badge.unknown {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.stock-icon {
    font-size: 0.8rem;
}

.table-stock .stock-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.stock-indicator.in-stock {
    background: #d1fae5;
    color: #065f46;
}

.stock-indicator.low-stock {
    background: #fef3c7;
    color: #92400e;
}

.stock-indicator.out-of-stock {
    background: #fee2e2;
    color: #991b1b;
}

.stock-indicator.no-control {
    background: #e5e7eb;
    color: #374151;
}

/* Modal de comparação */
.comparison-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.comparison-modal.active {
    display: flex;
}

.comparison-modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 16px 16px 0 0;
}

.modal-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 20px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 200px repeat(auto-fit, minmax(250px, 1fr));
    gap: 1px;
    background: #e2e8f0;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

.comparison-row {
    display: contents;
}

.comparison-label {
    background: #f8fafc;
    padding: 15px;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
}

.comparison-product {
    background: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-compact-name {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
}

.product-compact-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3b82f6;
}

.comparison-value {
    background: white;
    padding: 15px;
    display: flex;
    align-items: center;
}

.comparison-header .comparison-label {
    background: #3b82f6;
    color: white;
    font-size: 1.1rem;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #e2e8f0;
    text-align: right;
}

.btn-modal-close {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 1024px) {
    .servers-table {
        display: none;
    }
    
    .servers-cards {
        display: grid;
    }
}

@media (max-width: 768px) {
    .servers-cards {
        grid-template-columns: 1fr;
    }
    
    .filters-content {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 150px repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .comparison-grid {
        grid-template-columns: 120px repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Estados de loading e empty */
.loading-state {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.empty-icon {
    font-size: 3rem;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #475569;
    margin-bottom: 10px;
}

/* Tooltip de estoque */
.stock-tooltip {
    position: fixed;
    background: #1e293b;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    max-width: 250px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.stock-tooltip.show {
    opacity: 1;
    transform: translateY(0);
}

.stock-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #1e293b transparent transparent transparent;
}

/* Dropdown de localização */
.location-select {
    position: relative;
}

.location-btn {
    background: white;
    border: 1px solid #cbd5e1;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 150px;
    font-size: 0.9rem;
    color: #475569;
    transition: border-color 0.3s;
}

.location-btn:hover {
    border-color: #3b82f6;
}

.location-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    margin-top: 4px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

.location-dropdown.show {
    display: block;
}

.location-option {
    padding: 10px 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.9rem;
}

.location-option:last-child {
    border-bottom: none;
}

.location-option:hover {
    background: #f8fafc;
}

.location-option.active {
    background: #e0f2fe;
    color: #0369a1;
}

.stock-status {
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
}/* Estilos para a Seção GPU Especializada - TEMA CLARO FIXO */
.gpu-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #1e293b;
    padding: 5rem 1.5rem;
    font-family: 'Segoe UI', system-ui, sans-serif;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gpu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.gpu-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Cabeçalho da Seção */
.gpu-header-section {
    text-align: center;
    margin-bottom: 4rem;
}

.gpu-section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.gpu-section-divider {
    width: min(80px, 15vw);
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.gpu-section-description {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    color: #475569;
    max-width: min(800px, 90vw);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Grid de GPUs - Responsivo */
.gpu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
    gap: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 3rem;
    padding: 0 0.5rem;
}

/* Cards de GPU - SEMPRE CLAROS */
.gpu-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 1.75rem);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(203, 213, 225, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 41, 59, 0.08);
    color: #1e293b;
}

.gpu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 20px 20px 0 0;
}

.gpu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 41, 59, 0.15);
    border-color: rgba(59, 130, 246, 0.6);
    background: rgba(255, 255, 255, 1);
}

/* Cabeçalho do Card */
.gpu-card-header {
    margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
    position: relative;
}

.gpu-badge {
    display: inline-block;
    padding: 0.35rem clamp(0.75rem, 1.5vw, 0.9rem);
    border-radius: 20px;
    font-size: clamp(0.7rem, 1.5vw, 0.75rem);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.gpu-nvidia {
    background: linear-gradient(135deg, #76b900, #5e9c00);
    color: white;
}

.gpu-amd {
    background: linear-gradient(135deg, #ED1C24, #C10000);
    color: white;
}

.gpu-model {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 800;
    margin: 0.5rem 0;
    color: #0f172a;
    line-height: 1.2;
}

.gpu-model-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.gpu-category {
    display: inline-block;
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    color: #3b82f6;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Badges Especiais */
.gpu-new-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: clamp(0.65rem, 1.3vw, 0.7rem);
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.gpu-legacy-badge {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    font-size: clamp(0.65rem, 1.3vw, 0.7rem);
    font-weight: 800;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

/* Especificações */
.gpu-specs {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.gpu-spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.75rem, 1.5vw, 0.875rem) 0;
    border-bottom: 1px solid rgba(203, 213, 225, 0.3);
}

.gpu-spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #64748b;
    font-size: clamp(0.85rem, 1.8vw, 0.9rem);
    font-weight: 500;
}

.spec-value {
    color: #0f172a;
    font-weight: 700;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

/* Rodapé do Card */
.gpu-card-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.gpu-description {
    color: #475569;
    font-size: clamp(0.9rem, 1.8vw, 0.95rem);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.gpu-power-indicator {
    margin-top: 1rem;
}

.power-label {
    display: block;
    color: #64748b;
    font-size: clamp(0.8rem, 1.6vw, 0.85rem);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.power-bar {
    height: 8px;
    background: rgba(203, 213, 225, 0.3);
    border-radius: 4px;
    overflow: hidden;
}

.power-level {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
    transition: width 0.8s ease;
}

/* Filtros de Categorias */
.gpu-filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    margin: 2rem auto 1rem;
    padding: 1rem 0;
    max-width: min(800px, 90vw);
}

.filter-btn {
    padding: clamp(0.5rem, 1.2vw, 0.6rem) clamp(1rem, 2vw, 1.5rem);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(203, 213, 225, 0.6);
    border-radius: 30px;
    color: #475569;
    font-weight: 600;
    font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 1);
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 41, 59, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
}

.filter-btn.active {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Seção de Comparação */
.gpu-comparison {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2rem);
    margin: 2rem auto;
    border: 1px solid rgba(203, 213, 225, 0.4);
    max-width: min(1000px, 90vw);
    backdrop-filter: blur(10px);
}

.comparison-title {
    text-align: center;
    color: #3b82f6;
    font-size: clamp(1.1rem, 2.2vw, 1.25rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.comparison-item {
    text-align: center;
    padding: clamp(1rem, 2vw, 1.5rem);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 1px solid rgba(203, 213, 225, 0.3);
    transition: all 0.3s ease;
}

.comparison-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px);
}

.comparison-category {
    display: block;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.comparison-gpus {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

.gpu-tag {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: clamp(0.8rem, 1.6vw, 0.85rem);
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: all 0.3s ease;
}

.gpu-tag:hover {
    background: rgba(59, 130, 246, 0.2);
}

/* Rodapé da Seção */
.gpu-section-footer {
    text-align: center;
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(203, 213, 225, 0.6);
    margin-top: clamp(1.5rem, 3vw, 2rem);
}

.gpu-footer-note {
    color: #64748b;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    max-width: min(700px, 85vw);
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 1rem;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gpu-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.gpu-card[data-category*="gaming"]:first-child {
    animation: fadeInUp 0.6s ease forwards, pulse 2s infinite 0.6s;
}

/* Efeitos de Filtro */
.gpu-card.hidden {
    opacity: 0.4;
    transform: scale(0.95);
    pointer-events: none;
    filter: blur(2px);
}

/* Responsividade Aprimorada */
@media (max-width: 768px) {
    .gpu-section {
        padding: 3rem 1rem;
    }
    
    .gpu-card {
        padding: 1.25rem;
        background: rgba(255, 255, 255, 0.98);
    }
    
    .gpu-filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 1rem 0.5rem;
        margin: 1.5rem -0.5rem 0;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .gpu-model-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .gpu-comparison {
        background: rgba(255, 255, 255, 0.95);
    }
}

@media (max-width: 480px) {
    .gpu-section {
        padding: 2rem 0.75rem;
        background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    }
    
    .gpu-section-title {
        font-size: 1.8rem;
    }
    
    .gpu-card {
        border-radius: 16px;
        background: white;
        box-shadow: 0 4px 20px rgba(30, 41, 59, 0.1);
        border: 1px solid rgba(203, 213, 225, 0.6);
    }
    
    .gpu-spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .spec-value {
        font-weight: 700;
        color: #3b82f6;
    }
    
    .filter-btn {
        background: white;
        border: 1px solid #cbd5e1;
    }
    
    .gpu-comparison {
        background: white;
    }
}

/* REMOVIDA A MEDIA QUERY DE DARK MODE
   Isso garante que o tema sempre seja claro */

/* Melhorias de Acessibilidade */
@media (prefers-reduced-motion: reduce) {
    .gpu-card,
    .filter-btn,
    .comparison-item {
        transition: none;
        animation: none;
    }
}

/* Controle de Toque para Mobile */
@media (hover: none) and (pointer: coarse) {
    .gpu-card:hover {
        transform: none;
    }
    
    .filter-btn:hover {
        transform: none;
    }
    
    .gpu-card:active {
        transform: scale(0.98);
        background: rgba(255, 255, 255, 1);
    }
    
    .filter-btn:active {
        transform: scale(0.95);
    }
}

/* Suporte para Orientação Landscape em Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .gpu-section {
        padding: 2rem 1rem;
        background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    }
    
    .gpu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gpu-card {
        background: white;
    }
}

/* Garantir que todos os elementos sejam claros em mobile */
@media (max-width: 1024px) {
    .gpu-section {
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    }
    
    .gpu-card,
    .gpu-comparison,
    .comparison-item,
    .filter-btn {
        background-color: rgba(255, 255, 255, 0.95) !important;
    }
}