:root {
  --navy: #091849;
  --cyan: #1eb8f4;
  --cyan-dark: #3498db;
  --yellow: #ffc303;
  --orange: #ff7400;
  --white: #ffffff;
  --card-border: #f3f3f3;
  --shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  --container: min(1254px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: #000;
  font-family: "Nunito", sans-serif;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.benefits,
.dino,
.footer {
  background-color: var(--navy);
  background-image: url("https://lp.pandafibra.com.br/wp-content/uploads/2025/07/Design-sem-nome-3.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(30, 184, 244, 0.1), transparent 28%),
    linear-gradient(180deg, #0b1d58 0%, #091849 100%);
  min-height: 690px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(56, 108, 255, 0.16), transparent 22%),
    radial-gradient(circle at 85% 52%, rgba(30, 184, 244, 0.08), transparent 18%);
  pointer-events: none;
  z-index: 0;
}

.hero__shader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.9;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 24px 12px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.hero__logo {
  width: 260px;
  max-width: 26vw;
  min-width: 150px;
  margin: 0 0 20px;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  border-radius: 30px;
  padding: 10px 20px;
  background-image: linear-gradient(326deg, #364cc9 0%, #2882a5 100%);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.3px;
  line-height: 1.3;
  max-width: min(420px, 75%);
  margin-bottom: 4px;
}

.hero__lead {
  width: min(580px, 92%);
  margin: 22px 0 10px;
  color: var(--white);
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -1px;
}

.hero__lead span {
  color: var(--cyan);
  font-weight: 700;
}

.hero__headline {
  width: min(580px, 92%);
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

.hero__headline strong {
  font-weight: 800;
  color: var(--yellow);
}

.hero__cta {
  margin-top: 24px;
  font-size: 18px;
  padding: 14px 36px;
  box-shadow: 0 4px 20px rgba(255,195,3,0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255,195,3,0.55);
}

.plans {
  padding: 34px 0 38px;
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: clamp(34px, 4vw, 44px);
  font-weight: 600;
}

.section-title--dark {
  color: #000;
}

.section-title--blue,
.section-title--blue strong {
  color: #7ac9ef;
}

.section-subtitle {
  margin: 0 0 18px;
  color: #707070;
  text-align: center;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  width: min(900px, 100%);
  margin: 32px auto 0;
}

.plan {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.plan--featured {
  border: 3px solid var(--orange);
  box-shadow: 0 6px 28px rgba(255,116,0,0.25);
}

.plan--offset {
  margin-top: 0;
}

.plan--offset-small {
  margin-top: 0;
}

.plan__tag {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  padding: 10px 0;
  letter-spacing: 0.3px;
}

.plan__header {
  margin: 16px 18px 0;
  border-radius: 16px;
  background: var(--cyan-dark);
  color: var(--white);
  text-align: center;
}

.plan__header h3 {
  margin: 0;
  padding: 16px 10px 14px;
  font-size: 30px;
  font-weight: 700;
}

.plan__copy,
.plan h4 {
  margin: 14px 22px 0;
  text-align: center;
}

.plan__copy {
  font-size: 14px;
  line-height: 1.55;
  color: #444;
  min-height: 66px;
}

.plan h4 {
  font-size: 18px;
  font-weight: 700;
}

.plan__divider {
  height: 1px;
  margin: 12px 22px 0;
  background: #e0e0e0;
}

.plan__benefits {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 10px 16px 0;
  min-height: 80px;
}

.plan__benefits img {
  width: 30%;
  max-width: 80px;
  border-radius: 50%;
}

.plan__benefits--duo {
  justify-content: center;
  gap: 12px;
}

.plan__benefits--duo img {
  width: 30%;
  max-width: 72px;
  border-radius: 50%;
}

.plan__price {
  margin-top: auto;
  padding: 14px 12px 22px;
  text-align: center;
}

.plan__price-label {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.plan__price-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  color: #000;
}

.plan__currency {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan__amount {
  font-size: 45px;
  font-weight: 800;
  line-height: 1;
}

.plan__cents {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan__period {
  font-size: 12px;
  margin-bottom: 8px;
}

.plan__price p {
  margin: 4px 0 12px;
  font-size: 13px;
}

.cta {
  display: inline-block;
  border-radius: 30px;
  font-weight: 800;
  text-align: center;
}

.cta--yellow {
  padding: 12px 24px;
  background: var(--yellow);
  color: #000;
  font-size: 20px;
}

.benefits {
  margin-top: 43px;
  padding: 55px 0 57px;
}

.benefits__title {
  margin: 0;
  color: var(--white);
  text-align: center;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.25;
}

.benefits__title span {
  color: var(--cyan);
  font-weight: 800;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 22px;
}

.benefit-card {
  margin: 12px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 0 10px rgba(30, 184, 244, 0.32);
  overflow: hidden;
}

.benefit-card__media {
  display: grid;
  place-items: center;
  min-height: 180px;
  padding: 28px 20px 16px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.55), transparent 45%),
    linear-gradient(180deg, rgba(30, 184, 244, 0.12), rgba(9, 24, 73, 0.02));
}

.benefit-card__icon {
  width: 88px;
  height: 88px;
  filter: drop-shadow(0 10px 16px rgba(9, 24, 73, 0.14));
}

.benefit-card--cinema .benefit-card__media {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.6), transparent 42%),
    linear-gradient(180deg, rgba(255, 195, 3, 0.22), rgba(255, 116, 0, 0.06));
}

.benefit-card--food .benefit-card__media {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.6), transparent 42%),
    linear-gradient(180deg, rgba(255, 116, 0, 0.16), rgba(255, 195, 3, 0.08));
}

.benefit-card--books .benefit-card__media {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.6), transparent 42%),
    linear-gradient(180deg, rgba(30, 184, 244, 0.18), rgba(76, 175, 80, 0.08));
}

.benefit-card--shop .benefit-card__media {
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.6), transparent 42%),
    linear-gradient(180deg, rgba(167, 139, 250, 0.18), rgba(30, 184, 244, 0.06));
}

.benefit-card h3,
.benefit-card p {
  margin: 0;
  padding: 0 18px;
  text-align: center;
}

.benefit-card h3 {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
  padding-top: 12px;
}

.benefit-card p {
  color: #000;
  font-size: 16px;
  line-height: 1.2;
  padding: 10px 18px 18px;
}

.benefit-card strong {
  font-weight: 800;
}

.coverage {
  padding: 30px 0 32px;
}

.coverage__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 20px;
}

.coverage-card {
  margin: 12px;
  border: 1px solid var(--card-border);
  border-radius: 14px;
  background: #fffcfc;
  box-shadow: var(--shadow);
  text-align: center;
}

.coverage-card__icon {
  margin-top: 18px;
  font-size: 38px;
  line-height: 1;
}

.coverage-card h3 {
  margin: 0;
  padding: 8px 16px 20px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.dino {
  margin-top: 43px;
  padding: 0 0 27px;
}

.dino__wrap {
  max-width: 669px;
}

.dino__panda {
  width: 54%;
  margin: -133px auto -74px;
}

.dino__card {
  border-radius: 22px;
  background: var(--white);
  text-align: center;
  padding: 18px 24px 16px;
  display: none;
}

.dino__card h2,
.cta-section__inner h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.15;
}

.dino__card p,
.cta-section__inner p {
  margin: 6px 0 0;
  color: var(--navy);
  font-size: 19px;
  font-weight: 300;
  line-height: 1.37;
}

.dino__gif {
  width: 480px;
  max-width: 100%;
  margin: 10px auto 0;
}

.cta-section {
  padding: 28px 0 20px;
  text-align: center;
}

.cta-section__inner {
  max-width: 669px;
}

.cta-section__inner .cta {
  margin-top: 14px;
}

.footer {
  margin-top: 43px;
  padding: 0 0 8px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-top: 32px;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -0.4px;
}

.footer__anatel {
  width: 16%;
  min-width: 90px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.footer__text,
.footer__list li,
.footer__copy {
  color: var(--white);
  font-size: 12px;
  font-weight: 300;
  line-height: 20px;
}

.footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__list li {
  position: relative;
  padding-left: 18px;
}

.footer__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-size: 17px;
  font-weight: 800;
}

.footer__copy {
  padding-top: 16px;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  animation: pulse 1.5s infinite;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 10px #25d366;
}

.whatsapp-msg {
  position: fixed;
  right: 20px;
  bottom: 90px;
  z-index: 999;
  display: none;
  border-radius: 20px;
  background: #25d366;
  color: var(--white);
  padding: 10px 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.whatsapp-msg:hover {
  background: #1ebea5;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 1100px) {
  .plans__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .benefits__grid,
  .coverage__grid,
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: 560px;
    background-position: 70% top;
  }

  .hero__content {
    padding-bottom: 72px;
  }
}

@media (max-width: 780px) {
  .plans__grid,
  .benefits__grid,
  .coverage__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(calc(100vw - 24px), 1254px);
  }

  .hero {
    min-height: 480px;
    background-position: 72% top;
  }

  .hero__logo {
    max-width: 170px;
  }

  .hero__pill {
    width: min(100%, 360px);
    font-size: 13px;
    line-height: 1.3;
    padding: 14px 18px;
  }

  .hero__lead {
    margin-top: 18px;
  }

  .hero__headline {
    font-size: 14px;
    line-height: 1.4;
  }

  .hero__cta {
    font-size: 16px;
    padding: 12px 28px;
  }

  .plan--offset,
  .plan--offset-small {
    margin-top: 0;
  }

  .coverage-card {
    margin: 14px 0;
  }

  .benefit-card {
    margin: 12px 0;
  }

  .footer__anatel {
    width: 90px;
  }
}
