:root {
  --blue-900: #0f264b;
  --blue-850: #12305e;
  --blue-800: #16386f;
  --blue-700: #1f4f97;
  --blue-600: #2c65c0;
  --yellow-600: #ffcb3b;
  --yellow-500: #ffd65b;
  --light-100: #f6f8fc;
  --light-150: #eef2f8;
  --gray-700: #3f4c5a;
  --gray-600: #5b6775;
  --shadow-lg: 0 28px 60px rgba(15, 38, 75, 0.16);
  --shadow-md: 0 16px 36px rgba(15, 38, 75, 0.12);
  --shadow-sm: 0 12px 24px rgba(15, 38, 75, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Nunito Sans", sans-serif;
  color: var(--blue-900);
  background: var(--light-100);
  line-height: 1.55;
  overflow-x: hidden;
}

.top-strip {
  background: #223b73;
  color: #fff;
  font-size: 0.92rem;
}

.top-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0;
  gap: 1rem;
}

.top-left a,
.top-right a,
.top-right span {
  color: #fff;
  font-weight: 700;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.top-right .phone {
  font-weight: 800;
}

.user-greet {
  font-weight: 500;
  opacity: 0.9;
}

.search-icon {
  font-size: 1rem;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1220px, 94vw);
  margin: 0 auto;
}

header {
  background: #36a3e6;
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08), 0 14px 28px rgba(30, 138, 215, 0.466);
}

.top-strip.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 520;
}

header.is-fixed {
  position: fixed;
  top: var(--top-strip-height, 0px);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 510;
}

body.has-fixed-header {
  padding-top: calc(var(--top-strip-height, 0px) + var(--header-height, 0px));
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem 0;
  gap: 1.8rem;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 84px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.4rem;
  align-items: center;
  justify-content: center;
  flex: 1;
}
nav ul li {
  position: relative;
}

  nav {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    gap: 1rem;
    position: relative;
  }

nav a {
  font-weight: 700;
  color: #fff;
}

.submenu {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  color: var(--blue-900);
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  list-style: none;
  padding: 0.6rem 0.8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  min-width: 160px;
  z-index: 60;
}

.submenu li a {
  color: var(--blue-900);
  font-weight: 700;
  display: block;
  padding: 0.35rem 0.3rem;
}

.submenu li a:hover {
  color: var(--blue-700);
}

.has-sub:hover .submenu,
.has-sub:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  color: #fff;
}

nav a:hover {
  color: #1864a1;
  transition: color 0.2s ease;
}

.nav-cta {
  margin-left: 1.6rem;
}

.cta-button {
  background: #FFC722;
  color: #000000;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  color: #fff;
}

.video-embed {
  display: grid;
  place-items: center;
}

.responsive-video {
  position: relative;
  width: 100%;
  max-width: 1100px;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}

.responsive-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Header CTA: variante branca */
.nav-cta {
  background: #fff;
  color: #1e8ad7;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.nav-cta:hover {
  color: #0f70c0;
  transform: translateY(-2px);
}

/* Reveal on scroll (sitewide) */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #fff;
}

.hero {
  position: relative;
}

.banner-hero {
  height: clamp(340px, 48vw, 460px);
  margin-top: 0;
}

.hero-slider {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 0 0 18px 18px;
  width: 100%;
}

.hero-slides {
  display: flex;
  height: 100%;
  transition: transform 0.7s ease;
  width: 100%;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: rgba(255, 255, 255, 0.8);
  color: #1e4f8c;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero-prev {
  left: 14px;
}

.hero-next {
  right: 14px;
}

.hero-slider .slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.18);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}

@media (max-width: 600px) {
  .slider-btn {
    width: 34px;
    height: 34px;
  }
  .hero-prev {
    left: 8px;
  }
  .hero-next {
    right: 8px;
  }
}

.slider {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.slides {
  display: flex;
  transition: transform 0.7s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.slider-controls {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  pointer-events: none;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  font-size: 1.2rem;
  color: var(--blue-850);
  cursor: pointer;
  pointer-events: auto;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(18, 59, 118, 0.25);
}

.dot.active {
  background: var(--blue-700);
}

.section {
  padding: 4.25rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title h2 {
  font-size: clamp(1.85rem, 2.7vw, 2.6rem);
  margin-bottom: 0.7rem;
}

.section-title p {
  color: var(--gray-600);
}

.solutions {
  background: var(--light-150);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.solution-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  border: 1px solid #e9eff7;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  position: relative;
}

.solution-card img {
  height: 220px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.solution-card .content {
  padding: 1.5rem;
  display: grid;
  gap: 0.6rem;
}

.solution-card a {
  color: var(--blue-700);
  font-weight: 600;
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(30, 138, 215, 0.08), transparent 45%),
              radial-gradient(circle at 80% 80%, rgba(18, 48, 94, 0.06), transparent 55%);
  opacity: 0;
  transition: opacity 200ms ease;
  pointer-events: none;
}

.solution-card:hover,
.solution-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(15, 38, 75, 0.14);
  border-color: #d3e4f7;
}

.solution-card:hover img,
.solution-card:focus-within img {
  transform: scale(1.03);
}

.solution-card:hover::after,
.solution-card:focus-within::after {
  opacity: 1;
}

.channels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.35rem;
  justify-items: center;
}

.channel-card {
  width: 190px;
  height: 190px;
  background: linear-gradient(180deg, #3fa7e6 0%, #1e3f77 100%);
  padding: 1.2rem 1.1rem;
  border-radius: 24px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: #fff;
  text-align: center;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.channel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.18), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.channel-card:hover,
.channel-card:focus-within {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.channel-card:hover::after,
.channel-card:focus-within::after {
  opacity: 1;
}
.channel-icon {
  width: 50px;
  height: 50px;
  filter: invert(1) brightness(2) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.18));
}

.channel-card span {
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.3;
}

.channel-card strong {
  font-size: 1rem;
  line-height: 1.25;
}

.faq {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  border: none;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

details {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 0.95rem 1.1rem;
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

details summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::after {
  content: "+";
  color: #f6c11e;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  margin-left: 1rem;
}

details[open] {
  background: #fff;
  color: #0f264b;
  border-color: #e5ecf7;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin-top: 0.65rem;
  color: #0f264b;
  line-height: 1.5;
}

.faq-section {
  background: linear-gradient(135deg, #3da2e0 0%, #2c77c0 60%);
  color: #fff;
}

.faq-section .section-title h2 {
  color: #fff;
}

.faq-section .section-title p {
  color: #fff;
  opacity: 0.95;
}

.cta-banner {
  background: linear-gradient(120deg, var(--blue-800), var(--blue-600));
  color: #fff;
  border-radius: 24px;
  padding: 1.8rem 2.4rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: center;
  justify-items: center;
}

.cta-banner > div {
  max-width: 660px;
  width: 100%;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
}

.cta-banner .cta-button {
  display: inline-flex;
  justify-content: center;
  margin: 1.2rem auto 0;
}

.cta-banner img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.cta-full {
  padding: 0;
  background: #1f3b77;
}

.cta-full .cta-banner {
  max-width: min(1320px, 96vw);
  width: 100%;
  border-radius: 0;
  padding: clamp(1.4rem, 2vw, 2.3rem) clamp(2rem, 3vw, 2.8rem);
  grid-template-columns: minmax(360px, 1.02fr) minmax(260px, 0.98fr);
  column-gap: clamp(1.6rem, 3vw, 2.6rem);
  justify-content: center;
  justify-items: center;
  margin: 0 auto;
  background: transparent;
}

.cta-full .container {
  width: 100%;
  margin: 0;
  padding: 0;
}

.cta-full .cta-banner img {
  max-height: 250px;
  width: auto;
  margin-left: 0;
  justify-self: end;
}

.premios {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

.premios-inner {
  display: grid;
  gap: 1.6rem;
  text-align: center;
}

.premios-inner h3 {
  font-size: 1.6rem;
  color: var(--blue-900);
}

.premios-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  align-items: center;
  justify-items: center;
}

.premios-logos img {
  max-width: 240px;
  width: 100%;
  height: auto;
}

footer {
  background: var(--blue-900);
  color: #fff;
  padding: 3.4rem 0 2.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.4rem;
  margin-bottom: 2.4rem;
}

.footer-grid h4 {
  margin-bottom: 0.8rem;
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.footer-sep {
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.8rem;
}

.footer-list .icon {
  margin-right: 0.35rem;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  font-size: 14px;
  line-height: 1;
}

.footer-mail-block {
  margin-top: 1rem;
  display: grid;
  gap: 0.25rem;
}

.footer-mail-block strong {
  font-size: 0.95rem;
}

.footer-muted {
  font-size: 0.9rem;
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.social-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.social-dot img {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  z-index: 80;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24);
  filter: brightness(1.05);
}

@media (max-width: 960px) {
  .top-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .top-left,
  .top-right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1rem;
    align-items: center;
  }

  .top-right {
    justify-content: flex-start;
  }

  .top-right .phone {
    order: -1;
  }

  .top-strip {
    padding: 0.25rem 0;
  }

  .nav-bar {
    flex-wrap: wrap;
    gap: 0.3rem;
    width: 100%;
    max-width: 100vw;
    position: relative;
    z-index: 160;
  }

  .logo img {
    height: 46px;
  }

  /* Hero full-bleed no mobile */
  .hero,
  .banner-hero,
  .hero-slider,
  .hero-slides {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .hero-slide img {
    border-radius: 0;
  }

  nav {
    width: 100%;
    justify-content: flex-end;
    position: relative;
    z-index: 160;
  }

  nav ul {
    position: fixed;
    top: calc(var(--top-strip-height, 0px) + var(--header-height, 64px));
    right: 12px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    width: min(320px, 92vw);
    transform: translateY(-4px);
    opacity: 0;
    pointer-events: none;
    box-shadow: var(--shadow-md);
    border-radius: 12px;
    margin-top: 0.1rem;
    z-index: 1200;
  }

  nav ul a {
    color: #0f264b;
    font-weight: 700;
  }

  nav ul a:hover {
    color: #0d6dc5;
  }

  nav ul.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 320;
  }

  .nav-cta {
    display: none;
  }

  /* Header mais compacto no mobile */
  .top-strip {
    padding: 4px 0;
    font-size: 0.9rem;
    line-height: 1.2;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  header {
    padding: 0.15rem 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .nav-bar {
    padding: 0.45rem 0.9rem;
  }

  .top-strip .container,
  header .container {
    width: 100%;
    max-width: 100vw;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }

  /* limitar largura e overflow geral */
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* container mais estreito */
  .container {
    width: 92vw;
  }

  /* hero ocupa largura total, com altura controlada */
  .hero,
  .banner-hero,
  .hero-slider,
  .hero-slides {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    height: auto;
    max-height: none;
  }

  .hero-slide img {
    border-radius: 0;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-slider,
  .hero-slides,
  .hero-slide {
    height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* padding de seção menor no mobile */
  .section {
    padding: 3.2rem 0;
  }

  /* Planos em coluna única e gap menor */
  .plans-section .plans-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

@media (max-width: 700px) {
  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .slide img {
    height: 260px;
  }
}

/* Plans section (copiado de pages/teste.html) */
.plans-section {
  max-width: 1400px;
  margin: -60px auto 100px;
  padding: 0 2rem;
  position: relative;
}

.plans-section .section-title {
  text-align: center;
  font-size: 2.8rem;
  color: #3498db;
  margin-bottom: 4rem;
  padding-top: 80px;
  font-weight: 800;
  letter-spacing: -1px;
}
.plans-section .section-subtitle {
  text-align: center;
  color: var(--gray-600);
  max-width: 780px;
  margin: -1.4rem auto 2.6rem;
  font-size: 2rem;
  line-height: 1.55;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  gap: 1.8rem;
  justify-content: center;
}

.plan-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 0 15px rgba(52, 152, 219, 0.12);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(52, 152, 219, 0.12);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Variante laranja para plano 400 (home e planos) */
.plan-card.plan-orange {
  background: linear-gradient(135deg, #ffb347 0%, #ff7b00 100%);
  color: #fff;
  border: none;
  padding-top: 2.4rem;
}
.plan-card.plan-orange .plan-speed,
.plan-card.plan-orange .plan-features li,
.plan-card.plan-orange .benefits-title,
.plan-card.plan-orange .plan-price,
.plan-card.plan-orange .currency-block,
.plan-card.plan-orange .price-label-inline,
.plan-card.plan-orange .price-period-inline,
.plan-card.plan-orange .plan-button,
.plan-card.plan-orange .fidelity-note {
  color: #fff;
}
.plan-card.plan-orange .plan-button {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.plan-card.plan-orange .plan-button:hover {
  background: rgba(255, 255, 255, 0.25);
}
.plan-card.plan-orange .plan-badge {
  background: #ffffff;
  color: #ff7b00;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  top: -10px;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  text-transform: uppercase;
  background: linear-gradient(120deg, #ff8d00, #ff5200);
  color: white;
  box-shadow: 0 8px 20px rgba(255, 82, 0, 0.35);
  margin-bottom: 0.6rem;
}

.plan-card.plan-badge-card {
  overflow: visible;
}

.plan-card.plan-badge-card .plan-badge {
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  transform: none;
  border-radius: 12px 12px 0 0;
  margin-bottom: 0;
}

.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3498db, #5dade2);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.plan-card:hover::before {
  transform: scaleX(1);
}

.plan-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14), 0 0 35px rgba(52, 152, 219, 0.25);
  border-color: #3498db;
}

.plan-card.featured {
  background: linear-gradient(135deg, #030307 0%, #2176b5 100%);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  z-index: 1;
}

.plan-card.featured::before {
  background: white;
}

.plan-card.featured:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.15), 0 15px 40px rgba(52, 152, 219, 0.35);
}

.plan-speed {
  background: linear-gradient(135deg, #5dade2, #3498db);
  color: white;
  font-size: 1.5rem;
  font-weight: 800;
  padding: 0.7rem;
  border-radius: 12px;
  text-align: center;
  margin: 0.5rem 0 0.7rem;
  box-shadow: 0 5px 14px rgba(52, 152, 219, 0.22);
  letter-spacing: -0.4px;
}

.plan-card.featured .plan-speed {
  background: linear-gradient(135deg, #5dade2, #3498db);
  color: white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.plan-features {
  list-style: none;
  margin: 0.6rem 0 0.8rem;
  min-height: 35px;
}

.plan-features li {
  padding: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.plan-features li img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.plan-features li:hover {
  transform: translateX(5px);
}

.plan-features i {
  font-size: 1.1rem;
}

.benefits-section {
  margin: 0.8rem 0;
  text-align: center;
}

.benefits-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #333;
  letter-spacing: -0.3px;
}

.plan-card.featured .benefits-title {
  color: white;
}

.benefits-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: nowrap;
  margin: 0 auto 1.5rem;
  width: fit-content;
}

.benefit-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #3498db, #5dade2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.65rem;
  text-align: center;
  padding: 0.4rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.benefit-icon.media {
  background: none;
  box-shadow: none;
  padding: 0;
}

.benefit-icon.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.benefit-icon:hover {
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.plan-card.featured .benefit-icon {
  color: #3498db;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.streaming-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
  margin: 0 auto 1.2rem;
  overflow: hidden;
  padding-bottom: 0.2rem;
  align-items: center;
  width: fit-content;
}

.streaming-or {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  padding: 0 10px;
  letter-spacing: 0.04em;
}

.streaming-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  text-align: center;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  background: #1f1f1f;
  cursor: pointer;
}

.streaming-icon:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.streaming-icon.has-image {
  color: inherit;
  padding: 0;
  overflow: hidden;
  display: inline-flex;
  background: transparent;
  box-shadow: none;
}

.streaming-icon.has-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.streaming-icon.has-image:hover {
  background: transparent;
  box-shadow: none;
}

.streaming-icon.has-image:hover img {
  transform: scale(1.05);
}

.streaming-icon.text-icon {
  font-size: 0.65rem;
  letter-spacing: 0.03em;
  background: #00a859;
  color: white;
  display: inline-flex;
}

.plan-price-section {
  text-align: center;
  margin: 1.2rem 0;
}

.price-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.price-label-inline {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  text-transform: lowercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.plan-price {
  font-weight: 800;
  display: flex;
  align-items: flex-end;
  gap: 0.3rem;
  letter-spacing: -1px;
}

.currency-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  margin-right: 0.3rem;
}

.plan-price .currency {
  font-size: 1.6rem;
}

.plan-price .amount {
  font-size: 3.6rem;
  line-height: 1;
}

.plan-price .cents {
  font-size: 1.8rem;
}

.price-period-inline {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #000000;
  margin-left: 0.2rem;
}

.price-locked-message {
  display: none;
  text-align: center;
  font-weight: 600;
  margin: 1rem 0;
  color: #1f4e6c;
  opacity: 0.9;
}

.plan-card.price-locked .plan-price-section {
  display: none;
}

.plan-card.price-locked .price-locked-message {
  display: block;
}

.addon-description {
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.85;
  margin: 0.4rem 0;
  font-weight: 500;
}

.plan-card.featured .plan-price .theme-text {
  color: #ffffff;
}

.price-period-note {
  font-size: 0.85rem;
  margin-top: 0.3rem;
  opacity: 0.75;
  font-weight: 500;
}

.price-note {
  font-size: 0.85rem;
  margin-top: 0.5rem;
  opacity: 0.7;
  font-weight: 500;
}

.wifi-note {
  text-align: center;
  font-size: 0.9rem;
  margin: 0.9rem 0;
  opacity: 0.8;
  font-weight: 600;
  margin-top: auto;
}
.plan-card.featured .wifi-note {
  color: #fff;
  opacity: 0.95;
}

.plan-button {
  display: block;
  text-align: center;
  width: 100%;
  padding: 1.2rem;
  border: none;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(135deg, #3498db, #2176b5);
  color: white;
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
  letter-spacing: -0.3px;
}

.plan-card.featured .plan-button {
  background: white;
  color: #3498db;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.plan-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(52, 152, 219, 0.4);
}

.plan-card.featured .plan-button:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1400px) {
  .plans-grid {
    grid-template-columns: repeat(4, minmax(260px, 1fr));
    column-gap: 1.5rem;
  }
}

@media (max-width: 1200px) {
  .plans-grid {
    grid-template-columns: repeat(3, minmax(280px, 1fr));
  }
}

@media (max-width: 992px) {
  .plans-grid {
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .plans-section {
    padding: 0 1rem;
    margin: 40px auto 80px;
  }

  .plans-section .section-title {
    font-size: 2.2rem;
    padding-top: 60px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
    padding: 0 0.5rem;
  }

  .plan-card,
  .plan-card.featured {
    width: calc(100vw - 40px);
    max-width: 340px;
    margin: 0 auto;
    transform: scale(1);
    min-height: 100%;
    border-radius: 18px;
  }

  .plan-speed {
    font-size: 1.2rem;
    padding: 0.6rem;
  }

  .plan-price {
    justify-content: center;
    flex-wrap: wrap;
  }

  .plan-price .amount {
    font-size: 3rem;
  }

  .plan-price .cents {
    font-size: 1.4rem;
  }

  .benefits-icons {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .plans-section {
    padding: 0 0.5rem;
  }

  .plans-section .section-title {
    font-size: 2rem;
  }

  .plan-card,
  .plan-card.featured {
    max-width: 320px;
    width: calc(100vw - 32px);
    border-radius: 14px;
    padding: 1rem;
  }
}
