Selecione os Planos para Comparar
Planos Selecionados
0/6Nenhum plano selecionado ainda
Adicione planos para comparar
.mesh-gradient { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: -1; background: radial-gradient(at 40% 20%, hsla(240, 80%, 60%, 0.4) 0px, transparent 50%), radial-gradient(at 80% 0%, hsla(189, 100%, 56%, 0.3) 0px, transparent 50%), radial-gradient(at 0% 50%, hsla(355, 85%, 60%, 0.3) 0px, transparent 50%), radial-gradient(at 80% 50%, hsla(340, 100%, 70%, 0.2) 0px, transparent 50%), radial-gradient(at 0% 100%, hsla(22, 100%, 50%, 0.2) 0px, transparent 50%), radial-gradient(at 80% 100%, hsla(242, 100%, 70%, 0.3) 0px, transparent 50%), radial-gradient(at 0% 0%, hsla(195, 100%, 50%, 0.3) 0px, transparent 50%); animation: meshMove 20s ease-in-out infinite; } @keyframes meshMove { 0%, 100% { transform: translate(0, 0) scale(1); } 25% { transform: translate(-20px, 20px) scale(1.02); } 50% { transform: translate(20px, -20px) scale(0.98); } 75% { transform: translate(-10px, -10px) scale(1.01); } } /* Floating Orbs */ .orb { position: fixed; border-radius: 50%; filter: blur(80px); animation: float 15s ease-in-out infinite; pointer-events: none; z-index: -1; } .orb-1 { width: 500px; height: 500px; background: rgba(99, 102, 241, 0.3); top: -200px; right: -200px; animation-delay: 0s; } .orb-2 { width: 400px; height: 400px; background: rgba(236, 72, 153, 0.2); bottom: -150px; left: -150px; animation-delay: -5s; } .orb-3 { width: 300px; height: 300px; background: rgba(6, 182, 212, 0.25); top: 50%; left: 50%; animation-delay: -10s; } @keyframes float { 0%, 100% { transform: translate(0, 0) rotate(0deg); } 25% { transform: translate(50px, -50px) rotate(90deg); } 50% { transform: translate(-30px, 30px) rotate(180deg); } 75% { transform: translate(20px, 50px) rotate(270deg); } } /* Header */ .header { background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); padding: 1rem 2rem; position: sticky; top: 0; z-index: 100; } .header-content { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; } .logo { display: flex; align-items: center; gap: 14px; text-decoration: none; } .logo-icon { width: 50px; height: 50px; background: var(--gradient-premium); border-radius: 16px; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4); position: relative; overflow: hidden; } .logo-icon::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent); animation: shimmer 3s ease-in-out infinite; } @keyframes shimmer { 0% { transform: translateX(-100%) rotate(45deg); } 100% { transform: translateX(100%) rotate(45deg); } } .logo-icon i { font-size: 1.5rem; color: white; position: relative; z-index: 1; } .logo-text h1 { font-size: 1.3rem; font-weight: 800; background: linear-gradient(135deg, #fff, #c7d2fe); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .logo-text span { font-size: 0.75rem; color: rgba(255,255,255,0.6); } .header-actions { display: flex; gap: 12px; } .btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 14px; font-weight: 600; font-size: 0.9rem; text-decoration: none; border: none; cursor: pointer; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; } .btn-glass { background: var(--glass); color: white; border: 1px solid var(--glass-border); } .btn-glass:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); box-shadow: 0 15px 35px rgba(0,0,0,0.3); } .btn-premium { background: var(--gradient-premium); color: white; box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4); } .btn-premium:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 40px rgba(99, 102, 241, 0.5); } .btn-success { background: var(--gradient-green); color: white; box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4); } .btn-success:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 40px rgba(16, 185, 129, 0.5); } /* Main Container */ .main-container { max-width: 1400px; margin: 0 auto; padding: 2rem; } /* Page Title */ .page-title { text-align: center; margin-bottom: 2.5rem; padding-top: 1rem; } .page-title h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 0.75rem; background: linear-gradient(135deg, #fff, #a5b4fc, #f0abfc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .page-title p { font-size: 1.1rem; color: rgba(255,255,255,0.6); } /* Simulator Grid */ .simulator-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; } /* Glass Card */ .glass-card { background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 24px; padding: 2rem; position: relative; overflow: hidden; } .glass-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-premium); border-radius: 24px 24px 0 0; } .card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 1.75rem; } .card-icon { width: 50px; height: 50px; background: var(--gradient-blue); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3); } .card-header h2 { font-size: 1.25rem; font-weight: 700; } /* Form Styles */ .form-group { margin-bottom: 1.5rem; } .form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: rgba(255,255,255,0.8); font-size: 0.9rem; } .form-group label i { margin-right: 8px; color: var(--primary-light); } .form-control { width: 100%; padding: 14px 18px; border: 2px solid var(--glass-border); border-radius: 12px; font-size: 1rem; background: rgba(255,255,255,0.05); color: white; transition: all 0.3s ease; } .form-control::placeholder { color: rgba(255,255,255,0.4); } .form-control:focus { outline: none; border-color: var(--primary); background: rgba(99, 102, 241, 0.1); box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15); } select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 24px; } select.form-control option { background: #1f2937; color: white; } /* Dependentes Section */ .dependentes-section { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--glass-border); } .dependentes-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; } .dependentes-header h3 { font-size: 1rem; font-weight: 600; display: flex; align-items: center; gap: 8px; } .dependentes-header h3 i { color: var(--purple); } .btn-add { padding: 8px 16px; font-size: 0.85rem; border-radius: 10px; } .dependente-item { background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: 14px; padding: 1rem; margin-bottom: 1rem; position: relative; animation: slideIn 0.3s ease; } @keyframes slideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } .dependente-item .form-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 1rem; align-items: end; } .btn-remove { width: 40px; height: 40px; border: none; background: rgba(239, 68, 68, 0.2); color: var(--danger); border-radius: 10px; cursor: pointer; transition: all 0.3s ease; display: flex; align-items: center; justify-content: center; } .btn-remove:hover { background: var(--danger); color: white; transform: scale(1.1); } /* Results Section */ .results-section { display: none; } .results-section.active { display: block; animation: fadeIn 0.5s ease; } @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } /* Plano Card */ .planos-grid { display: grid; gap: 1.25rem; max-height: 600px; overflow-y: auto; padding-right: 0.5rem; } .planos-grid::-webkit-scrollbar { width: 6px; } .planos-grid::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 3px; } .planos-grid::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; } .plano-card { background: rgba(255,255,255,0.05); border: 2px solid var(--glass-border); border-radius: 18px; padding: 1.5rem; transition: all 0.4s ease; cursor: pointer; position: relative; } .plano-card:hover { border-color: var(--primary); background: rgba(99, 102, 241, 0.1); transform: translateX(5px); } .plano-card.selected { border-color: var(--success); background: rgba(16, 185, 129, 0.1); } .plano-card.selected::after { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; top: 1rem; right: 1rem; width: 30px; height: 30px; background: var(--success); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; } .plano-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; } .plano-operadora { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; background: rgba(99, 102, 241, 0.2); border-radius: 8px; font-size: 0.8rem; color: var(--primary-light); font-weight: 600; } .plano-nome { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; } .plano-tipo { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem; } .plano-valor { font-size: 1.75rem; font-weight: 900; color: var(--success); } .plano-valor span { font-size: 0.9rem; color: rgba(255,255,255,0.5); font-weight: 500; } /* Summary Card */ .summary-card { background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2)); border: 1px solid rgba(99, 102, 241, 0.3); border-radius: 18px; padding: 1.5rem; margin-top: 1.5rem; } .summary-header { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); } .summary-header h3 { font-size: 1.1rem; font-weight: 700; } .summary-row { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); } .summary-row:last-child { border-bottom: none; } .summary-label { color: rgba(255,255,255,0.6); } .summary-value { font-weight: 600; } .summary-total { background: var(--gradient-green); border-radius: 12px; padding: 1.25rem; margin-top: 1rem; text-align: center; } .summary-total .label { font-size: 0.9rem; opacity: 0.9; margin-bottom: 0.25rem; } .summary-total .value { font-size: 2rem; font-weight: 900; } /* Email Section */ .email-section { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--glass-border); } .email-section h4 { display: flex; align-items: center; gap: 10px; font-size: 1rem; margin-bottom: 1rem; } .email-section h4 i { color: var(--pink); } .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; } /* Actions */ .action-buttons { display: flex; gap: 1rem; margin-top: 1.5rem; } .action-buttons .btn { flex: 1; justify-content: center; padding: 16px 24px; } /* Loading Overlay */ .loading-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(15, 15, 35, 0.9); backdrop-filter: blur(10px); z-index: 9999; align-items: center; justify-content: center; } .loading-overlay.active { display: flex; } .loading-box { text-align: center; } .loading-spinner { width: 60px; height: 60px; border: 4px solid rgba(255,255,255,0.1); border-top-color: var(--primary); border-radius: 50%; animation: spin 1s linear infinite; margin: 0 auto 1.5rem; } @keyframes spin { to { transform: rotate(360deg); } } .loading-box h3 { font-size: 1.25rem; margin-bottom: 0.5rem; } .loading-box p { color: rgba(255,255,255,0.6); } /* Toast */ .toast { position: fixed; bottom: 2rem; right: 2rem; padding: 1rem 1.5rem; border-radius: 14px; display: flex; align-items: center; gap: 12px; z-index: 10000; animation: slideInRight 0.4s ease; box-shadow: 0 10px 40px rgba(0,0,0,0.3); } @keyframes slideInRight { from { opacity: 0; transform: translateX(100px); } to { opacity: 1; transform: translateX(0); } } .toast.success { background: linear-gradient(135deg, #10b981, #06b6d4); } .toast.error { background: linear-gradient(135deg, #ef4444, #ec4899); } .toast i { font-size: 1.25rem; } /* Responsive */ @media (max-width: 1024px) { .simulator-grid { grid-template-columns: 1fr; } } @media (max-width: 768px) { .header-content { flex-direction: column; gap: 1rem; } .page-title h1 { font-size: 1.75rem; } .main-container { padding: 1rem; } .glass-card { padding: 1.5rem; } .dependente-item .form-row { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } .action-buttons { flex-direction: column; } }
Compare até 6 planos simultaneamente com faixas etárias, rede credenciada e benefícios
Nenhum plano selecionado ainda
Adicione planos para comparar
Aguarde um momento