@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&display=swap");

:root {
  --red: #e30613;
  --red-dark: #b9000a;
  --yellow: #ffb400;
  --ink: #171717;
  --muted: #666;
  --line: #e8e8e8;
  --soft: #f7f7f7;
  --white: #fff;
  --green: #16a34a;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.top-strip {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 8px 16px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  background: var(--red);
}

.top-strip a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.nav-shell {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  gap: 20px;
}

.brand img {
  width: 190px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links a:hover {
  background: var(--soft);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 10px 22px rgba(227, 6, 19, 0.22);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  color: var(--red);
  background: var(--white);
  border: 1px solid rgba(227, 6, 19, 0.28);
}

.btn-whatsapp {
  color: var(--white);
  background: var(--green);
}

.btn-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  justify-items: center;
  padding: 20px 16px 22px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.hero picture,
.hero img {
  width: min(1180px, 100%);
}

.hero img {
  max-height: 520px;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 32px));
  margin: 28px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-band div {
  padding: 20px;
  background: var(--white);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  font-size: 16px;
}

.trust-band span {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.35;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0;
}

.section-muted {
  width: 100%;
  padding-right: max(16px, calc((100% - 1180px) / 2));
  padding-left: max(16px, calc((100% - 1180px) / 2));
  background: var(--soft);
}

.intro {
  padding-bottom: 24px;
}

.section-heading {
  max-width: 780px;
}

.inline-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 20px;
  margin-bottom: 22px;
}

.eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
}

h2 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

p {
  color: var(--muted);
  line-height: 1.55;
}

.text-link {
  color: var(--red);
  font-weight: 900;
  white-space: nowrap;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 10px 24px;
  scroll-padding-left: 10px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-carousel::-webkit-scrollbar {
  display: none;
}

.product-carousel .product-card {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 50%;
  background: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.carousel-controls button:hover {
  color: #fff;
  background: var(--red);
}

.product-grid-featured {
  grid-template-columns: 1fr;
}

.product-grid-featured .product-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  overflow: hidden;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.06);
}

.product-media {
  display: grid;
  min-height: 176px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(227, 6, 19, 0.12), rgba(255, 180, 0, 0.1)),
    #fff;
}

.product-image-media {
  min-height: auto;
  padding: 0;
  aspect-ratio: 262 / 147;
  background: #fff;
}

.product-image-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-grid-featured .product-media {
  min-height: 290px;
  background-image: url("/img/card-combo-sky-super-movel.png");
  background-position: center;
  background-size: cover;
}

.product-chip {
  align-self: start;
  justify-self: start;
  padding: 8px 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  border-radius: 6px;
  background: var(--red);
}

.product-content {
  padding: 22px;
}

.benefits {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 16px 0;
  list-style: none;
}

.benefits li {
  position: relative;
  padding-left: 22px;
  color: #333;
  line-height: 1.35;
}

.benefits li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 900;
  content: "✓";
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 18px 0 6px;
}

.price-prefix,
.price-period {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.price {
  color: var(--red);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.old-price {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 14px;
}

.old-price span {
  text-decoration: line-through;
}

.condition {
  min-height: 44px;
  margin-bottom: 20px;
  font-size: 13px;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.card-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  padding: 34px;
  color: var(--white);
  border-radius: 8px;
  background: #1d1d1d;
}

.cta-panel p,
.cta-panel .eyebrow {
  color: var(--white);
}

.cta-panel p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(16px, calc((100% - 1180px) / 2));
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 110px;
}

.site-footer p {
  max-width: 680px;
  margin: 0;
  font-size: 13px;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.modal-card {
  position: relative;
  width: min(480px, 100%);
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
  border: 0;
  border-radius: 8px;
  background: var(--soft);
  cursor: pointer;
}

.modal-product {
  color: var(--ink);
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #333;
  font-size: 14px;
  font-weight: 800;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d7d7d7;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(227, 6, 19, 0.12);
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.success-view {
  display: grid;
  gap: 12px;
}

.product-page {
  background: #f6f6f6;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: start;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0;
}

.detail-media {
  position: sticky;
  top: 24px;
  overflow: hidden;
  display: grid;
  min-height: 430px;
  padding: 34px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(135deg, #d80012, #98000c);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.detail-media.combo {
  min-height: 360px;
  background-image: url("/img/card-combo-sky-super-movel.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 94% auto;
  background-color: #fff;
}

.detail-image-media {
  min-height: 360px;
  padding: 0;
  place-items: center;
  background: #fff;
}

.detail-image-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-cover-media {
  padding: 0;
  aspect-ratio: 1 / 1;
  min-height: auto;
  background: #071f58;
}

.detail-cover-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.detail-plan-media {
  align-content: start;
  color: #fff;
}

.detail-plan-media .media-logo {
  font-size: 34px;
}

.detail-plan-media .media-tag {
  margin-top: 40px;
}

.detail-plan-media strong {
  position: relative;
  z-index: 2;
  display: block;
  max-width: calc(100% - 130px);
  margin-top: 18px;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.detail-plan-media .media-device {
  right: 38px;
  bottom: 76px;
  width: 128px;
  height: 34px;
}

.detail-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.08);
}

.detail-card h1 {
  margin-bottom: 18px;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.02;
}

.detail-card > p {
  max-width: 620px;
  margin-bottom: 20px;
}

.detail-card .price-block {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: end;
  width: auto;
  margin: 6px 0 18px;
}

.detail-card .price {
  font-size: clamp(38px, 4vw, 54px);
}

.detail-card .price-period {
  max-width: 128px;
}

.detail-card .benefits {
  margin-bottom: 24px;
}

.detail-actions {
  display: grid;
  grid-template-columns: minmax(150px, 0.75fr) minmax(220px, 1.25fr);
  gap: 12px;
  max-width: 520px;
  margin-top: 20px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--red);
  font-weight: 900;
}

.details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.detail-box {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.detail-box strong {
  display: block;
  margin-bottom: 4px;
}

.detail-box span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid-featured .product-card,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .detail-media {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .top-strip {
    justify-content: space-between;
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand img {
    width: 150px;
  }

  .nav-links {
    display: none;
  }

  .nav-shell > .btn {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 14px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    padding: 0;
    background: var(--white);
  }

  .hero {
    padding: 0 0 16px;
  }

  .hero img {
    width: 100%;
    max-height: none;
    border: 0;
    border-radius: 0;
  }

  .trust-band,
  .product-grid,
  .details-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 40px 0;
  }

  .inline-heading,
  .cta-panel,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .card-actions-row {
    grid-template-columns: 1fr;
  }

  .price {
    font-size: 34px;
  }

  .modal-card {
    padding: 24px 18px 18px;
  }

  .product-detail {
    padding: 34px 0;
  }

  .detail-card {
    padding: 22px;
  }
}

/* SKY-like visual pass */
:root {
  --red: #e60012;
  --red-dark: #c9000f;
  --ink: #222;
  --muted: #737373;
  --line: #e5e5e5;
  --soft: #f8f8f8;
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 14px;
  background: #fff;
}

.site-header {
  position: relative;
  border-bottom: 1px solid #ededed;
  box-shadow: none;
}

.top-strip {
  justify-content: flex-start;
  width: min(1260px, calc(100% - 32px));
  margin: 0 auto;
  padding: 11px 0;
  color: #777;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  border-bottom: 1px solid #ededed;
}

.top-strip a {
  margin-left: auto;
  color: #777;
  text-decoration: none;
}

.nav-shell {
  width: min(1260px, calc(100% - 32px));
  min-height: 76px;
  justify-content: flex-start;
}

.brand img {
  width: 190px;
}

.nav-links {
  gap: 26px;
  margin-left: 22px;
  font-size: 13px;
  font-weight: 800;
}

.nav-links a {
  padding: 0;
  border-radius: 0;
}

.nav-links a:hover {
  color: var(--red);
  background: transparent;
}

.client-link {
  margin-left: auto;
  color: #3f3f3f;
  border: 0;
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.btn {
  min-height: 42px;
  padding: 11px 20px;
  border-radius: 999px;
  font-size: 13px;
}

.btn-primary {
  background: var(--red);
  box-shadow: none;
}

.btn-secondary {
  color: #333;
  border: 2px solid #ddd;
}

.hero {
  display: block;
  padding: 0;
  background: #070707;
  border: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  min-height: 320px;
  width: min(1360px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

.hero-copy {
  padding: 54px 28px 54px max(32px, calc((100vw - 1180px) / 2));
  color: #fff;
}

.hero-copy h1 {
  max-width: 560px;
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(30px, 4.1vw, 48px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy p {
  max-width: 560px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-cta {
  position: relative;
  min-width: 210px;
  min-height: 52px;
  margin-top: 24px;
  color: #fff;
  border: 0;
  background: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%, 8% 50%);
}

.hero-banner {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 28px 34px 28px 0;
}

.hero-banner img {
  width: min(720px, 100%);
  max-height: 300px;
  object-fit: cover;
  border: 0;
  border-radius: 8px;
  filter: drop-shadow(0 20px 32px rgba(0, 0, 0, 0.42));
}

.cookie-card {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(1110px, calc(100% - 48px));
  margin: -18px auto 18px;
  padding: 20px 22px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.14);
}

.cookie-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #999;
  border: 2px dotted #bbb;
  border-radius: 50%;
}

.cookie-card strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-card p {
  margin: 0;
  color: #777;
  font-size: 13px;
}

.cookie-card button {
  min-width: 150px;
  min-height: 48px;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  font-weight: 900;
  cursor: pointer;
}

.plan-tabs {
  display: flex;
  width: min(1110px, calc(100% - 32px));
  margin: 0 auto 0;
  padding: 0 12px;
  border-bottom: 1px solid #dedede;
  background: #fff;
}

.plan-tabs button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 62px;
  margin-bottom: -1px;
  color: #333;
  border: 1px solid transparent;
  border-bottom: 1px solid #dedede;
  border-radius: 8px 8px 0 0;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.plan-tabs button.active {
  color: var(--red);
  border-color: #dedede;
  border-bottom-color: #fff;
  background: #fff;
}

.plan-tabs button::before {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-right: 9px;
  color: var(--red);
  font-size: 12px;
  border: 2px solid var(--red);
  border-radius: 50%;
  content: "›";
}

.section {
  width: min(1110px, calc(100% - 32px));
  padding: 48px 0;
}

.intro {
  padding-top: 22px;
  padding-bottom: 22px;
}

.combo-offer {
  padding-top: 10px;
  padding-bottom: 26px;
}

.combo-offer .section-heading {
  margin-bottom: 22px;
}

.combo-offer h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 3vw, 34px);
}

.section-heading {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h1 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.15;
}

.section-heading p {
  max-width: 920px;
  margin: 0 auto;
  font-size: 13px;
}

.inline-heading {
  align-items: center;
  text-align: left;
}

.inline-heading .section-heading,
.inline-heading div {
  margin: 0;
  text-align: left;
}

.inline-heading h2 {
  font-size: 30px;
}

.eyebrow {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 11px;
}

.text-link {
  font-size: 12px;
}

.section-muted {
  padding-right: max(16px, calc((100% - 1110px) / 2));
  padding-left: max(16px, calc((100% - 1110px) / 2));
  background: #fafafa;
}

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

.product-grid-featured {
  grid-template-columns: 1fr;
}

.product-grid-featured .product-card {
  grid-template-columns: 1fr 0.82fr;
}

.product-card {
  border-color: #dedede;
  border-radius: 3px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.product-media {
  min-height: 154px;
  padding: 14px 15px;
}

.plan-media {
  position: relative;
  overflow: hidden;
  display: block;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.28), transparent 24%),
    linear-gradient(135deg, #d90012, #af000d);
}

.plan-media strong {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 70%;
  margin-top: 10px;
  color: #fff;
  font-size: 23px;
  line-height: 1.03;
  font-weight: 900;
}

.media-logo {
  color: #fff;
  font-size: 22px;
  font-weight: 900;
}

.media-tag {
  display: block;
  width: max-content;
  margin-top: 18px;
  padding: 4px 8px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  background: #1d1d1d;
}

.media-device {
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: 72px;
  height: 20px;
  border-radius: 3px;
  background: #1b1b1b;
  box-shadow: 14px 7px 0 rgba(0, 0, 0, 0.2);
}

.media-device::after {
  position: absolute;
  right: -18px;
  bottom: 8px;
  width: 52px;
  height: 8px;
  border-radius: 999px;
  background: #2c2c2c;
  transform: rotate(-18deg);
  content: "";
}

.combo-media {
  min-height: 286px;
  background-color: #fff;
  background-image: url("/img/card-combo-sky-super-movel.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: min(96%, 680px) auto;
}

.product-grid-featured .combo-media {
  background-size: contain;
}

.product-chip {
  border-radius: 2px;
  font-size: 10px;
}

.product-content {
  padding: 22px 22px 20px;
}

.product-content h3 {
  min-height: 46px;
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.24;
}

.benefit-title {
  padding-bottom: 8px;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 900;
  border-bottom: 1px solid #e6e6e6;
}

.benefits {
  gap: 12px;
  margin: 0 0 24px;
}

.benefits li {
  min-height: 25px;
  padding-left: 32px;
  color: #555;
  font-size: 13px;
}

.benefits li::before {
  top: -2px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  color: #444;
  font-size: 11px;
  border: 2px solid #777;
  border-radius: 50%;
  content: "✓";
}

.old-price {
  margin-bottom: 2px;
  font-size: 11px;
  font-weight: 700;
}

.price-block {
  gap: 5px;
  margin: 0 0 6px;
}

.price-prefix,
.price-period {
  font-size: 11px;
}

.price {
  font-size: 28px;
}

.condition {
  min-height: 34px;
  margin-bottom: 16px;
  font-size: 10px;
  line-height: 1.35;
}

.card-actions {
  gap: 8px;
}

.card-actions-row {
  grid-template-columns: 1fr 1fr;
}

.card-actions .btn {
  min-height: 41px;
  padding: 9px 12px;
  font-size: 12px;
}

.cta-panel {
  width: min(1110px, calc(100% - 32px));
  padding: 28px 32px;
  border-radius: 4px;
}

.legal-box,
.faq-section {
  width: min(1110px, calc(100% - 32px));
  margin: 0 auto 54px;
}

.legal-box {
  padding: 28px 32px;
  text-align: center;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.legal-box h2,
.faq-section h2 {
  margin-bottom: 18px;
  text-align: center;
  font-size: 26px;
}

.legal-box p {
  margin: 0;
  font-size: 12px;
}

.faq-section details {
  margin-bottom: 8px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fff;
}

.faq-section summary {
  position: relative;
  padding: 18px 52px 18px 18px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-section summary::-webkit-details-marker {
  display: none;
}

.faq-section summary::after {
  position: absolute;
  right: 20px;
  color: #333;
  content: "+";
}

.faq-section details[open] summary::after {
  content: "-";
}

.faq-section details p {
  padding: 0 18px 18px;
  margin: 0;
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr repeat(3, 1.1fr);
  align-items: start;
  padding-top: 64px;
  padding-bottom: 64px;
  background: #f5f5f5;
}

.site-footer img {
  width: 180px;
  margin-bottom: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand span {
  color: #2b2b2b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer strong {
  display: block;
  margin-bottom: 20px;
}

.site-footer a {
  display: block;
  margin-bottom: 13px;
  color: #777;
  font-size: 13px;
}

.site-footer p {
  max-width: none;
}

.blog-page,
.article-page {
  background: #fff;
}

.blog-hero,
.blog-section,
.article-content {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.blog-hero {
  padding: 72px 0 42px;
}

.blog-hero-featured {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  align-items: center;
  gap: 34px;
}

.blog-hero-featured img,
.article-cover,
.blog-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.blog-hero-featured img {
  aspect-ratio: 16 / 9;
  border-radius: 8px;
}

.blog-hero h1,
.article-content h1 {
  max-width: 780px;
  margin: 10px 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
}

.blog-hero p,
.article-content > p {
  max-width: 760px;
  color: #555;
  font-size: 17px;
  line-height: 1.65;
}

.blog-section {
  padding: 34px 0 52px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: #fff;
}

.blog-card > div {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.blog-card img {
  aspect-ratio: 16 / 9;
  background: #f4f4f4;
}

.blog-card-large {
  grid-column: span 3;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.blog-card h3 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1.08;
}

.blog-card p {
  max-width: 720px;
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.blog-topics {
  padding-bottom: 86px;
}

.blog-topics h2 {
  margin: 8px 0 20px;
  font-size: clamp(26px, 3vw, 40px);
}

.topic-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topic-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #2c2c2c;
  font-size: 13px;
  font-weight: 800;
  background: #fff;
}

.article-content {
  max-width: 920px;
  padding: 72px 0 88px;
}

.article-cover {
  aspect-ratio: 16 / 9;
  margin: 28px 0;
  border-radius: 8px;
  background: #f4f4f4;
}

.article-content h2 {
  margin: 42px 0 12px;
  font-size: clamp(24px, 3vw, 36px);
}

.article-content ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 22px;
  color: #4a4a4a;
  line-height: 1.6;
}

.article-content > .btn {
  margin-top: 18px;
}

.article-cta {
  margin-top: 48px;
  padding: 28px;
  border-radius: 8px;
  color: #fff;
  background: #1f1f1f;
}

.article-cta h2 {
  margin-top: 0;
}

.article-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.article-faq {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.article-faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 10px;
  padding: 16px 18px;
}

.article-faq summary {
  cursor: pointer;
  font-weight: 800;
}

.article-faq p {
  margin: 12px 0 0;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 1120px) {
  .blog-hero-featured,
  .blog-card-large {
    grid-template-columns: 1fr;
  }

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

  .blog-card-large {
    grid-column: span 2;
  }

  .product-grid:not(.product-carousel) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-carousel .product-card {
    flex-basis: calc((100% - 48px) / 3);
  }
}

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 34px 24px 12px;
  }

  .hero-banner {
    display: none;
  }

  .product-grid:not(.product-carousel),
  .product-grid-featured .product-card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-carousel .product-card {
    flex-basis: calc((100% - 24px) / 2);
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .blog-hero {
    padding-top: 42px;
  }

  .blog-hero-featured {
    gap: 20px;
  }

  .blog-grid,
  .blog-card-large {
    grid-template-columns: 1fr;
  }

  .blog-card-large {
    grid-column: auto;
  }

  .blog-card > div,
  .article-cta {
    padding: 20px;
  }

  .article-content {
    padding-top: 42px;
  }

  .top-strip {
    width: calc(100% - 28px);
    font-size: 11px;
  }

  .nav-shell {
    width: calc(100% - 28px);
  }

  .client-link {
    font-size: 12px;
  }

  .hero-copy h1 {
    font-size: 30px;
  }

  .hero-copy p {
    font-size: 14px;
  }

  .hero-banner img {
    width: 100%;
    max-height: none;
  }

  .cookie-card {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    margin-top: -10px;
  }

  .cookie-card button {
    width: 100%;
  }

  .product-grid:not(.product-carousel),
  .product-grid-featured .product-card {
    grid-template-columns: 1fr;
  }

  .product-carousel .product-card {
    flex-basis: min(88vw, 360px);
  }

  .inline-heading {
    align-items: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .carousel-controls {
    display: none;
  }
}

/* Final alignment fixes */
.top-strip strong {
  color: #666;
}

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

.product-grid {
  align-items: stretch;
}

.product-carousel {
  gap: 24px;
  padding: 8px 10px 24px;
  scroll-padding-left: 10px;
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.product-grid-featured .product-card {
  display: grid;
}

.product-media {
  flex: 0 0 auto;
}

.product-image-media {
  min-height: auto;
  padding: 0;
  aspect-ratio: 262 / 147;
  background: #fff;
}

.product-image-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plan-media {
  min-height: 142px;
}

.plan-media strong {
  max-width: calc(100% - 76px);
  font-size: clamp(18px, 1.45vw, 24px);
  word-break: normal;
  overflow-wrap: anywhere;
}

.media-device {
  right: 14px;
  bottom: 18px;
  width: 58px;
}

.product-content {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.product-content h3 {
  min-height: auto;
  font-size: 16px;
}

.benefits {
  margin-bottom: 18px;
}

.benefits li {
  min-height: 0;
  font-size: 12.5px;
  line-height: 1.28;
}

.price-block {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  column-gap: 6px;
  margin-top: auto;
}

.price-prefix {
  padding-bottom: 5px;
}

.price {
  display: block;
  font-size: clamp(27px, 2.1vw, 34px);
  line-height: 0.92;
  white-space: nowrap;
}

.price-period {
  max-width: 66px;
  padding-bottom: 4px;
  line-height: 1.05;
}

.condition {
  min-height: 42px;
  margin-top: 8px;
  overflow: hidden;
}

.card-actions {
  margin-top: 2px;
}

.card-actions-row {
  grid-template-columns: minmax(92px, 0.9fr) minmax(96px, 1fr);
}

.card-actions .btn {
  min-width: 0;
  white-space: nowrap;
}

.modal-card {
  width: min(420px, 100%);
  padding: 30px;
}

.modal-card h2 {
  margin-bottom: 8px;
  font-size: 26px;
}

.modal-copy {
  margin-bottom: 8px;
  font-size: 13px;
}

.modal-product {
  padding: 12px 14px;
  margin-bottom: 18px;
  color: #222;
  border: 1px solid #f1c7cb;
  border-radius: 8px;
  background: #fff5f6;
  font-size: 14px;
}

.lead-form {
  margin-top: 0;
}

.lead-form + .btn-whatsapp {
  margin-top: 10px;
}

@media (min-width: 1121px) {
  .product-grid:not(.product-grid-featured) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) and (min-width: 721px) {
  .product-grid:not(.product-grid-featured) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .product-carousel {
    margin-right: -14px;
    margin-left: -14px;
    padding-right: 14px;
    padding-left: 14px;
    scroll-padding-left: 14px;
  }

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

  .plan-media strong {
    max-width: calc(100% - 70px);
  }

  .price-block {
    grid-template-columns: auto auto 1fr;
  }

  .card-actions-row {
    grid-template-columns: 1fr;
  }

  .product-grid-featured .product-card {
    display: flex;
  }
}

@media (max-width: 980px) {
  .product-grid-featured .product-card {
    display: flex;
    flex-direction: column;
  }

  .combo-media {
    width: 100%;
    min-height: 260px;
    background-image: url("/img/card-combo-sky-super-movel.png");
    background-size: contain;
  }

  .product-detail {
    grid-template-columns: 1fr;
    padding: 34px 0;
  }

  .detail-media {
    position: static;
    min-height: 300px;
  }

  .detail-cover-media {
    min-height: auto;
  }

  .detail-card {
    padding: 24px;
  }

  .detail-card h1 {
    font-size: 34px;
  }

  .detail-actions {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .details-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .top-strip {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
    line-height: 1.25;
  }

  .nav-shell {
    min-height: 58px;
  }

  .brand img {
    width: 132px;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    padding: 30px 20px 32px;
  }

  .hero-copy h1 {
    max-width: 340px;
    margin-bottom: 14px;
    font-size: 25px;
    line-height: 1.02;
  }

  .hero-copy p {
    max-width: 330px;
    font-size: 13px;
    line-height: 1.42;
  }

  .hero-cta {
    min-width: 0;
    min-height: 46px;
    margin-top: 16px;
    padding: 0 28px;
    font-size: 12px;
  }

  .section {
    width: calc(100% - 32px);
    padding: 34px 0;
  }

  .intro {
    padding-top: 28px;
    padding-bottom: 14px;
  }

  .section-heading h1 {
    font-size: 24px;
    line-height: 1.16;
  }

  .section-heading p {
    font-size: 12px;
    line-height: 1.45;
  }

  .plan-tabs {
    width: calc(100% - 32px);
    padding: 0;
  }

  .plan-tabs button {
    min-width: 0;
    flex: 1 1 50%;
    min-height: 58px;
    padding: 0 10px;
    font-size: 13px;
  }

  .plan-tabs button::before {
    width: 18px;
    height: 18px;
    margin-right: 7px;
    font-size: 11px;
  }

  .inline-heading {
    gap: 12px;
    margin-bottom: 18px;
  }

  .inline-heading h2 {
    font-size: 27px;
    line-height: 1.08;
  }

  #combo {
    padding-top: 12px;
  }

  .combo-offer {
    padding-bottom: 26px;
  }

  .combo-offer .inline-heading {
    align-items: flex-start;
  }

  .combo-offer h2 {
    font-size: 25px;
    line-height: 1.12;
  }

  .product-grid-featured .combo-media {
    width: 100%;
    min-height: 168px;
    background-image: url("/img/card-combo-sky-super-movel.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .product-content {
    padding: 18px 20px 18px;
  }

  .product-content h3 {
    font-size: 17px;
    line-height: 1.22;
  }

  .plan-media {
    min-height: 126px;
  }

  .benefits li {
    font-size: 12.5px;
  }

  .price {
    font-size: 31px;
  }

  .condition {
    min-height: auto;
    margin-bottom: 18px;
  }

  .section-muted {
    padding-right: 16px;
    padding-left: 16px;
  }

  .cta-panel {
    padding: 26px 20px;
  }

  .legal-box,
  .faq-section {
    width: calc(100% - 32px);
    margin-bottom: 42px;
  }

  .legal-box {
    padding: 26px 20px;
  }

  .legal-box h2,
  .faq-section h2 {
    font-size: 24px;
    line-height: 1.12;
  }
}

/* Promo Banner */
.promo-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin: 40px auto;
  padding: 38px;
  border-radius: 8px;
  width: min(1180px, calc(100% - 32px));
}

.promo-banner-dark {
  background: #171717;
  color: var(--white);
  border: 1px solid #2a2a2a;
}

.promo-banner-light {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.04);
}

.promo-banner-content {
  flex: 1;
}

.promo-banner-content h2 {
  margin-bottom: 12px;
  font-weight: 800;
}

.promo-banner-dark h2 {
  color: var(--white);
}

.promo-banner-light h2 {
  color: var(--ink);
}

.promo-banner-content p {
  margin-bottom: 20px;
  font-size: 15px;
  max-width: 780px;
}

.promo-banner-dark p {
  color: #ccc;
}

.promo-banner-light p {
  color: var(--muted);
}

.promo-banner-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 16px;
}

.promo-banner-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 30px;
  margin-bottom: 14px;
  padding: 0 12px;
  color: #111;
  border-radius: 999px;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-banner-feature::before {
  content: "✓";
  color: var(--red);
  font-weight: 900;
}

.promo-banner-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  min-width: 200px;
}

.parabolica-banner-logo-wrapper {
  margin-bottom: 20px;
}

.parabolica-banner-logo {
  max-height: 48px;
  width: auto;
}

/* Adjustments for logo images on product pages */
.detail-image-media:not(.detail-cover-media) img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.detail-cover-media img {
  max-width: none;
  max-height: none;
  object-fit: cover;
}

/* Responsiveness for Banners */
@media (max-width: 980px) {
  .promo-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 28px 22px;
    gap: 24px;
    margin: 24px auto;
  }
  
  .promo-banner-cta {
    width: 100%;
  }
}

/* Mobile navigation and form usability */
input,
select,
textarea {
  font-size: 16px;
}

@media (max-width: 720px) {
  .nav-shell {
    gap: 10px;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 42px;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    z-index: 60;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    margin-left: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-shell.nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
    font-size: 14px;
    border-radius: 6px;
  }

  .nav-links a:hover {
    background: var(--soft);
  }

  .client-link,
  .nav-shell > .btn {
    display: none;
  }
}
