/* Remove bordas/branco ao redor da página e normaliza fundo */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  background: #0b2434; /* ajuste a cor conforme seu design */
  border: 0 !important;
  box-shadow: none !important;
}

/* caso algum container esteja com borda/branco indesejado */
.container, .pricing-section, .pricing-grid {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* garante que o body ocupe toda a altura (evita faixa branca em alguns layouts) */
body {
  min-height: 100vh;
}

/* se houver outline por foco visual, remova visualmente (mantendo acessibilidade se necessário) */
* { outline: none !important; }

.pricing-section {
    padding: 100px 0;
    background: #122844;
    min-height: 100vh;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.price-card {
    background: rgba(10, 22, 37, 0.8);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.featured {
    border: 2px solid #ffd700;
    position: relative;
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #122844;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.price-card h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.price {
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.price-period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 32px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    color: #ffffff;
}

.features li {
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.cta-btn {
    background: #ffd700;
    color: #122844;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.cta-btn:hover {
    background: #fff;
}

.back-arrow {
    color: #ffd700;
    text-decoration: none;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    position: fixed;
    top: 20px;
    left: 20px;
}

.back-arrow:hover {
    transform: translateX(-10px);
    color: #fff;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: none;
    }
}