@charset "UTF-8";

.video-container { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -10; overflow: hidden; background: #000; }
.video-container video { min-width: 100%; min-height: 100%; width: auto; height: auto; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); object-fit: cover; filter: brightness(0.4) contrast(1.2); }
.video-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%); z-index: -5; }

.servico-container { max-width: 1100px; margin: 0 auto; padding: 3rem 1.5rem; position: relative; z-index: 10; }
.servico-header { text-align: center; margin-bottom: 4rem; }
.servico-header h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; text-transform: uppercase; letter-spacing: -1px; margin-bottom: 1rem; }
.servico-header .subtitle { color: #ccc; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; }
.pricing-card { background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); border: 1px solid var(--glass-border); border-radius: 30px; padding: 3.5rem 2rem; transition: var(--transition-smooth); display: flex; flex-direction: column; }
.pricing-card:hover { transform: translateY(-12px); border-color: rgba(255, 255, 255, 0.4); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.pricing-card.featured { border: 2px solid var(--color-accent); background: rgba(255, 109, 0, 0.05); }

.plan-name { font-size: 1.8rem; margin-bottom: 0.5rem; }
.plan-desc { font-size: 0.9rem; color: #ccc; }
.price-wrapper { margin: 2rem 0; font-family: 'Montserrat', sans-serif; }
.price-wrapper .amount { font-size: 3.5rem; font-weight: 900; }

.features-list { list-style: none; margin-bottom: 3rem; flex-grow: 1; }
.features-list li { margin-bottom: 1rem; display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.features-list i { color: var(--color-accent); }

.btn-cta { display: block; width: 100%; padding: 1.2rem; background: #fff; color: #000; text-align: center; border-radius: 60px; font-weight: 800; letter-spacing: 1px; transition: var(--transition-smooth); }
.featured .btn-cta { background: var(--color-accent); color: #fff; }
.btn-cta:hover { filter: brightness(1.2); transform: scale(1.02); }

.badge { background: var(--color-accent); color: white; padding: 5px 15px; border-radius: 20px; font-size: 0.7rem; font-weight: 800; width: fit-content; margin-bottom: 10px; }

/* ==========================================
   MEDIA QUERIES - RESPONSIVIDADE CELULAR
   ========================================== */
@media (max-width: 768px) {
    .pricing-grid { grid-template-columns: 1fr; } /* Força a ficar uma coluna na vertical */
    .pricing-card { padding: 2.5rem 1.5rem; } /* Diminui o padding interno no mobile */
    .servico-header { margin-bottom: 2rem; }
}