:root {
  --blue-dark: #001b4d;
  --blue-navy: #002b6f;
  --blue-primary: #006dff;
  --blue-electric: #00a8ff;
  --blue-light: #eaf5ff;
  --blue-ice: #f7fbff;
  --white: #ffffff;
  --text-dark: #001b4d;
  --text-muted: #5e6b85;
  --border-light: #dce8f7;
  --whatsapp: #25d366;
  --shadow-card: 0 14px 35px rgba(0, 43, 111, 0.1);
  --shadow-soft: 0 10px 26px rgba(0, 43, 111, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --header-height: 76px;
  --bottom-nav-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--blue-ice);
  color: var(--text-dark);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  margin: 0;
  background: var(--blue-ice);
  color: var(--text-dark);
}

body.nav-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.app-shell {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 0%, rgba(0, 168, 255, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 46%, #eef8ff 100%);
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(var(--header-height) + env(safe-area-inset-top));
  padding: calc(12px + env(safe-area-inset-top)) 18px 12px;
  border-bottom: 1px solid rgba(220, 232, 247, 0.75);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 28px rgba(0, 27, 77, 0.06);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.brand-link,
.header-center {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: 154px;
  height: auto;
}

.internal-logo {
  width: 118px;
  height: auto;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(220, 232, 247, 0.86);
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue-dark);
  box-shadow: 0 8px 18px rgba(0, 43, 111, 0.08);
  cursor: pointer;
}

.icon-button svg {
  width: 23px;
  height: 23px;
}

.whatsapp-circle {
  border-color: rgba(37, 211, 102, 0.25);
  background: var(--whatsapp);
  color: #ffffff;
}

.back-button,
.search-button {
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--blue-primary);
}

.app-main {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  min-height: calc(100vh - var(--header-height));
  padding-bottom: calc(var(--bottom-nav-height) + 20px + env(safe-area-inset-bottom));
  outline: none;
}

.screen {
  width: min(100%, 1160px);
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0 auto;
  padding: 18px 18px 28px;
}

.screen-title {
  margin: 8px 0 10px;
  color: var(--blue-dark);
  font-size: clamp(38px, 12vw, 68px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.screen-subtitle {
  max-width: 600px;
  margin: 0 0 22px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.35;
}

.accent {
  color: var(--blue-primary);
}

.hero-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: clamp(520px, 138vw, 660px);
  border-radius: 24px;
  background:
    linear-gradient(112deg, rgba(0, 27, 77, 0.98) 0%, rgba(0, 27, 77, 0.96) 48%, rgba(0, 109, 255, 0.08) 66%, rgba(0, 109, 255, 0) 100%),
    #ffffff;
  box-shadow: var(--shadow-card);
}

.hero-card::before {
  content: none;
}

.hero-card::after {
  content: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 27, 77, 0.4) 0%, rgba(0, 27, 77, 0.12) 48%, rgba(255, 255, 255, 0) 78%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(74%, 500px);
  padding: 34px 18px 24px;
  color: #ffffff;
}

.hero-content h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(36px, 11.2vw, 62px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero-content p {
  max-width: 440px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.45;
}

.blue-line {
  width: 66px;
  height: 5px;
  margin: 20px 0 24px;
  border-radius: 999px;
  background: var(--blue-electric);
}

.hero-actions,
.detail-actions {
  display: grid;
  gap: 12px;
}

.app-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.app-button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.app-button:active,
.tap-card:active,
.product-card:active {
  transform: translateY(1px) scale(0.992);
}

.primary-button {
  background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-electric) 100%);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 109, 255, 0.26);
}

.secondary-button {
  border: 1px solid rgba(0, 109, 255, 0.18);
  background: #ffffff;
  color: var(--blue-dark);
  box-shadow: 0 12px 24px rgba(0, 43, 111, 0.12);
}

.outline-button {
  border: 1px solid rgba(0, 109, 255, 0.5);
  background: transparent;
  color: var(--blue-primary);
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: 100%;
  gap: 12px;
  margin: 24px 0 30px;
  overflow: hidden;
  scrollbar-width: none;
}

.benefit-strip::-webkit-scrollbar,
.chips::-webkit-scrollbar {
  display: none;
}

.mini-card {
  min-width: 0;
  display: grid;
  place-items: center;
  min-height: 134px;
  padding: 16px 12px;
  border: 1px solid rgba(220, 232, 247, 0.95);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.mini-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  color: var(--blue-primary);
  stroke-width: 2.4;
}

.mini-card strong {
  color: var(--blue-dark);
  font-size: 14px;
  line-height: 1.18;
}

.home-intro-panel {
  padding: 20px 20px 18px;
  border: 1px solid rgba(0, 109, 255, 0.13);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #f5faff);
  box-shadow: 0 14px 30px rgba(0, 43, 111, 0.07);
}

.home-intro-panel p,
.home-intro-panel strong {
  margin: 0;
}

.home-intro-panel p {
  color: var(--blue-dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
}

.home-intro-panel strong {
  display: block;
  margin-top: 12px;
  color: var(--blue-primary);
  font-size: 15px;
  line-height: 1.35;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 16px;
}

.section-heading h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.05;
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.tap-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(118px, 42%) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 136px;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(220, 232, 247, 0.95);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tap-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 43, 111, 0.13);
}

.tap-card img {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  height: auto;
  border-radius: 18px 18px 42px 18px;
  object-fit: cover;
  background: #f7fbff;
}

.tap-card-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 8px 4px 8px 0;
}

.tap-card h3 {
  margin: 0 0 6px;
  color: var(--blue-dark);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.05;
}

.tap-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.35;
}

.round-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-top: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-electric));
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(0, 109, 255, 0.24);
}

.round-arrow svg {
  width: 20px;
  height: 20px;
}

.brand-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 18px;
  overflow: visible;
}

.brand-logo-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 86px;
  overflow: hidden;
  border: 1px solid rgba(0, 43, 111, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, #123b95 0%, #00142f 100%);
  box-shadow: 0 14px 26px rgba(0, 27, 77, 0.12);
}

.brand-logo-card img {
  width: 100%;
  height: 100%;
  max-height: 94px;
  object-fit: cover;
}

.brand-logo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.trust-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(0, 109, 255, 0.14);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 168, 255, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff, #f7fbff);
  box-shadow: 0 16px 36px rgba(0, 43, 111, 0.08);
}

.trust-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue-primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-copy h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(22px, 6vw, 32px);
  font-weight: 900;
  line-height: 1.04;
}

.trust-copy p {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.45;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badges strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 109, 255, 0.16);
  background: #ffffff;
  color: var(--blue-primary);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.official-service-panel {
  display: grid;
  gap: 18px;
  margin: 26px 0 18px;
  padding: 18px;
  border: 1px solid rgba(0, 109, 255, 0.14);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 43, 111, 0.1);
}

.official-service-panel figure {
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  background: #eaf5ff;
}

.official-service-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.02;
  object-fit: cover;
  object-position: center top;
}

.official-service-copy span {
  display: inline-flex;
  color: var(--blue-primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.official-service-copy h2 {
  margin: 8px 0 0;
  color: var(--blue-dark);
  font-size: clamp(34px, 10vw, 58px);
  font-weight: 900;
  line-height: 0.98;
}

.official-service-copy p {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.official-service-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.official-service-logos strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid rgba(0, 109, 255, 0.16);
  border-radius: 999px;
  background: #f4f9ff;
  color: var(--blue-primary);
  font-size: 14px;
  font-weight: 900;
}

.savings-calculator {
  display: grid;
  gap: 18px;
  margin: 18px 0;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 8%, rgba(0, 168, 255, 0.2), transparent 32%),
    linear-gradient(135deg, #001b4a, #004ed0);
  color: #ffffff;
  box-shadow: 0 20px 48px rgba(0, 43, 111, 0.22);
}

.calculator-copy span {
  display: inline-flex;
  color: var(--blue-electric);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.calculator-copy h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(28px, 8vw, 44px);
  font-weight: 900;
  line-height: 1.02;
}

.calculator-copy p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.45;
}

.calculator-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.calculator-card label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
}

.calculator-card input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  background: #ffffff;
  color: var(--blue-dark);
  outline: none;
}

.calculator-result {
  margin-top: 4px;
  padding: 16px;
  border-radius: 18px;
  background: #ffffff;
  color: var(--blue-dark);
}

.calculator-result span,
.calculator-result small {
  display: block;
}

.calculator-result span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
}

.calculator-result strong {
  display: block;
  margin-top: 4px;
  color: var(--blue-primary);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.calculator-result small {
  margin-top: 8px;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.calculator-actions {
  display: grid;
  gap: 10px;
}

.calculator-actions .app-button {
  min-height: 52px;
}

.seo-info-section {
  display: grid;
  gap: 18px;
  margin: 18px 0;
  padding: 22px;
  border: 1px solid rgba(0, 109, 255, 0.12);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 43, 111, 0.08);
}

.seo-info-heading span {
  display: inline-flex;
  color: var(--blue-primary);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.seo-info-heading h2 {
  margin: 8px 0 0;
  color: var(--blue-dark);
  font-size: clamp(27px, 8vw, 46px);
  font-weight: 900;
  line-height: 1.02;
}

.seo-info-heading p {
  margin: 12px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.seo-info-grid {
  display: grid;
  gap: 12px;
}

.seo-info-grid article {
  padding: 16px;
  border: 1px solid rgba(220, 232, 247, 0.95);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.seo-info-grid h3 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
}

.seo-info-grid p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.seo-info-cta {
  display: grid;
  gap: 10px;
}

.rental-panel {
  margin-top: 4px;
  padding: 24px 20px 22px;
  border: 1px solid rgba(0, 109, 255, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 168, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff, #f2f8ff);
  box-shadow: 0 18px 42px rgba(0, 43, 111, 0.09);
}

.rental-panel .section-heading {
  margin-bottom: 18px;
}

.rental-panel .section-heading p {
  max-width: 430px;
  margin: 9px 0 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.45;
}

.rental-list {
  display: grid;
  gap: 14px;
}

.rental-link {
  display: grid;
  grid-template-columns: 42px 1fr 22px;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 16px 14px;
  border: 1px solid rgba(205, 219, 239, 0.9);
  border-radius: 20px;
  background: #ffffff;
  color: var(--blue-dark);
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 43, 111, 0.06);
}

.rental-link > svg:first-child {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-electric));
  color: #ffffff;
}

.rental-link strong,
.rental-link span {
  display: block;
}

.rental-link strong {
  font-size: 15px;
  font-weight: 900;
}

.rental-link span span {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.3;
}

.rental-link > svg:last-child {
  width: 20px;
  height: 20px;
  color: var(--blue-primary);
}

.advice-box {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 14% 30%, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(135deg, var(--blue-primary), #004ed0);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(0, 109, 255, 0.25);
}

.advice-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue-primary);
}

.advice-box h2,
.advice-box p {
  margin: 0;
}

.advice-box h2 {
  font-size: 21px;
  line-height: 1.08;
}

.advice-box p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.35;
}

.advice-box .app-button {
  grid-column: 1 / -1;
  min-height: 50px;
  color: var(--blue-primary);
}

.screen-header-space {
  padding-top: 8px;
}

.search-field {
  position: relative;
  margin: 18px 0 18px;
}

.search-field svg {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 22px;
  height: 22px;
  color: #8a99b5;
  transform: translateY(-50%);
  pointer-events: none;
}

.search-field input {
  width: 100%;
  height: 58px;
  padding: 0 18px 0 52px;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue-dark);
  font-size: 16px;
  outline: 0;
  box-shadow: 0 10px 24px rgba(0, 43, 111, 0.05);
}

.search-field input:focus {
  border-color: rgba(0, 109, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 109, 255, 0.1);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  overflow: hidden;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.chip {
  flex: 1 1 calc(50% - 10px);
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  background: #ffffff;
  color: var(--blue-dark);
  font-weight: 800;
  cursor: pointer;
}

.chip.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-electric));
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(0, 109, 255, 0.22);
}

.product-line-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.product-line-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 312px;
  border: 1px solid rgba(220, 232, 247, 0.95);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.product-line-media {
  overflow: hidden;
  margin: 10px 10px 0;
  border-radius: 22px 22px 58px 22px;
  background: #f7fbff;
}

.product-line-media img {
  width: 100%;
  aspect-ratio: 1.72 / 1;
  object-fit: cover;
}

.product-line-body {
  padding: 18px 16px 18px;
}

.product-line-card h3 {
  margin: 0 0 7px;
  color: var(--blue-dark);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.04;
}

.product-line-card p {
  max-width: 92%;
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.38;
}

.product-line-card .round-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
}

.line-actions {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.product-guide-panel {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid rgba(220, 232, 247, 0.95);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 94% 0%, rgba(0, 168, 255, 0.14), transparent 34%),
    #ffffff;
  box-shadow: var(--shadow-card);
}

.product-guide-panel span {
  color: var(--blue-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-guide-panel h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(24px, 7vw, 36px);
  font-weight: 900;
  line-height: 1.04;
}

.product-guide-panel p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.48;
}

.guide-actions {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.line-seo-panel {
  margin: 18px 0 0;
}

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

.product-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 272px;
  border: 1px solid rgba(220, 232, 247, 0.95);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.product-card-media {
  position: relative;
  aspect-ratio: 1.72 / 1;
  height: auto;
  overflow: hidden;
  margin: 10px 10px 0;
  border-radius: 20px 20px 48px 20px;
  background: #f7fbff;
}

.product-card-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03);
}

.product-card-body {
  padding: 16px 14px 16px;
}

.product-card h3 {
  margin: 0 0 7px;
  color: var(--blue-dark);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.04;
}

.product-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.34;
}

.product-card .round-arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
}

.dark-detail {
  overflow-x: hidden;
  min-height: calc(100vh - var(--header-height));
  background:
    radial-gradient(circle at 90% 8%, rgba(0, 109, 255, 0.44), transparent 34%),
    radial-gradient(circle at 12% 28%, rgba(0, 168, 255, 0.15), transparent 30%),
    linear-gradient(180deg, #001235 0%, #001b4d 52%, #00122f 100%);
  color: #ffffff;
}

.dark-detail .screen {
  padding-top: 20px;
}

.detail-title {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: clamp(45px, 15vw, 76px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.detail-subtitle {
  max-width: 520px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  line-height: 1.26;
}

.detail-hero {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.detail-image-frame {
  position: relative;
  min-height: 286px;
  overflow: hidden;
  border: 1px solid rgba(0, 168, 255, 0.46);
  border-radius: 36px 36px 90px 36px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 168, 255, 0.14)),
    rgba(255, 255, 255, 0.04);
}

.detail-image-frame::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 74%;
  height: 62%;
  border-radius: 0 0 0 80px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-electric));
}

.detail-image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 286px;
  object-fit: contain;
  padding: 22px;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.24));
}

.detail-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
  overflow: hidden;
  scrollbar-width: none;
}

.detail-summary::-webkit-scrollbar {
  display: none;
}

.detail-summary .mini-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  box-shadow: none;
}

.detail-summary .mini-card svg,
.detail-summary .mini-card strong {
  color: #ffffff;
}

.detail-section {
  margin-top: 24px;
}

.detail-section h2 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 25px;
  line-height: 1;
}

.benefit-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.32;
}

.check-dot {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--blue-primary);
  color: #ffffff;
}

.info-list {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.info-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 60px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.info-row:last-child {
  border-bottom: 0;
}

.info-row svg {
  width: 24px;
  height: 24px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.detail-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.45;
}

.product-faq-list {
  display: grid;
  gap: 10px;
}

.product-faq-list article {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.product-faq-list h3 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 15px;
}

.product-faq-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.42;
}

.dark-detail .detail-actions {
  grid-template-columns: 1fr;
  margin-top: 22px;
}

.whatsapp-button {
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

.seo-article {
  min-height: 100vh;
  padding: 20px 16px 48px;
  background:
    radial-gradient(circle at 92% 0%, rgba(0, 168, 255, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 48%, #eef8ff 100%);
  color: var(--blue-dark);
}

.seo-article article {
  max-width: 860px;
  margin: 18px auto 0;
  padding: 22px 18px;
  border: 1px solid rgba(220, 232, 247, 0.95);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.article-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue-primary);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.seo-article span {
  color: var(--blue-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.seo-article h1 {
  margin: 10px 0 12px;
  color: var(--blue-dark);
  font-size: clamp(36px, 10vw, 64px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.seo-article h2 {
  margin: 26px 0 8px;
  color: var(--blue-dark);
  font-size: clamp(24px, 7vw, 34px);
  font-weight: 900;
  line-height: 1.06;
}

.seo-article p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.62;
}

.seo-article .article-lead {
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 700;
}

.article-cta {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.article-calculator {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(0, 109, 255, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 0%, rgba(0, 168, 255, 0.16), transparent 34%),
    #f7fbff;
}

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

.article-calculator .calculator-card {
  margin: 0;
}

.about-company-panel,
.about-story-grid article {
  border: 1px solid rgba(220, 232, 247, 0.95);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.about-company-panel {
  display: grid;
  gap: 12px;
  margin: 0 0 16px;
  padding: 22px 18px;
  background:
    radial-gradient(circle at 90% 0%, rgba(0, 168, 255, 0.16), transparent 32%),
    #ffffff;
}

.about-company-panel span {
  color: var(--blue-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-company-panel h2,
.about-story-grid h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(24px, 7vw, 38px);
  font-weight: 900;
  line-height: 1.04;
}

.about-company-panel p,
.about-story-grid p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

.about-stats {
  display: grid;
  gap: 8px;
}

.about-stats strong {
  padding: 12px;
  border-radius: 16px;
  background: #eef8ff;
  color: var(--blue-dark);
  font-size: 14px;
}

.about-story-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.about-story-grid article {
  display: grid;
  gap: 9px;
  padding: 18px;
}

.faq-page-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.faq-page-list article {
  padding: 16px;
  border: 1px solid rgba(220, 232, 247, 0.95);
  border-radius: 18px;
  background: #f7fbff;
}

.faq-page-list h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.solutions-list {
  display: grid;
  gap: 18px;
}

.solution-card {
  position: relative;
  display: grid;
  grid-template-columns: 38% 1fr auto;
  align-items: center;
  min-height: 178px;
  overflow: hidden;
  padding: 18px 18px 18px 0;
  border: 1px solid rgba(220, 232, 247, 0.95);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.solution-card:nth-child(even) {
  grid-template-columns: 1fr 38% auto;
  padding: 18px 0 18px 18px;
}

.solution-card img {
  width: 100%;
  height: 144px;
  object-fit: cover;
}

.solution-card:first-child img {
  border-radius: 0 72px 72px 0;
}

.solution-card:nth-child(even) img {
  grid-column: 2;
  border-radius: 72px 0 0 72px;
}

.solution-card-content {
  padding: 0 18px;
}

.solution-card:nth-child(even) .solution-card-content {
  grid-column: 1;
  grid-row: 1;
}

.solution-card h3 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.02;
}

.solution-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.35;
}

.solution-card .round-arrow {
  margin: 0;
}

.contact-hero {
  margin: -18px -18px 18px;
  padding: 34px 22px 22px;
  border-radius: 0 0 30px 30px;
  background:
    radial-gradient(circle at 82% 20%, rgba(0, 168, 255, 0.55), transparent 20%),
    linear-gradient(135deg, #001235, var(--blue-dark));
  color: #ffffff;
}

.contact-hero h1 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(36px, 11vw, 64px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.03;
}

.contact-hero span:first-child {
  color: var(--blue-electric);
  font-weight: 800;
}

.whatsapp-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 130px;
  margin-top: 26px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-electric));
  color: #ffffff;
  box-shadow: 0 20px 42px rgba(0, 109, 255, 0.3);
}

.whatsapp-cta .whatsapp-big {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 8px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  background: var(--whatsapp);
}

.whatsapp-cta small,
.whatsapp-cta strong {
  display: block;
}

.whatsapp-cta small {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.whatsapp-cta strong {
  margin-top: 5px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

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

.contact-action-card {
  min-height: 138px;
  padding: 14px;
  border: 1px solid rgba(220, 232, 247, 0.95);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.contact-action-card svg {
  width: 31px;
  height: 31px;
  color: var(--blue-primary);
}

.contact-action-card strong,
.contact-action-card span {
  display: block;
}

.contact-action-card strong {
  margin-top: 12px;
  color: var(--blue-dark);
  font-size: 14px;
  line-height: 1.12;
}

.contact-action-card span {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.25;
}

.white-panel {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid rgba(220, 232, 247, 0.95);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.white-panel h2 {
  margin: 0;
  padding: 20px 20px 8px;
  color: var(--blue-dark);
  font-size: 23px;
  line-height: 1.05;
}

.lead-panel {
  padding-bottom: 20px;
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 12px 20px 0;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(198, 213, 235, 0.95);
  border-radius: 14px;
  background: #ffffff;
  color: var(--blue-dark);
  outline: none;
}

.lead-form input,
.lead-form select {
  min-height: 50px;
  padding: 0 14px;
}

.lead-form textarea {
  min-height: 94px;
  padding: 13px 14px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(0, 109, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(0, 109, 255, 0.1);
}

.lead-form .app-button {
  width: 100%;
  min-height: 52px;
  border: 0;
  cursor: pointer;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-row,
.more-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 0 20px;
  border-top: 1px solid rgba(220, 232, 247, 0.85);
}

.contact-row:first-of-type {
  border-top: 0;
}

.contact-row svg,
.more-row svg:first-child {
  width: 28px;
  height: 28px;
  color: var(--blue-primary);
}

.contact-row strong,
.more-row strong {
  display: block;
  color: var(--blue-dark);
  font-size: 15px;
}

.contact-row span,
.more-row span {
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 13px;
}

.coverage-card {
  display: grid;
  grid-template-columns: 32% 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(0, 168, 255, 0.35);
  border-radius: 22px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 43, 111, 0.2);
}

.coverage-map {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
}

.coverage-map svg {
  width: 60%;
  height: 60%;
}

.coverage-card h2,
.coverage-card p {
  margin: 0;
}

.coverage-card h2 {
  color: #ffffff;
  font-size: 21px;
  line-height: 1.05;
}

.coverage-card p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.35;
}

.faq-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 70px;
  margin: 10px 14px;
  padding: 0 14px;
  border: 1px solid rgba(220, 232, 247, 0.95);
  border-radius: 16px;
  background: #fbfdff;
}

.faq-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue-primary);
}

.more-header {
  padding: 20px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 82% 14%, rgba(0, 168, 255, 0.26), transparent 28%),
    linear-gradient(135deg, var(--blue-dark), var(--blue-navy));
  color: #ffffff;
}

.more-header h1 {
  margin: 0;
  color: #ffffff;
  font-size: 38px;
  line-height: 1;
}

.more-header p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.45;
}

.more-list {
  margin-top: 20px;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(220, 232, 247, 0.9);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.empty-state h2 {
  margin: 0 0 8px;
  color: var(--blue-dark);
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-height: calc(var(--bottom-nav-height) + env(safe-area-inset-bottom));
  padding: 7px 8px calc(7px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(220, 232, 247, 0.94);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -10px 30px rgba(0, 27, 77, 0.08);
  backdrop-filter: blur(18px);
}

.bottom-nav a {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  min-width: 0;
  border-radius: 18px;
  color: #586a91;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.bottom-nav a svg {
  width: 25px;
  height: 25px;
  stroke-width: 2;
}

.bottom-nav a.active {
  color: var(--blue-primary);
}

.bottom-nav a.active span {
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: calc(var(--bottom-nav-height) + 14px + env(safe-area-inset-bottom));
  z-index: 80;
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(220, 232, 247, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--blue-dark);
  box-shadow: 0 18px 50px rgba(0, 27, 77, 0.18);
  backdrop-filter: blur(16px);
}

.cookie-banner p,
.cookie-banner h2,
.cookie-banner h3 {
  margin: 0;
}

.cookie-banner p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.35;
}

.cookie-banner a {
  color: var(--blue-primary);
  font-weight: 800;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button,
.cookie-banner button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(0, 109, 255, 0.28);
  border-radius: 14px;
  background: #ffffff;
  color: var(--blue-primary);
  font-weight: 800;
}

.cookie-actions button:last-child,
.cookie-banner button:last-child {
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-electric));
  color: #ffffff;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  background: rgba(0, 18, 53, 0.5);
}

.drawer {
  position: fixed;
  inset: auto 14px calc(90px + env(safe-area-inset-bottom)) 14px;
  z-index: 91;
  display: none;
  overflow: hidden;
  border: 1px solid rgba(220, 232, 247, 0.95);
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 27, 77, 0.26);
}

body.nav-open .drawer,
body.nav-open .drawer-backdrop {
  display: block;
}

.drawer a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(220, 232, 247, 0.8);
  color: var(--blue-dark);
  font-weight: 800;
}

.drawer a:last-child {
  border-bottom: 0;
}

@media (min-width: 760px) {
  :root {
    --header-height: 84px;
  }

  .app-shell {
    background:
      radial-gradient(circle at 92% 0%, rgba(0, 168, 255, 0.13), transparent 28%),
      linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  }

  .app-header {
    padding-inline: clamp(32px, 5vw, 72px);
  }

  .app-main {
    padding-bottom: 36px;
  }

  .bottom-nav {
    left: 50%;
    right: auto;
    bottom: 24px;
    width: min(720px, calc(100% - 48px));
    min-height: 74px;
    border: 1px solid rgba(220, 232, 247, 0.95);
    border-radius: 28px;
    transform: translateX(-50%);
  }

  .screen {
    padding: 30px clamp(28px, 5vw, 56px) 128px;
  }

  .home-screen {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 28px;
    align-items: start;
  }

  .home-screen > div:first-child {
    grid-column: 1 / -1;
  }

  .hero-card {
    min-height: clamp(560px, 48vw, 680px);
    border-radius: 34px;
  }

  .hero-media img {
    object-position: center;
  }

  .hero-content {
    width: min(48%, 560px);
    padding: 72px 56px;
  }

  .hero-content h1 {
    font-size: clamp(58px, 6vw, 82px);
  }

  .hero-actions {
    grid-template-columns: minmax(180px, 1fr) minmax(160px, 0.84fr);
  }

  .home-side {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: 28px;
    align-items: start;
  }

  .benefit-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    overflow: visible;
  }

  .benefit-strip .mini-card {
    min-width: 0;
  }

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

  .tap-card {
    min-height: 176px;
  }

  .brand-row,
  .home-intro-panel,
  .official-service-panel,
  .savings-calculator,
  .seo-info-section,
  .advice-box {
    grid-column: 1 / -1;
  }

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

  .advice-box {
    grid-template-columns: auto 1fr auto;
  }

  .official-service-panel,
  .savings-calculator {
    grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
    align-items: center;
  }

  .seo-info-section {
    grid-template-columns: minmax(360px, 0.82fr) minmax(420px, 1.18fr);
    align-items: start;
  }

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

  .seo-info-cta {
    grid-column: 1 / -1;
    grid-template-columns: minmax(220px, 0.5fr) minmax(260px, 0.5fr);
  }

  .official-service-panel figure {
    height: 100%;
  }

  .official-service-panel img {
    height: 100%;
    aspect-ratio: auto;
  }

  .advice-box .app-button {
    grid-column: auto;
  }

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

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

  .product-line-card {
    min-height: 350px;
  }

  .line-actions {
    grid-template-columns: minmax(220px, 0.32fr) minmax(220px, 0.32fr);
  }

  .product-guide-panel {
    padding: 26px;
  }

  .guide-actions {
    grid-template-columns: minmax(220px, 0.36fr) minmax(220px, 0.36fr);
  }

  .product-card {
    min-height: 320px;
  }

  .product-card-media {
    height: auto;
  }

  .detail-hero {
    grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1fr);
    align-items: center;
  }

  .detail-image-frame {
    min-height: 420px;
  }

  .detail-image-frame img {
    height: 420px;
  }

  .detail-summary {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }

  .detail-summary .mini-card {
    min-width: 0;
  }

  .dark-detail .detail-actions {
    grid-template-columns: 1fr 0.86fr;
  }

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

  .solution-card,
  .solution-card:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 340px;
    padding: 0 0 22px;
  }

  .solution-card img,
  .solution-card:nth-child(even) img {
    grid-column: auto;
    width: 100%;
    height: 190px;
    border-radius: 0 0 56px 0;
  }

  .solution-card:nth-child(even) .solution-card-content {
    grid-column: auto;
    grid-row: auto;
  }

  .solution-card .round-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
  }

  .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.84fr);
    gap: 24px;
    align-items: start;
  }

  .contact-hero {
    margin: 0;
    border-radius: 34px;
  }

  .cookie-banner {
    left: 50%;
    right: auto;
    bottom: 112px;
    width: min(720px, calc(100% - 48px));
    transform: translateX(-50%);
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 140px;
  }

  .header-actions {
    gap: 9px;
  }

  .icon-button {
    width: 42px;
    height: 42px;
  }

  .screen {
    padding-inline: 14px;
  }

  .hero-card {
    min-height: 560px;
  }

  .hero-content {
    width: min(76%, 318px);
    padding: 34px 18px 22px;
  }

  .hero-media {
    width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(36px, 11vw, 43px);
  }

  .hero-content p {
    font-size: 15px;
  }

  .app-button {
    min-height: 54px;
  }

  .quick-grid,
  .product-grid {
    gap: 12px;
  }

  .tap-card,
  .product-card {
    border-radius: 20px;
  }

  .tap-card h3,
  .product-card h3 {
    font-size: 18px;
  }

  .tap-card p,
  .product-card p {
    font-size: 13px;
  }

  .product-card {
    min-height: 256px;
  }

  .product-card-media {
    height: auto;
  }

  .brand-logo-card {
    min-height: 78px;
  }

  .contact-actions {
    gap: 8px;
  }

  .whatsapp-cta strong {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .screen {
    animation: screenIn 220ms ease both;
  }

  @keyframes screenIn {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
