/* ═══════════════════════════════════════════════════════
   PLANOS — Design Moderno (fundo claro)
═══════════════════════════════════════════════════════ */

/* ── Seção ── */
.planos-section {
  position: relative;
  padding: 72px 0 100px;
  background: #ffffff;
  overflow: hidden;
}

/* Decoração de fundo — círculos suaves nos cantos */
.planos-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  animation: planos-orb-float 14s ease-in-out infinite;
}
.planos-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(4,110,162,0.07) 0%, transparent 65%);
  top: -180px; right: -80px;
}
.planos-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(230,144,63,0.07) 0%, transparent 65%);
  bottom: -120px; left: -60px;
  animation-delay: -6s; animation-duration: 18s;
}
.planos-orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(4,110,162,0.04) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation-delay: -3s;
}
@keyframes planos-orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-20px) scale(1.06); }
}
.planos-orb-3 { animation-name: planos-orb-float-center; }
@keyframes planos-orb-float-center {
  0%, 100% { transform: translate(-50%,-50%) scale(1); }
  50%       { transform: translate(-50%,-50%) scale(1.08); }
}

/* ── Header da Seção ── */
.planos-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 2;
}
.planos-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 20px;
  border-radius: 50px;
  background: rgba(4,110,162,0.08);
  border: 1px solid rgba(4,110,162,0.2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: #046EA2;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.planos-titulo {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}
.planos-titulo span {
  background: linear-gradient(135deg, #E6903F 20%, #ff9f52 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.planos-sub {
  font-size: 16px;
  color: rgba(26,26,46,0.5);
  margin: 0;
}

/* ── Swiper container ── */
.planos-swiper {
  position: relative;
  z-index: 2;
}
.planos-section .swiper-container {
  overflow: visible;
}

/* ── Card ── */
.plano-card {
  background: linear-gradient(160deg, #046EA2 0%, #034d73 100%);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 32px rgba(4,110,162,0.22);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s;
}
.plano-card:hover {
  transform: translateY(-14px);
  box-shadow: 0 28px 60px rgba(4,110,162,0.35);
}

/* Brilho diagonal */
.plano-card::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
  z-index: 1;
}
.plano-card:hover::after {
  left: 130%;
}

/* Card destaque */
.plano-card--destaque {
  background: linear-gradient(160deg, #E6903F 0%, #c4741e 100%);
  box-shadow: 0 8px 32px rgba(230,144,63,0.3);
}
.plano-card--destaque:hover {
  box-shadow: 0 28px 60px rgba(230,144,63,0.42);
}

/* Badge "Mais Popular" */
.plano-popular-tag {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 10;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

/* ── Speed Hero — velocímetro SVG (substituição das fotos) ── */
.plano-speed-hero {
  position: relative;
  padding: 26px 24px 18px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.1);
}

/* Glow animado ao fundo */
.plano-sh-glow {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
  animation: sh-glow-pulse 3.5s ease-in-out infinite;
}
@keyframes sh-glow-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1);    }
  50%       { opacity: 1;   transform: translate(-50%,-50%) scale(1.22); }
}
.plano-card:hover .plano-sh-glow {
  opacity: 1;
  transform: translate(-50%,-50%) scale(1.35) !important;
  transition: all 0.45s ease;
  animation-play-state: paused;
}

/* Conteúdo centralizado */
.plano-sh-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 2;
}

/* Container do gauge SVG */
.plano-sh-gauge-wrap {
  width: 156px;
}
.plano-sh-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Número de velocidade */
.plano-sh-speed {
  display: flex;
  align-items: baseline;
  gap: 5px;
  line-height: 1;
  margin-top: -2px;
}
.plano-sh-num {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  font-family: 'Inter', sans-serif;
  text-shadow: 0 2px 18px rgba(0,0,0,0.25);
}
.plano-sh-unit {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding-bottom: 5px;
}

/* Legenda */
.plano-sh-caption {
  font-size: 8.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-top: 3px;
}

/* ── Corpo do card ── */
.plano-corpo {
  padding: 20px 22px 26px;
  position: relative;
  z-index: 2;
}
.plano-nome {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
  line-height: 1;
}

/* ── Preço ── */
.plano-preco-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  padding: 13px 18px;
  margin-bottom: 16px;
  backdrop-filter: blur(4px);
}
.plano-rs {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  line-height: 1;
}
.plano-valor {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-family: 'Rubik', 'Inter', sans-serif;
  text-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
/* destaque: preço com cor invertida para contraste */
.plano-card--destaque .plano-valor {
  color: #fff;
}
.plano-mes {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-left: 2px;
}

/* ── Badge de tecnologia ── */
.plano-tech {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}
.plano-tech-dot {
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: tech-pulse 2.5s ease-in-out infinite;
}
@keyframes tech-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50%       { opacity: 0.7; box-shadow: 0 0 0 5px rgba(255,255,255,0); }
}

/* ── Lista de recursos ── */
.plano-features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.plano-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  line-height: 1.3;
}
.plano-features li:last-child { border-bottom: none; }
.plano-features li::before {
  content: '';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  min-width: 18px;
  background: rgba(255,255,255,0.15) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23ffffff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  flex-shrink: 0;
  font-family: inherit;
  font-size: 0;
  left: 0; top: 0;
  margin-right: 0;
  position: relative;
}

/* ── Botão CTA ── */
.plano-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 20px;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 12px;
  text-decoration: none !important;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s, border-color 0.3s;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.plano-cta:hover {
  background: rgba(255,255,255,0.95);
  color: #046EA2 !important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.plano-card--destaque .plano-cta:hover {
  color: #E6903F !important;
}
.plano-cta .fa {
  transition: transform 0.3s;
  font-size: 13px;
}
.plano-cta:hover .fa {
  transform: translateX(5px);
}

/* ── Responsivo ── */
@media (max-width: 767px) {
  .planos-section       { padding: 52px 0 72px; }
  .planos-titulo        { font-size: 1.8rem; }
  .plano-nome           { font-size: 1.4rem; }
  .plano-valor          { font-size: 2.3rem; }
  .plano-corpo          { padding: 18px 18px 22px; }
  .plano-speed-hero     { padding: 20px 20px 14px; }
  .plano-sh-gauge-wrap  { width: 130px; }
  .plano-sh-num         { font-size: 2.5rem; }
}
