:root {
  --blue: #2563eb;
  --blue-2: #3b82f6;
  --deep-blue: #1e40af;
  --navy: #0f172a;
  --light-blue: #dbeafe;
  --soft-blue: #eff6ff;
  --bg: #ffffff;
  --bg-2: #f8fafc;
  --text: #0f172a;
  --muted: #475569;
  --border: #e2e8f0;
  --success: #16a34a;
  --star: #f59e0b;
  --warm: #f97316;
  --red: #dc2626;
  --shadow: 0 18px 50px rgba(37, 99, 235, .14);
  --font: Inter, Segoe UI, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 100vw;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
}

section {
  width: 100%;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
p,
li,
summary,
a,
span,
strong {
  overflow-wrap: break-word;
  word-break: break-word;
}

h1 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: clamp(2.15rem, 7vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(1.55rem, 4.8vw, 2.7rem);
  line-height: 1.16;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  margin: 0 0 16px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37, 99, 235, .22);
}

.btn--primary {
  color: #fff;
  background: var(--blue);
}

.btn--primary:hover {
  background: var(--deep-blue);
}

.btn--secondary {
  color: var(--deep-blue);
  background: var(--soft-blue);
  border-color: rgba(37, 99, 235, .18);
}

.btn--warm {
  color: #fff;
  background: linear-gradient(135deg, var(--warm), #ef4444);
}

.btn--small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: .9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(14px);
}

.promo-bar {
  width: 100%;
  padding: 8px 16px;
  background: var(--navy);
  color: #fff;
  font-size: .82rem;
  font-weight: 750;
  text-align: center;
}

.header__inner {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 850;
  white-space: nowrap;
}

.brand:hover,
.footer-brand:hover {
  text-decoration: none;
}

.brand img,
.footer-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
}

.brand strong {
  color: var(--blue);
}

.header__nav,
.header__inner > .btn {
  display: none;
}

.header__nav-list {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__nav a {
  color: var(--navy);
  font-size: .94rem;
  font-weight: 700;
}

.header__nav a:hover {
  color: var(--blue);
  text-decoration: none;
}

.header__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-2);
  cursor: pointer;
}

.header__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform .22s ease, opacity .22s ease;
}

body.menu-open .header__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .header__toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .header__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(15, 23, 42, .48);
}

.header__mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: min(330px, 88vw);
  height: 100dvh;
  padding: 22px;
  overflow-y: auto;
  background: #fff;
  box-shadow: -22px 0 60px rgba(15, 23, 42, .18);
}

.mobile-close {
  align-self: flex-end;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--navy);
  font-weight: 800;
  cursor: pointer;
}

.header__mobile-menu a:not(.btn) {
  display: block;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  font-weight: 750;
}

.header__mobile-menu .btn {
  margin-top: 16px;
}

.hero {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  padding: 60px 0 40px;
  background: linear-gradient(180deg, var(--soft-blue), #fff 72%);
}

.hero__grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
  width: 100%;
  max-width: 1180px;
}

.hero__copy {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}

.badge-row span,
.eyebrow,
.plan-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 6px 12px;
  border: 1px solid rgba(37, 99, 235, .16);
  border-radius: 999px;
  background: var(--light-blue);
  color: var(--deep-blue);
  font-size: .78rem;
  font-weight: 850;
}

.hero-text,
.sub-hero p,
.section-head p {
  color: var(--muted);
  font-size: 1rem;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 20px 0 14px;
}

.stat-row > div {
  min-height: 82px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(37, 99, 235, .08);
}

.stat-row strong {
  display: block;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.15;
}

.stat-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.35;
}

.value-pill {
  display: inline-block;
  max-width: 100%;
  margin: 0 0 16px;
  padding: 10px 14px;
  border: 1px solid rgba(37, 99, 235, .16);
  border-radius: 999px;
  background: #fff;
  color: var(--deep-blue);
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-actions .btn {
  width: 100%;
}

.offer-card {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: radial-gradient(circle at top right, rgba(249, 115, 22, .28), transparent 34%), linear-gradient(145deg, var(--navy), var(--deep-blue));
  color: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .3);
}

.offer-card h2 {
  color: #fff;
  font-size: clamp(1.6rem, 8vw, 2.6rem);
}

.offer-card p {
  color: rgba(255, 255, 255, .82);
}

.offer-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(249, 115, 22, .18);
  color: #fed7aa;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-price {
  color: #fff !important;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.offer-price span {
  font-size: .9rem;
  font-weight: 700;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
}

.countdown span {
  display: flex;
  min-height: 68px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .1);
}

.countdown b {
  font-size: 1.4rem;
}

.countdown small,
.offer-card > small {
  color: rgba(255, 255, 255, .76);
  font-weight: 700;
}

.sub-hero {
  padding: 52px 0 36px;
  background: linear-gradient(180deg, var(--soft-blue), #fff);
  text-align: center;
}

.sub-hero .container {
  max-width: 880px;
}

.section,
.media-section {
  padding: 48px 0;
}

.media-section.dark {
  background: var(--navy);
  color: #fff;
}

.media-section.dark h2,
.media-section.dark .section-head p {
  color: #fff;
}

.section-head {
  max-width: 780px;
  margin: 0 auto 24px;
  padding: 0 18px;
  text-align: center;
}

.section-head .eyebrow {
  margin-bottom: 10px;
}

.carousel {
  width: 100%;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 6px 0;
  animation: marquee 42s linear infinite;
}

.carousel:hover .carousel-track,
.review-carousel:hover .review-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.media-card {
  flex: 0 0 auto;
  width: clamp(150px, 45vw, 220px);
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(37, 99, 235, .08);
}

.media-card img {
  display: block;
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  background: var(--bg-2);
}

.carousel--icons .media-card img,
.carousel--preview .media-card img {
  aspect-ratio: 16 / 9;
}

.carousel--movies .media-card img {
  aspect-ratio: 2 / 3;
}

.carousel--sport .media-card img {
  aspect-ratio: 9 / 16;
}

.pricing-grid,
.multi-grid,
.faq-grid,
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}

.price-card,
.review-card,
.steps article,
details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.price-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: 0 22px 60px rgba(37, 99, 235, .2);
}

.price {
  margin: 4px 0;
  color: var(--navy);
  font-size: 2.2rem;
  font-weight: 950;
  line-height: 1.1;
}

.price span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.per-day {
  color: var(--muted);
  font-weight: 800;
}

.price-card ul {
  flex: 1;
  margin: 16px 0 20px;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  padding: 6px 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.35;
}

.check,
.x {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  font-size: .76rem;
  font-weight: 900;
  line-height: 22px;
  text-align: center;
}

.check {
  background: var(--success);
}

.x {
  background: var(--red);
}

.muted {
  opacity: .65;
}

.strike {
  text-decoration: line-through;
  text-decoration-color: rgba(71, 85, 105, .55);
}

.payment-strip {
  display: flex;
  justify-content: center;
  padding: 22px 18px 0;
}

.payment-strip img,
.payment-icons {
  max-width: 531px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  padding: 8px;
}

.multi-screen {
  background: var(--bg-2);
}

.review-carousel {
  width: 100%;
  overflow: hidden;
}

.review-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 8px 0;
  animation: marquee 56s linear infinite;
}

.review-card {
  flex: 0 0 auto;
  width: clamp(260px, 78vw, 340px);
  padding: 14px;
}

.review-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  object-fit: cover;
}

.review-card strong {
  display: block;
  margin-top: 10px;
  color: var(--star);
  letter-spacing: 0;
}

.review-card p {
  color: var(--muted);
  font-size: .92rem;
}

.verified {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 8px;
  padding: 4px 9px;
  border-radius: 999px;
  background: #dcfce7;
  color: #166534;
  font-size: .76rem;
  font-weight: 850;
}

.rating-summary {
  display: inline-flex;
  margin-top: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--light-blue);
  color: var(--deep-blue) !important;
  font-weight: 900;
}

details {
  padding: 0;
  overflow: hidden;
}

summary {
  padding: 16px;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

details p {
  padding: 0 16px 16px;
  color: var(--muted);
}

.steps article {
  padding: 20px;
}

.steps b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
}

.content-block {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 18px;
}

.content-block + .content-block {
  border-top: 1px solid var(--border);
}

.content-block p {
  color: var(--muted);
}

.cta-band {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  max-width: 1080px;
  margin: 42px auto;
  padding: 28px 18px;
  background: var(--navy);
  color: #fff;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, .8);
}

.site-footer {
  width: 100%;
  padding: 42px 0 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.site-footer h2 {
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 7px 0;
  color: var(--muted);
  font-weight: 700;
}

.site-footer p {
  color: var(--muted);
}

.footer-brand {
  margin-bottom: 12px !important;
  color: var(--navy) !important;
}

.soft-link {
  color: var(--blue) !important;
}

.fine-print {
  margin: 30px auto 0;
  padding: 0 18px;
  max-width: 1080px;
  color: var(--muted);
  font-size: .86rem;
}

.float-whatsapp {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--success);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(22, 163, 74, .34);
}

.float-whatsapp:hover {
  text-decoration: none;
}

.order-toast {
  position: fixed;
  left: 12px;
  bottom: 78px;
  z-index: 44;
  width: min(300px, calc(100vw - 112px));
  padding: 12px 38px 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(15, 23, 42, .15);
  font-size: .84rem;
}

.order-toast strong,
.order-toast span {
  display: block;
}

.order-toast span {
  color: var(--muted);
}

.order-toast button {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--bg-2);
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

@media (min-width: 390px) {
  .hero-actions .btn {
    width: auto;
  }

  .stat-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 720px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-card--wide {
    grid-column: 1 / -1;
  }

  .multi-grid,
  .steps,
  .faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .cta-band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
    border-radius: 8px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 24px;
  }

  .header__toggle {
    display: none;
  }

  .header__nav {
    display: block;
    margin-left: auto;
  }

  .header__inner > .btn {
    display: inline-flex;
  }

  .hero {
    padding: 74px 0 58px;
  }

  .hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(360px, .9fr);
    align-items: center;
    gap: 44px;
  }

  .hero__copy {
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .hero__copy .badge-row,
  .hero__copy .hero-actions {
    justify-content: flex-start;
  }

  .stat-row {
    max-width: 680px;
  }

  .offer-card {
    margin: 0;
  }

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

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

@media (min-width: 1440px) {
  .hero__grid {
    max-width: 1240px;
  }
}

@media (max-width: 370px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 50px 0 34px;
  }

  h1 {
    font-size: 2rem;
  }

  .offer-card {
    padding: 18px;
  }

  .countdown {
    gap: 6px;
  }

  .countdown span {
    min-height: 58px;
  }

  .order-toast {
    width: calc(100vw - 104px);
    font-size: .78rem;
  }
}

@media (max-width: 480px) {
  .float-whatsapp,
  .order-toast {
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease;
  }

  body.mobile-floats-ready .float-whatsapp,
  body.mobile-floats-ready .order-toast {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
