:root {
  --primary: #2455a4;
  --primary-deep: #0f2b5b;
  --primary-soft: #5f88cf;
  --brand-blue-vivid: #0c2f82;
  --brand-blue-night: #041238;
  --accent: #f5861f;
  --accent-soft: #ffdcb8;
  --accent-deep: #cb6710;
  --accent-yellow: #f3bc1a;
  --ink: #1d2433;
  --ink-soft: #3a4661;
  --paper: #f5f8ff;
  --surface: #ffffff;
  --surface-soft: #f7faff;
  --white: #ffffff;
  --radius: 20px;
  --shadow: 0 25px 60px rgba(15, 43, 91, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  color: var(--ink);
  background: #041236;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  min-width: 100%;
}

main,
.site-header,
.hero,
.why-choose {
  width: 100vw;
  max-width: 100vw;
  min-width: 0;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  margin-top: 0;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% -14%, rgba(245, 134, 31, 0.95) 0 170px, transparent 171px),
    radial-gradient(circle at 54% -16%, rgba(255, 192, 120, 0.48) 0 215px, transparent 216px),
    radial-gradient(circle at -8% -16%, transparent 180px, rgba(243, 188, 26, 0.97) 181px 260px, transparent 261px),
    radial-gradient(ellipse at 104% 72%, rgba(201, 128, 35, 0.72) 0 16%, transparent 17%),
    radial-gradient(ellipse at 98% 86%, rgba(181, 116, 31, 0.62) 0 11%, transparent 12%),
    radial-gradient(120% 90% at 54% 74%, transparent 52%, rgba(92, 145, 255, 0.2) 54%, transparent 57%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0%, transparent 28%),
    repeating-linear-gradient(145deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 68px),
    radial-gradient(circle at 50% 56%, rgba(8, 28, 73, 0.5), transparent 60%),
    linear-gradient(162deg, var(--brand-blue-vivid) 0%, #0a2c79 26%, var(--brand-blue-night) 78%, #020b27 100%);
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  min-height: 100%;
}

.bg-layer::before,
.bg-layer::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.bg-layer::before {
  width: 2px;
  height: 2px;
  left: 6%;
  top: 12%;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  opacity: 1;
  box-shadow:
    80px 40px 0 rgba(255, 255, 255, 0.16),
    190px 22px 0 rgba(255, 255, 255, 0.14),
    320px 84px 0 rgba(255, 255, 255, 0.12),
    460px 36px 0 rgba(255, 255, 255, 0.1),
    620px 100px 0 rgba(255, 255, 255, 0.12),
    220px 200px 0 rgba(243, 188, 26, 0.22),
    540px 250px 0 rgba(245, 134, 31, 0.2),
    140px 320px 0 rgba(255, 255, 255, 0.14),
    420px 360px 0 rgba(243, 188, 26, 0.18),
    700px 420px 0 rgba(245, 134, 31, 0.16);
}

.bg-layer::after {
  width: 64px;
  height: 16px;
  right: 20%;
  top: 44%;
  border-radius: 999px;
  border: 2px solid rgba(245, 134, 31, 0.74);
  background: transparent;
  box-shadow:
    -210px 86px 0 -6px rgba(243, 188, 26, 0.54),
    -120px -120px 0 -6px rgba(245, 134, 31, 0.46),
    58px 156px 0 -7px rgba(243, 188, 26, 0.5),
    -18px 32px 0 -8px rgba(245, 134, 31, 0.56);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(248, 250, 255, 0.92);
  border-bottom: 1px solid rgba(36, 85, 164, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.brand img {
  height: 52px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--primary-deep);
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--accent-deep);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(36, 85, 164, 0.12);
  color: var(--primary-deep);
  box-shadow: 0 8px 16px rgba(15, 43, 91, 0.06);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(15, 43, 91, 0.1);
}

.social-btn.facebook:hover {
  color: #1877f2;
}

.social-btn.instagram:hover {
  color: #e1306c;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.menu-toggle span + span {
  margin-top: 4px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
  padding: 0.84rem 1.35rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  color: var(--white);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary) 62%, var(--accent-deep));
  box-shadow: 0 10px 22px rgba(36, 85, 164, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(36, 85, 164, 0.26);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-deep);
  border: 1px solid rgba(36, 85, 164, 0.24);
  box-shadow: none;
}

.btn-secondary:hover {
  box-shadow: 0 10px 22px rgba(36, 85, 164, 0.14);
}

.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  display: grid;
  align-items: center;
  padding: 2rem 0;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1rem;
  align-items: center;
}

.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-orange-shape {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.hero-orange-shape-one {
  width: 210px;
  height: 210px;
  left: -70px;
  top: 90px;
  background: rgba(245, 134, 31, 0.22);
}

.hero-orange-shape-two {
  width: 120px;
  height: 120px;
  left: 150px;
  top: 72px;
  background: rgba(243, 188, 26, 0.3);
}

.hero-orange-shape-three {
  width: 320px;
  height: 320px;
  right: -120px;
  bottom: -80px;
  background: rgba(245, 134, 31, 0.18);
}

.hero-orange-ring {
  position: absolute;
  display: block;
  border: 3px solid rgba(245, 134, 31, 0.72);
  border-radius: 50%;
}

.hero-orange-ring-one {
  width: 170px;
  height: 170px;
  left: 8vw;
  top: 12%;
}

.hero-orange-ring-two {
  width: 84px;
  height: 84px;
  left: 28vw;
  bottom: 16%;
  border-width: 5px;
}

.hero-orange-ring-three {
  width: 190px;
  height: 190px;
  right: 18vw;
  bottom: 8%;
  border-color: rgba(243, 188, 26, 0.7);
}

.hero-orange-dot {
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f5861f;
  box-shadow: 34px 22px 0 rgba(243, 188, 26, 0.85), 70px -12px 0 rgba(245, 134, 31, 0.65);
}

.hero-orange-dot-one {
  left: 12vw;
  bottom: 24%;
}

.hero-orange-dot-two {
  left: 35vw;
  top: 18%;
  transform: scale(0.65);
}

.hero-orange-dot-three {
  right: 5vw;
  bottom: 26%;
  transform: scale(0.8);
}

.hero-wifi {
  position: absolute;
  display: block;
  width: 190px;
  height: auto;
  opacity: 0.85;
  filter: brightness(0) saturate(100%) invert(55%) sepia(96%) saturate(1800%) hue-rotate(355deg) brightness(101%) contrast(101%);
}

.hero-wifi-one {
  left: 3vw;
  top: 25%;
  transform: rotate(-18deg) scale(1.1);
}

.hero-wifi-two {
  left: 25vw;
  bottom: 10%;
  transform: rotate(18deg) scale(0.78);
}

.hero-wifi-three {
  right: 4vw;
  top: 12%;
  transform: rotate(15deg) scale(1.25);
}

.chip,
.section-tag {
  display: inline-block;
  margin: 0 0 1rem;
  border-radius: 999px;
  padding: 0.36rem 0.82rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.chip {
  background: linear-gradient(90deg, rgba(5, 21, 60, 0.82), rgba(12, 45, 114, 0.7));
  color: #f7fbff;
  border: 1px solid rgba(255, 213, 120, 0.7);
  box-shadow: 0 10px 20px rgba(2, 12, 35, 0.3);
}

.section-tag {
  background: linear-gradient(90deg, rgba(245, 134, 31, 0.2), rgba(36, 85, 164, 0.14));
  color: #75420f;
  border: 1px solid rgba(245, 134, 31, 0.36);
}

.hero h1 {
  font-size: clamp(2.1rem, 6vw, 3.7rem);
  line-height: 1.06;
  margin-bottom: 1rem;
  color: #f7fbff;
  text-shadow: 0 10px 24px rgba(5, 16, 45, 0.35);
}

.hero-kicker {
  margin: 0;
  color: #f5861f;
  font-size: clamp(2.4rem, 6vw, 6rem);
  font-weight: 900;
  font-style: italic;
  line-height: 0.9;
  -webkit-text-stroke: 4px #ffffff;
  paint-order: stroke fill;
  text-shadow: 0 4px 0 rgba(5, 16, 45, 0.24), 0 10px 30px rgba(5, 16, 45, 0.28);
}

.hero-content h1 {
  position: relative;
  z-index: 5;
  margin: 0;
  color: #f7fbff;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 0.84;
  -webkit-text-stroke: 6px var(--accent);
  paint-order: stroke fill;
  text-shadow: 0 5px 0 rgba(5, 16, 45, 0.3), 0 12px 32px rgba(5, 16, 45, 0.4);
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 5;
  transform: translateX(-4rem);
}

.hero-content .chip,
.hero-content .lead,
.hero-content .hero-actions {
  display: none;
}

.lead {
  font-size: 1.1rem;
  max-width: 58ch;
  margin-bottom: 1.8rem;
  color: #dbe8ff;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-visual {
  display: grid;
  gap: 0.8rem;
  justify-items: center;
  align-self: center;
  padding-top: 0;
  position: relative;
  z-index: 3;
}

.hero-dog-card {
  width: min(100%, 400px);
  padding: 0.85rem 0.85rem 0.5rem;
  position: relative;
  overflow: visible;
}

.dog-decoration {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  overflow: visible;
  z-index: 0;
}

.dog-decoration-feliz {
  min-height: 350px;
}

.dog-decoration-think {
  width: min(100%, 620px);
  margin-left: 6.8rem;
  transform: translate(9rem, 0.4rem) scale(1.22);
  transform-origin: 52% 100%;
  align-self: end;
}

.dog-circle {
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.dog-circle-main {
  width: 330px;
  height: 330px;
  background: rgba(245, 134, 31, 0.34);
}

.dog-circle-accent {
  width: 245px;
  height: 245px;
  transform: translate(48px, 38px);
  background: rgba(243, 188, 26, 0.3);
}

.dog-circle-soft {
  width: 185px;
  height: 185px;
  transform: translate(-58px, 52px);
  background: rgba(232, 116, 26, 0.24);
}

.dog-decoration-feliz .dog-circle-main {
  width: 270px;
  height: 270px;
  transform: translate(-28px, -30px);
  background: #f5861f;
}

.dog-decoration-feliz .dog-circle-accent {
  width: 220px;
  height: 220px;
  transform: translate(58px, 42px);
  background: #f3bc1a;
}

.dog-decoration-feliz .dog-circle-soft {
  width: 165px;
  height: 165px;
  transform: translate(-82px, 62px);
  background: #d97818;
}

.dog-decoration-think .dog-circle-main {
  width: 225px;
  height: 225px;
  transform: translate(-20px, 6px);
  background: #e8751a;
}

.dog-decoration-think .dog-circle-accent {
  width: 178px;
  height: 178px;
  transform: translate(54px, 25px);
  background: #f6a542;
}

.dog-decoration-think .dog-circle-soft {
  width: 142px;
  height: 142px;
  transform: translate(-72px, 38px);
  background: #c96817;
}

.hero-dog-feliz {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-dog-feliz-card {
  width: min(100%, 720px);
  padding: 0;
}

.hero-dog-feliz-card .dog-decoration-feliz {
  min-height: min(72vh, 700px);
  transform: scale(1.4);
}

.hero-dog-feliz-card .dog-circle-main {
  width: 420px;
  height: 420px;
}

.hero-dog-feliz-card .dog-circle-accent {
  width: 330px;
  height: 330px;
}

.hero-dog-feliz-card .dog-circle-soft {
  width: 250px;
  height: 250px;
}

.hero-visual-note {
  width: min(100%, 300px);
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(245, 134, 31, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f7fbff;
  box-shadow: 0 12px 22px rgba(4, 18, 56, 0.14);
}

.hero-note-kicker {
  margin: 0 0 0.25rem;
  color: #ffdcb8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  font-weight: 800;
}

.why-choose {
  min-height: 100svh;
  padding: 0;
  background: #ffffff;
}

.why-choose .container {
  width: 100%;
  max-width: none;
  padding: 0;
}

.why-choose-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(2rem, 5vw, 7rem);
  align-items: center;
  min-height: 100svh;
  padding: clamp(2rem, 5vw, 5rem) clamp(2rem, 7vw, 8rem);
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.why-choose-shell::before,
.why-choose-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.why-choose-shell::before {
  width: 320px;
  height: 320px;
  left: -175px;
  top: 54%;
  border-radius: 50%;
  background: rgba(245, 134, 31, 0.22);
  box-shadow: 0 0 0 28px rgba(245, 134, 31, 0.11);
}

.why-choose-shell::after {
  width: 250px;
  height: 250px;
  right: -90px;
  top: 58%;
  border: 24px solid rgba(245, 134, 31, 0.2);
  border-radius: 50%;
}

.why-choose-shell .why-choose-visual::before,
.why-choose-shell .why-choose-visual::after,
.why-choose-shell .why-choose-screen::before,
.why-choose-shell .why-choose-screen::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
}

.why-choose-shell .why-choose-visual::before {
  display: none;
}

.why-choose-shell .why-choose-visual::after {
  display: none;
}

.why-choose-shell .why-choose-screen::before {
  display: none;
}

.why-choose-shell .why-choose-screen::after {
  display: none;
}

.why-choose-visual {
  position: relative;
  z-index: 0;
  display: grid;
  justify-items: center;
  align-items: end;
  gap: 0;
  justify-self: stretch;
  width: 100%;
  margin-left: 0;
  margin-top: 0;
  overflow: visible;
}

.why-choose-visual .dog-decoration-think {
  width: min(100%, 680px);
  margin: 0 auto;
  align-self: center;
  transform: scale(1.32);
}

.thought-shell {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 0.7rem;
  width: min(100%, 360px);
  max-width: 360px;
  margin-left: -2.2rem;
  position: relative;
  z-index: 1;
}

.thought-cloud {
  position: relative;
  display: grid;
  align-items: center;
  width: 100%;
  min-width: 0;
  height: clamp(155px, 16vw, 210px);
  overflow: visible;
  padding: 0.8rem 1.1rem 0.85rem;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #f4f8ff);
  border: 1px solid rgba(36, 85, 164, 0.16);
  box-shadow: 0 20px 40px rgba(4, 18, 56, 0.2);
  transform: translate(-1.2rem, 1.4rem);
}

.thought-cloud::before {
  content: "";
  position: absolute;
  left: 1.6rem;
  bottom: -1.15rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 1.15rem 0.8rem 0 #ffffff, 2.25rem 1.5rem 0 0.62rem #ffffff;
}

.thought-cloud::after {
  content: "";
  position: absolute;
  left: 4.4rem;
  bottom: -0.9rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: transparent;
}

.why-choose-visual .reason-btn {
  align-self: center;
  justify-self: center;
  flex: 0 0 48px;
  padding: 0;
  transform: translateY(1.4rem);
}

.why-choose-visual .reason-btn:hover {
  transform: translateY(calc(1.4rem - 2px)) scale(1.02);
}

.thought-cloud span {
  display: block;
  color: #12336b;
}

.thought-cloud .why-reason {
  position: absolute;
  inset: 0.8rem 1.1rem 0.85rem;
  display: grid;
  align-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.45rem);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.thought-cloud .why-reason.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.thought-cloud .why-reason h2 {
  margin-bottom: 0.25rem;
  color: #0f2b5b;
  font-size: clamp(0.86rem, 1.45vw, 1.02rem);
  line-height: 1.04;
  text-align: center;
}

.thought-cloud .why-reason p {
  margin: 0;
  color: #355074;
  font-size: clamp(0.64rem, 0.9vw, 0.74rem);
  line-height: 1.18;
  text-align: center;
}

.hero-dog-think {
  width: min(100%, 620px);
  align-self: end;
  position: relative;
  z-index: 1;
}

.why-choose-screen {
  position: relative;
  z-index: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  min-height: auto;
  display: grid;
  align-content: start;
  gap: 1.2rem;
  margin-left: 0;
  padding-top: 0;
}

.why-choose-head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
  width: min(100%, 900px);
  margin-inline: auto;
}

.why-choose-head::before,
.why-choose-head::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.why-choose-head::before {
  width: 24px;
  height: 24px;
  right: 11%;
  top: 18%;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 56px 48px 0 -7px rgba(245, 134, 31, 0.72);
}

.why-choose-head::after {
  width: 112px;
  height: 112px;
  right: 1%;
  top: 4%;
  border: 14px solid rgba(245, 134, 31, 0.24);
  border-radius: 50%;
}

.why-choose-title {
  margin: 0;
  color: #0f2b5b;
  max-width: 760px;
  width: 100%;
  font-size: clamp(2.15rem, 3.7vw, 3.7rem);
  line-height: 1.05;
  text-align: left;
  position: relative;
  z-index: 1;
  text-shadow: none;
}

.why-choose-subtitle {
  margin: 0;
  color: #dce9ff;
  font-size: 1rem;
  line-height: 1.45;
  max-width: 30ch;
}

.why-highlights {
  display: grid;
  gap: 0.7rem;
  width: min(100%, 430px);
  margin-top: 0.4rem;
  margin-left: 0;
}

.why-highlight-card {
  display: grid;
  gap: 0.12rem;
  padding: 0.72rem 1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, #f4f8ff);
  border: 1px solid rgba(36, 85, 164, 0.14);
  box-shadow: 0 10px 22px rgba(4, 18, 56, 0.14);
}

.why-highlight-card strong {
  color: var(--primary-deep);
  font-size: 1.22rem;
}

.why-highlight-card span {
  color: #355074;
  font-size: 0.9rem;
  line-height: 1.15;
}

.why-reasons-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 1rem;
  width: min(100%, 900px);
  min-height: 390px;
  padding: 1.5rem;
  border-radius: 24px;
  background: #eef4fc;
  border: 1px solid rgba(36, 85, 164, 0.14);
  box-shadow: 0 18px 38px rgba(4, 18, 56, 0.1);
}

.why-reasons-pages {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  min-width: 0;
  min-height: 320px;
  position: relative;
}

.why-reasons-page {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(1rem);
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.why-reasons-page.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.why-reasons-card .why-highlight-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.8rem;
  padding: 2rem;
  border-radius: 18px;
  background: #ffffff;
  border: 2px solid rgba(245, 134, 31, 0.62);
  box-shadow: 0 12px 25px rgba(4, 18, 56, 0.1), 0 0 0 3px rgba(245, 134, 31, 0.06);
}

.why-reasons-card .why-highlight-card strong {
  color: #0f2b5b;
  font-size: clamp(1.4rem, 1.9vw, 1.8rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
}

.why-reasons-card .why-highlight-card span {
  margin: 0;
  color: #355074;
  font-size: clamp(1.08rem, 1.22vw, 1.22rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.4;
}

.why-reasons-page .why-highlight-card {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 0;
  border-radius: 22px;
  padding: clamp(2rem, 4vw, 4rem);
  box-shadow: 0 18px 30px rgba(4, 18, 56, 0.2);
}

.why-reasons-page .why-highlight-card::before,
.why-reasons-page .why-highlight-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.why-reasons-page .why-highlight-card::before {
  width: 230px;
  height: 230px;
  right: -80px;
  top: -95px;
  border: 24px solid rgba(255, 255, 255, 0.2);
}

.why-reasons-page .why-highlight-card::after {
  width: 150px;
  height: 150px;
  left: -65px;
  bottom: -72px;
  background: rgba(255, 255, 255, 0.14);
}

.why-reasons-page:nth-child(odd) .why-highlight-card {
  background: linear-gradient(135deg, #123b91, #0b245c);
}

.why-reasons-page:nth-child(even) .why-highlight-card {
  background: linear-gradient(135deg, #f5861f, #cb5e0e);
}

.why-reasons-page .why-highlight-card strong,
.why-reasons-page .why-highlight-card span {
  position: relative;
  z-index: 1;
  color: #ffffff;
  width: min(100%, 22ch);
  max-width: 22ch;
}

.why-reasons-page .why-highlight-card strong {
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: 1.02;
  text-shadow: 0 4px 12px rgba(4, 18, 56, 0.22);
}

.why-reasons-page .why-highlight-card span {
  font-size: clamp(1.15rem, 1.8vw, 1.65rem);
  line-height: 1.28;
}

.why-reasons-card .reason-btn {
  z-index: 2;
  width: 48px;
  height: 48px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
}

.why-reasons-card .reason-btn.prev {
  grid-column: 1;
  grid-row: 1;
}

.why-reasons-card .reason-btn.next {
  grid-column: 3;
  grid-row: 1;
}

.why-choose-screen .carousel-btn {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(36, 85, 164, 0.2);
  color: var(--primary-deep);
  box-shadow: 0 12px 24px rgba(4, 18, 56, 0.12);
  font-size: 1.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.why-choose-screen .carousel-btn:hover {
  background: #ffffff;
}

.why-reason h2 {
  margin-bottom: 0.6rem;
  color: var(--primary-deep);
  font-size: clamp(1.2rem, 2.3vw, 1.55rem);
}

.why-reason p {
  margin: 0;
  color: #355074;
  font-size: 1rem;
  line-height: 1.6;
}

.hero-dog {
  width: min(100%, 300px);
  flex-shrink: 0;
  justify-self: center;
}

.why-choose-visual .hero-dog-think {
  width: min(100%, 560px);
  max-width: 560px;
}

.why-choose-visual .dog-decoration-think {
  width: min(100%, 680px);
  transform: scale(1.12);
}

.why-choose-visual .dog-decoration-think .dog-circle-main {
  width: 410px;
  height: 410px;
}

.why-choose-visual .dog-decoration-think .dog-circle-accent {
  width: 320px;
  height: 320px;
}

.why-choose-visual .dog-decoration-think .dog-circle-soft {
  width: 250px;
  height: 250px;
}

/* --- AJUSTE EXCLUSIVO PARA CELULARES (Até 480px) --- */
@media (max-width: 480px) {
  /* Diminui a escala do cachorro para não vazar nas bordas */
  .why-choose-visual .dog-decoration-think {
    transform: scale(0.85); 
  }

  /* Deixa os círculos bem mais compactos na tela vertical */
  .why-choose-visual .dog-decoration-think .dog-circle-main {
    width: 280px;
    height: 280px;
  }

  .why-choose-visual .dog-decoration-think .dog-circle-accent {
    width: 210px;
    height: 210px;
  }

  .why-choose-visual .dog-decoration-think .dog-circle-soft {
    width: 160px;
    height: 160px;
  }
}

.plans,
.pre-register,
.apps,
.coverage,
.company {
  padding: 3.4rem 0;
  scroll-margin-top: 92px;
}

.plans .container {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.plans .container,
.pre-register .container,
.apps .container,
.coverage .container,
.company .container {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 255, 0.9));
  border: 1px solid rgba(141, 177, 245, 0.28);
  border-radius: 26px;
  padding: clamp(1.1rem, 1.6vw, 1.8rem);
  box-shadow: 0 18px 34px rgba(4, 19, 55, 0.2);
}

.plans-head {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.plans .container {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(135deg, #d96b0d, #f5861f 58%, #f8a43a);
  border: 0;
  border-radius: 30px;
  padding: clamp(1.4rem, 3vw, 3.4rem);
  box-shadow: 0 22px 48px rgba(116, 54, 4, 0.24);
}

.plans .container::before,
.plans .container::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.plans .container::before {
  width: 360px;
  height: 360px;
  left: -170px;
  bottom: -150px;
  border: 24px solid rgba(255, 255, 255, 0.42);
}

.plans .container::after {
  width: 240px;
  height: 240px;
  right: -90px;
  top: -120px;
  background: rgba(255, 255, 255, 0.18);
}

.plans-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 0.98;
  text-transform: uppercase;
  -webkit-text-stroke: 4px var(--primary-deep);
  paint-order: stroke fill;
  text-shadow: 0 6px 0 var(--primary-deep), 0 12px 20px rgba(4, 18, 56, 0.22);
}

.plans-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  margin-top: 1.2rem;
}

.plans-stage {
  width: 100%;
  border-radius: 30px;
  padding: 1rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.plans-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
  max-width: 100%;
}

.plans-dog-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: end center;
}

.plans-dog {
  position: relative;
  z-index: 1;
  width: min(100%, 540px);
  max-height: 620px;
  object-fit: contain;
  object-position: bottom center;
  transform: scale(1.3);
  transform-origin: center bottom;
}

.plans-dog-circles {
  position: absolute;
  inset: 5% 4% 4%;
}

.plans-dog-circle {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: #ffffff;
}

.plans-dog-circle-main {
  width: min(100%, 480px);
  aspect-ratio: 1;
  right: 4%;
  top: 7%;
  opacity: 0.94;
}

.plans-dog-circle-accent {
  width: min(100%, 340px);
  aspect-ratio: 1;
  left: 2%;
  bottom: 4%;
  opacity: 0.7;
}

.plans-savings {
  margin: 1.4rem auto 0;
  width: fit-content;
  max-width: 100%;
  padding: 0.8rem 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  color: #ffffff;
  font-size: clamp(0.95rem, 1.5vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.plans-savings strong {
  color: #fff6bb;
}

.plans-viewport {
  overflow: hidden;
  width: 100%;
  padding-block: 0.8rem;
  touch-action: pan-y;
  cursor: grab;
}

.plans-track {
  display: flex;
  gap: 1rem;
  will-change: transform;
}

.plans-viewport.dragging {
  cursor: grabbing;
}

.plans-track .plan-card {
  flex: 0 0 100%;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(36, 85, 164, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, #f2f7ff 100%);
  color: var(--primary-deep);
  font-size: 1.85rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(15, 43, 91, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.carousel-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 24px rgba(15, 43, 91, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #e7f1ff 100%);
}

.carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.plans-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.plans-dots button,
.apps-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: rgba(36, 85, 164, 0.3);
}

.plans-dots button.active,
.apps-dots button.active {
  background: var(--accent);
}

.plan-card {
  background: var(--white);
  border-radius: 24px;
  border: 2px solid rgba(29, 86, 177, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.4rem;
  min-height: 420px;
  width: min(100%, 420px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.9),
    0 12px 26px rgba(18, 50, 103, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.plan-card h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  -webkit-text-stroke: 1.5px currentColor;
  paint-order: stroke fill;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(18, 50, 103, 0.12);
}

.plan-card[data-theme="white"] {
  background: linear-gradient(145deg, #ffffff, #f6f9ff);
  color: var(--ink);
  border-color: rgba(36, 85, 164, 0.18);
}

.plan-card[data-theme="white"] h3 {
  color: var(--primary-deep);
  -webkit-text-stroke-color: var(--accent);
}

.plan-card[data-theme="blue"] {
  background: linear-gradient(145deg, #204f99, #3376db);
  color: var(--white);
  border-color: rgba(255, 220, 184, 0.65);
}

.plan-card[data-theme="blue"] h3,
.plan-card[data-theme="orange"] h3 {
  -webkit-text-stroke-color: var(--primary-deep);
}

.plan-card[data-theme="orange"] {
  background: linear-gradient(145deg, #c95c09, #f58a24);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.plan-card[data-theme="gold"] {
  background: linear-gradient(145deg, #c07d00, #f6b61b);
  color: #2f2200;
  border-color: rgba(255, 255, 255, 0.48);
}

.plan-card[data-theme="gold"] h3 {
  -webkit-text-stroke-color: #ffffff;
}

.plan-card.featured {
  transform: translateY(-6px);
}

.plan-card.featured .plan-discount {
  color: #fff8ec;
  background: rgba(255, 220, 184, 0.24);
  border-color: rgba(255, 220, 184, 0.62);
}

.featured-tag {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.price {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.15rem, 3.2vw, 3rem);
  font-weight: 800;
  margin: 0.5rem 0 1rem;
}

.price span {
  font-size: 1.05rem;
  font-weight: 700;
  opacity: 0.85;
}

.plan-discount {
  margin: -0.2rem 0 1rem;
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #8a460f;
  background: rgba(245, 134, 31, 0.18);
  border: 1px solid rgba(245, 134, 31, 0.32);
}

.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.plan-sign-btn {
  width: 100%;
  margin-top: 1rem;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  font-size: 1.05rem;
  font-weight: 800;
}

.plan-card .plan-sign-btn {
  background: linear-gradient(135deg, var(--primary-deep), var(--primary) 60%, var(--accent-deep));
  color: var(--white);
  box-shadow: none;
}

.plan-card[data-theme="white"] .plan-sign-btn {
  background: linear-gradient(135deg, #2455a4, #3771c4);
}

.plan-card[data-theme="gold"] .plan-sign-btn {
  background: linear-gradient(135deg, #8b5600, #c98900);
  color: #fff8ec;
}

.plan-card.featured .plan-sign-btn:hover {
  box-shadow: 0 10px 22px rgba(255, 255, 255, 0.22);
}

.plan-card ul li::before {
  content: "• ";
  color: var(--accent);
  font-weight: 800;
}

.plan-card.featured ul li::before {
  color: var(--accent-soft);
}

.plan-note {
  margin: 1.1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.pre-register-lead {
  margin: 0.4rem 0 0;
  color: var(--ink-soft);
}

.pre-register-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  align-items: start;
}

.pre-register-card,
.pre-register-info {
  background: var(--white);
  border: 1px solid rgba(36, 85, 164, 0.12);
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: 0 10px 22px rgba(15, 43, 91, 0.06);
}

.pre-register-info h3 {
  margin-bottom: 0.7rem;
}

.pre-register-info p {
  margin: 0.3rem 0;
  color: var(--ink-soft);
}

.pre-register-info strong {
  color: var(--primary-deep);
}

.customer-type-switch {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1rem;
  background: #edf4ff;
  border: 1px solid rgba(36, 85, 164, 0.2);
  border-radius: 14px;
  padding: 0.35rem;
}

.switch-option {
  position: relative;
  border-radius: 10px;
  padding: 0.58rem 0.8rem;
  font-weight: 700;
  color: var(--primary-deep);
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.switch-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.switch-option.active {
  background: linear-gradient(125deg, var(--primary), var(--primary-deep));
  color: var(--white);
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.form-grid + .form-grid {
  margin-top: 0.9rem;
}

.form-grid.two-columns {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.registration-fields {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.registration-fields.is-visible {
  opacity: 1;
  max-height: 420px;
}

.pre-register-card label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  color: #1d335f;
}

.pre-register-card input,
.pre-register-card select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(36, 85, 164, 0.22);
  background: #fafdff;
  padding: 0.68rem 0.75rem;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pre-register-card input:focus,
.pre-register-card select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(36, 85, 164, 0.14);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.form-status {
  margin: 0;
  color: #235312;
  font-weight: 600;
}

.coverage-single {
  margin-top: 1.4rem;
  background: linear-gradient(140deg, #ffffff, #f6f9ff);
  border: 1px solid rgba(36, 85, 164, 0.1);
  border-radius: 22px;
  padding: 1.3rem 1.4rem;
  box-shadow: 0 10px 22px rgba(15, 43, 91, 0.05);
}

.coverage-location {
  margin: 0 0 0.4rem;
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-deep);
}

.coverage-detail {
  margin: 0;
  color: var(--ink-soft);
}

.apps .container {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #061b45;
  border: 0;
  border-radius: 30px;
  padding: clamp(1.4rem, 3vw, 3.4rem);
  box-shadow: 0 22px 48px rgba(4, 18, 56, 0.26);
}

.apps .container::before,
.apps .container::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.apps .container::before {
  width: 310px;
  height: 310px;
  right: -140px;
  top: -155px;
  border: 22px solid rgba(245, 134, 31, 0.8);
}

.apps .container::after {
  width: 210px;
  height: 210px;
  left: -95px;
  bottom: -120px;
  background: rgba(255, 255, 255, 0.12);
}

.apps-heading {
  max-width: 740px;
}

.apps-heading .section-tag {
  color: #ffdcb8;
}

.apps-heading h2 {
  max-width: 720px;
  margin: 0.35rem 0 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 5vw, 5.2rem);
  line-height: 0.94;
  text-transform: uppercase;
  -webkit-text-stroke: 3px var(--accent);
  paint-order: stroke fill;
  text-shadow: 0 6px 0 #041238, 0 12px 22px rgba(0, 0, 0, 0.25);
}

.apps-lead {
  max-width: 560px;
  margin: 1rem 0 0;
  color: #dce9ff;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.apps-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 2rem);
  margin-top: clamp(1.6rem, 3vw, 2.6rem);
}

.app-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(1.3rem, 2.4vw, 2.2rem);
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 26px;
  text-align: left;
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.app-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -58px;
  bottom: -70px;
  border: 20px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.app-card-btn {
  width: 100%;
  cursor: pointer;
  appearance: none;
  font: inherit;
}

.app-card-btn:hover,
.app-card-btn:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.28);
}

.app-card-btn:focus-visible {
  outline: 3px solid #fff6bb;
  outline-offset: 4px;
}

.app-card.tv {
  background: linear-gradient(145deg, #f5861f, #c8580a);
}

.app-card.client {
  background: linear-gradient(145deg, #2f6dcc, #102f78);
}

.app-card-index,
.app-card-kicker {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-card-index {
  color: rgba(255, 255, 255, 0.74);
}

.app-card-icon-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  width: 92px;
  height: 92px;
  margin: 1.8rem 0 1.4rem;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(4, 18, 56, 0.22);
}

.app-icon {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.app-card-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.5rem;
}

.app-card-kicker {
  color: #fff6bb;
}

.app-card-title {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 0.98;
}

.app-card-description {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.app-card-action {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: auto;
  width: fit-content;
  min-width: 174px;
  padding: 0.72rem 0.85rem 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary-deep);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(4, 18, 56, 0.16);
}

.app-card-action span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font-size: 1.2rem;
}

.app-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(4, 18, 56, 0.66);
  backdrop-filter: blur(10px);
}

.app-overlay[hidden] {
  display: none;
}

.app-overlay-panel {
  position: relative;
  width: min(620px, 100%);
  border-radius: 24px;
  padding: 1.2rem;
  background: linear-gradient(145deg, #ffffff, #f3f7ff);
  border: 1px solid rgba(36, 85, 164, 0.18);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.app-overlay-close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(36, 85, 164, 0.1);
  color: var(--primary-deep);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
}

.app-overlay-header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-right: 3rem;
}

.app-overlay-icon-wrap {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(36, 85, 164, 0.16);
  box-shadow: 0 10px 22px rgba(15, 43, 91, 0.08);
  display: grid;
  place-items: center;
}

.app-overlay-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.app-overlay-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-deep);
}

.app-overlay-panel h3 {
  margin: 0;
  color: var(--primary-deep);
}

.app-overlay-description {
  margin: 1rem 0 1.1rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.app-overlay-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.coverage-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.coverage-grid article {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(36, 85, 164, 0.1);
  padding: 1.15rem;
  box-shadow: 0 10px 22px rgba(15, 43, 91, 0.05);
}

.coverage-grid-stores {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.company-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.4rem;
  align-items: center;
  background: linear-gradient(130deg, #ffffff, #f2f6ff);
  border: 1px solid rgba(36, 85, 164, 0.12);
  border-radius: 24px;
  padding: 1.8rem;
}

.company-wrap blockquote {
  margin: 0;
  padding: 1.1rem;
  border-radius: 16px;
  background: #fff9f2;
  border: 1px solid rgba(245, 134, 31, 0.18);
  color: #7a4310;
  font-weight: 600;
}

.site-footer {
  background: linear-gradient(180deg, #0a2550, #07173a);
  color: #e7efff;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.2rem;
}

.footer-logo {
  max-width: 230px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-authorized {
  max-width: 240px;
  width: 100%;
  height: auto;
  opacity: 0.92;
}

.copyright {
  text-align: center;
  margin: 2rem 0 0;
  opacity: 0.78;
}

.developer-credit {
  display: inline-block;
  margin-top: 0.35rem;
  color: #a4bbde;
  font-size: 0.95rem;
}

.footer-support-button,
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  background: #20b957;
  color: #ffffff;
  font: 800 0.9rem/1 "Space Grotesk", sans-serif;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(20, 130, 61, 0.25);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.footer-support-button:hover,
.whatsapp-button:hover,
.footer-support-button:focus-visible,
.whatsapp-button:focus-visible {
  background: #159947;
  box-shadow: 0 13px 24px rgba(20, 130, 61, 0.32);
  transform: translateY(-2px);
}

.whatsapp-icon {
  display: inline-grid;
  width: 1.4rem;
  height: 1.4rem;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.78rem;
  line-height: 1;
}

.whatsapp-icon svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: currentColor;
}

.support-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(4, 18, 56, 0.72);
  backdrop-filter: blur(10px);
}

.support-overlay[hidden] {
  display: none;
}

.support-overlay-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(700px, 90vh);
  overflow-y: auto;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(36, 85, 164, 0.2);
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #f1f6ff);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.32);
}

.support-overlay-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(36, 85, 164, 0.1);
  color: var(--primary-deep);
  font-size: 1.5rem;
  cursor: pointer;
}

.support-overlay-kicker {
  margin: 0 0 0.3rem;
  color: #159947;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.support-overlay-panel h2 {
  margin: 0;
  color: var(--primary-deep);
}

.support-overlay-lead {
  margin: 0.55rem 0 1.1rem;
  color: var(--ink-soft);
}

.support-city-list {
  display: grid;
  gap: 0.65rem;
}

.support-city-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(32, 185, 87, 0.24);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.support-city-option:hover,
.support-city-option:focus-visible {
  border-color: #20b957;
  box-shadow: 0 8px 18px rgba(20, 130, 61, 0.14);
  transform: translateY(-2px);
}

.support-city-option span:first-child {
  display: grid;
  gap: 0.18rem;
}

.support-city-option strong {
  color: var(--primary-deep);
}

.support-city-option small {
  color: var(--ink-soft);
}

.support-city-option .whatsapp-icon {
  flex: 0 0 auto;
  background: #20b957;
  color: #ffffff;
}

.section-reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: reveal 0.8s ease forwards;
}

.section-reveal-delay {
  opacity: 0;
  transform: translateY(24px);
  animation: reveal 0.85s ease forwards 0.18s;
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 981px) and (max-width: 1400px) {
  .why-choose-shell {
    grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
    gap: 2rem;
    padding: 3rem;
  }

  .why-choose-visual .dog-decoration-think {
    width: min(100%, 600px);
    transform: scale(1.08);
  }

  .why-reasons-card {
    width: 100%;
  }

  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
    gap: 0;
  }

  .hero-content {
    transform: translateX(-1.5rem);
  }

  .hero-kicker {
    font-size: clamp(2.2rem, 5.2vw, 4.8rem);
  }

  .hero-content h1 {
    font-size: clamp(3.6rem, 7.2vw, 6.8rem);
  }

  .hero-dog-feliz-card {
    width: min(100%, 610px);
  }

  .hero-dog-feliz-card .dog-decoration-feliz {
    min-height: min(70vh, 600px);
    transform: scale(1.08);
  }

  .hero-dog-feliz {
    max-width: 580px;
  }

  .hero-wifi {
    width: 145px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .pre-register-grid,
  .company-wrap {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .apps-showcase {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .why-choose-visual {
    order: -1;
  }

  .plans-track .plan-card {
    flex-basis: 100%;
  }

  .apps-grid,
  .coverage-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .apps-track .app-card {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .app-overlay-header {
    align-items: flex-start;
  }

  .form-grid.two-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(1120px, 94%);
  }

  .nav-wrap {
    gap: 0.7rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .social-links {
    margin-left: auto;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 4%;
    right: 4%;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(36, 85, 164, 0.15);
    box-shadow: 0 14px 30px rgba(18, 50, 103, 0.16);
    flex-direction: column;
    align-items: stretch;
    padding: 0.7rem;
    gap: 0.45rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.2s ease;
  }

  .site-nav a {
    padding: 0.55rem;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: rgba(36, 85, 164, 0.08);
  }

  .site-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .plans-showcase {
    grid-template-columns: 1fr;
  }

  .plans-dog-visual {
    min-height: 300px;
    order: 2;
  }

  .plans-dog {
    width: min(100%, 300px);
  }

  .apps-showcase {
    grid-template-columns: 1fr;
  }

  .plans-stage {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0.9rem;
    overflow: hidden;
  }

  .plans-carousel {
    position: relative;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    align-items: center;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    gap: 0.35rem;
  }

  .plans-viewport {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-inline: 0;
  }

  .plans-track {
    width: 100%;
    min-width: 0;
    gap: 0;
    max-width: 100%;
  }

  .plans-track .plan-card {
    flex: 0 0 100%;
    width: 100% !important;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .plans-carousel .carousel-btn {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: 3;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    transform: none;
    font-size: 1.45rem;
  }

  .plans-carousel .carousel-btn:hover {
    transform: translateY(-2px) scale(1.03);
  }

  .plans-carousel .carousel-btn.prev {
    grid-column: 1;
    grid-row: 1;
  }

  .plans-carousel .carousel-btn.next {
    grid-column: 3;
    grid-row: 1;
  }

  .plans-dog {
    width: min(100%, 280px);
    justify-self: end;
    margin-left: 0;
    transform: none;
  }

  .plans .container {
    padding: 1rem 0.8rem 1.3rem;
    border-radius: 22px;
  }

  .plans-head {
    margin-top: 0;
    padding-inline: 0.45rem;
  }

  .plans-head h2 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 0.96;
  }

  .plans-stage {
    padding: 0;
  }

  .plans-dog-visual {
    display: none;
  }

  .plan-card {
    min-height: 0;
    padding: 1.3rem;
  }

  .plan-card h3 {
    font-size: 1.25rem;
  }

  .price {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .plan-card ul {
    gap: 0.38rem;
    font-size: 0.92rem;
  }

  .plans-savings {
    width: 100%;
    margin-top: 1rem;
    padding: 0.7rem 0.8rem;
    border-radius: 16px;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .hero-visual,
  .apps-dog-visual {
    justify-items: start;
  }

  .hero-dog-card,
  .hero-visual-note,
  .apps-dog-note {
    width: 100%;
  }

  .apps-showcase {
    gap: 0.75rem;
  }

  .apps-carousel {
    display: block;
    margin-top: 1rem;
  }

  .apps-viewport {
    overflow: visible;
    cursor: default;
  }

  .apps-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
    transform: none !important;
    transition: none !important;
  }

  .plans-track .plan-card {
    flex-basis: 100%;
  }

  .apps-track .app-card {
    flex-basis: auto;
    min-height: 0;
  }

  .apps-dots {
    display: none !important;
  }

  .app-overlay-panel {
    padding: 1rem;
  }

  .app-overlay-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-overlay-links {
    flex-direction: column;
  }

  .app-overlay-links .btn {
    width: 100%;
  }

  .carousel-btn {
    display: none;
  }

  .why-reasons-card .carousel-btn {
    display: inline-flex;
  }

  .apps-grid,
  .coverage-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 2.2rem 1rem 1.25rem;
  }

  .site-footer .container {
    width: 100%;
    padding: 0;
  }

  .site-footer .footer-grid {
    gap: 1.65rem;
    text-align: center;
  }

  .site-footer .footer-grid > div {
    display: grid;
    justify-items: center;
    gap: 0.25rem;
  }

  .site-footer .footer-grid > div + div {
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .site-footer .footer-authorized {
    width: min(100%, 220px);
    margin: 0 auto;
  }

  .site-footer h3 {
    margin-bottom: 0.35rem;
  }

  .site-footer p {
    max-width: 32ch;
    margin: 0.18rem auto;
  }

  .site-footer .copyright {
    max-width: 32ch;
    margin: 1.7rem auto 0;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .customer-type-switch {
    width: 100%;
  }

  .form-actions {
    display: grid;
  }

  .form-actions .btn {
    width: 100%;
  }

  .bg-layer::before {
    left: 8%;
    top: 14%;
    box-shadow:
      70px 40px 0 rgba(255, 255, 255, 0.16),
      150px 18px 0 rgba(255, 255, 255, 0.14),
      240px 90px 0 rgba(243, 188, 26, 0.22),
      120px 170px 0 rgba(245, 134, 31, 0.22),
      270px 220px 0 rgba(255, 255, 255, 0.12);
  }

  .bg-layer::after {
    width: 52px;
    height: 14px;
    right: 10%;
    top: 46%;
    border-color: rgba(245, 134, 31, 0.8);
  }

  .hero h1 {
    font-size: clamp(1.8rem, 10vw, 2.45rem);
    line-height: 1.12;
  }

  .lead {
    font-size: 1rem;
    margin-bottom: 1.35rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: 1.4rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .app-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .app-links .btn {
    width: 100%;
  }

  .hero {
    min-height: calc(100svh - 72px);
    padding-top: 3.2rem;
    padding-bottom: 3.1rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
  }

  .hero-content {
    order: 1;
    padding-left: 0;
    transform: none;
  }

  .hero-kicker {
    font-size: clamp(1.9rem, 10vw, 3.1rem);
    -webkit-text-stroke-width: 3px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 17vw, 5rem);
    line-height: 0.9;
    white-space: normal;
    -webkit-text-stroke-width: 4px;
  }

  .hero-visual {
    order: 2;
    margin-top: -1rem;
  }

  .hero-dog-feliz-card .dog-decoration-feliz {
    min-height: min(57vh, 450px);
    transform: scale(0.86);
  }

  .hero-dog-feliz-card .hero-dog-feliz {
    width: min(100%, 360px);
    max-width: 360px;
  }

  .hero-wifi {
    width: 125px;
    height: auto;
    border: 0;
  }

  .hero-wifi-three {
    right: 2vw;
  }

  .hero-orange-ring-one {
    left: -70px;
    top: 18%;
  }

  .hero-orange-ring-two {
    left: 8%;
    bottom: 10%;
  }

  .hero-orange-ring-three {
    right: -70px;
    bottom: 12%;
  }

  .hero-orange-dot-two {
    left: auto;
    right: 8%;
    top: 12%;
  }

  .why-choose-shell {
    grid-template-columns: 1fr;
    gap: 1.8rem;
    min-height: 100svh;
    padding: 3rem 1.2rem;
  }

  .why-choose-screen {
    min-height: 240px;
    margin-left: 0;
  }

  .why-highlights {
    width: 100%;
    margin-left: 0;
  }

  .why-reasons-card {
    width: 100%;
  }

  .why-reasons-card .carousel-btn {
    display: inline-flex;
  }

  .hero-dog {
    width: 180px;
    justify-self: start;
  }

  .why-choose-visual {
    margin-left: 0;
    min-height: 320px;
  }

  .why-choose-visual .dog-decoration-think {
    width: min(100%, 440px);
    transform: scale(0.82);
  }

  .why-choose-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .why-reasons-card {
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    width: 100%;
    min-height: 420px;
    padding: 0.75rem;
    gap: 0.35rem;
  }

  .why-reasons-pages {
    min-height: 360px;
  }

  .why-reasons-page {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .why-reasons-card .why-highlight-card {
    min-height: 0;
    padding: 1rem;
  }

  .why-reasons-page .why-highlight-card {
    min-height: 100%;
    padding: 1.6rem;
  }

  .why-reasons-page .why-highlight-card strong {
    font-size: clamp(1.65rem, 8vw, 2.25rem);
  }

  .why-reasons-page .why-highlight-card span {
    font-size: clamp(1.05rem, 4.8vw, 1.3rem);
  }

  .why-reasons-card .reason-btn {
    width: 36px;
    height: 36px;
  }

  .thought-shell {
    width: 100%;
    margin-left: 0;
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 0.35rem;
  }

  .thought-cloud {
    height: 205px;
    padding-inline: 1rem;
  }

  .thought-cloud .why-reason {
    inset-inline: 1rem;
  }

  .why-choose-visual .reason-btn {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
  }

  .hero-dog-think {
    width: min(78vw, 300px);
    max-width: 300px;
    margin-left: 0;
    transform: none;
  }

  .why-choose-visual .dog-decoration-think {
    width: min(100%, 340px);
    margin: 0 auto;
    transform: scale(0.92);
  }

  .plans-head {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (min-width: 761px) and (max-width: 980px) and (orientation: landscape) {
  .hero {
    min-height: calc(100svh - 72px);
    padding: 1rem 0;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 0;
    align-items: center;
  }

  .hero-content {
    order: initial;
    transform: none;
    padding-left: 0;
    text-align: left;
  }

  .hero-kicker {
    font-size: clamp(1.8rem, 5vw, 3.2rem);
  }

  .hero-content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 0.86;
    white-space: normal;
  }

  .hero-visual {
    order: initial;
    margin-top: 0;
  }

  .hero-dog-feliz-card .dog-decoration-feliz {
    min-height: 76vh;
    transform: scale(0.8);
  }

  .hero-dog-feliz-card .hero-dog-feliz {
    width: min(100%, 420px);
    max-width: 420px;
  }

  .hero-wifi {
    width: 100px;
  }
}

@media (max-width: 420px) {
  .why-choose-head::before,
  .why-choose-head::after {
    display: none;
  }

  .brand img {
    height: 46px;
  }

  .chip,
  .section-tag {
    font-size: 0.8rem;
  }

  .price {
    font-size: 1.75rem;
  }
}
