:root {
  --color-primary: #0B224A;
  --color-primary-strong: #133A7C;
  --color-accent: #2563EB;
  --color-success: #22C55E;
  --color-text: #111827;
  --color-text-muted: #475569;
  --color-text-soft: #64748B;
  --color-border: #E2E8F0;
  --color-bg: #F8FAFC;
  --color-bg-strong: #0B224A;
  --radius-base: 12px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 12px 32px rgba(15, 23, 42, 0.08);
  --transition-base: 200ms ease;
  --container-width: 80vw;
  --header-height: 84px;
  --color-surface: #ffffff;
  --gradient-primary: linear-gradient(135deg, rgba(11, 34, 74, 0.95), rgba(37, 99, 235, 0.85));
  --gradient-soft: linear-gradient(135deg, rgba(11, 34, 74, 0.08), rgba(59, 130, 246, 0.1));
  --gradient-accent: linear-gradient(135deg, #2563EB, #3B82F6);
  --gradient-success: linear-gradient(135deg, #16A34A, #22C55E);
  --glass-border: rgba(255, 255, 255, 0.25);
  --shadow-elevated: 0 24px 60px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Poppins', 'Segoe UI', sans-serif;
  margin: 0;
  color: var(--color-text);
  background: radial-gradient(120% 120% at 10% 0%, rgba(19, 58, 124, 0.08), transparent 60%),
              radial-gradient(120% 120% at 90% 0%, rgba(37, 99, 235, 0.06), transparent 65%),
              var(--color-bg);
  line-height: 1.6;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
}

body.page-is-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 8vw, 4rem);
  background: radial-gradient(circle at top, rgba(15, 46, 92, 0.9), rgba(11, 34, 74, 0.92));
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 15% 10%, rgba(37, 99, 235, 0.25), transparent 65%),
              radial-gradient(120% 120% at 85% 15%, rgba(14, 165, 233, 0.2), transparent 70%);
  opacity: 0.75;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  max-width: 420px;
  width: min(100%, 360px);
  color: #fff;
}

.page-loader__logo img {
  width: clamp(140px, 22vw, 220px);
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.35));
}

.page-loader__text {
  margin: 0;
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.85);
}

.page-loader__progress {
  position: relative;
  width: min(100%, 260px);
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.page-loader__bar {
  position: absolute;
  inset: 0;
  width: 45%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.4), #fff, rgba(255, 255, 255, 0.4));
  border-radius: inherit;
  animation: loader-slide 1.4s ease-in-out infinite;
}

@keyframes loader-slide {
  0% {
    transform: translateX(-120%);
  }
  50% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(140%);
  }
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover,
a:focus {
  color: var(--color-primary-strong);
}

.container {
  width: min(var(--container-width), 92vw);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
}

.section::before {
  content: '';
  position: absolute;
  inset: 12px 0 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.section--muted {
  background: #EFF4FF;
}

.section--gradient {
  background: var(--gradient-soft);
}

.section--gradient::before {
  opacity: 1;
  background: radial-gradient(120% 120% at 10% 0%, rgba(37, 99, 235, 0.08), transparent 70%),
              radial-gradient(80% 80% at 90% 10%, rgba(34, 197, 94, 0.06), transparent 70%);
  filter: blur(0);
}

.section--panel > .container {
  position: relative;
  padding: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 28px;
  box-shadow: var(--shadow-elevated);
  overflow: hidden;
  backdrop-filter: blur(12px);
}

.section--panel > .container::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(11, 34, 74, 0.06));
  opacity: 0.65;
  z-index: -1;
}

.section--panel > .container > * {
  position: relative;
  z-index: 1;
}

.section--bleed {
  background: transparent;
}
.section--cta {
  position: relative;
  background: linear-gradient(135deg, rgba(11, 34, 74, 0.95), rgba(19, 58, 124, 0.9));
  color: #fff;
}

.section__header {
  position: relative;
  margin-bottom: 32px;
  padding-left: 18px;
}

.section__header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  border-radius: 999px;
  background: var(--gradient-accent);
}

.section__header h1,
.section__header h2 {
  margin: 0 0 12px 0;
  font-size: clamp(1.875rem, 2vw + 1rem, 2.75rem);
  font-weight: 800;
  color: var(--color-text);
}

.section--cta .section__header h2,
.section--cta .section__header p,
.section--cta h2,
.section--cta p {
  color: #fff;
}

.section--cta .section__header::before {
  background: rgba(255, 255, 255, 0.4);
}

.section__header p {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 640px;
}

.section__footer {
  margin-top: 32px;
  text-align: center;
}

.hero {
  position: relative;
  color: #fff;
  padding-block: clamp(5rem, 13vh, 8rem);
  overflow: hidden;
  background-color: transparent;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@supports (height: 100svh) {
  .hero {
    min-height: 100svh;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Removed background gradient */
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Removed radial gradients */
  z-index: 0;
  pointer-events: none;
}

.hero--cinematic {
  background-image: var(--hero-bg, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  grid-template-areas: 'text media';
  gap: clamp(1.5rem, 4vw, 2.4rem);
  align-items: center;
}

.hero__text {
  grid-area: text;
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: none;
  text-align: left;
  align-content: start;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero__title {
  margin: 0;
  font-size: clamp(2.5rem, 2vw + 1.5rem, 3.5rem); /* Adjusted font size */
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2; /* Ensures proper spacing between lines */
  width: 100%;
  max-width: none;
}

.hero__description {
  margin: 0;
  font-size: clamp(1.1rem, 0.6vw + 1rem, 1.35rem);
  color: rgba(237, 242, 255, 0.82);
  width: min(100%, 60%);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  width: min(100%, 60%);
}

.hero__footnote {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  width: min(100%, 60%);
}


.hero__media {
  grid-area: media;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-media-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  background: rgba(15, 46, 92, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: min(100%, 360px);
  display: flex;
  align-items: center;
  aspect-ratio: 4 / 5;
}

@media (min-width: 1024px) {
  .hero-media-card {
    width: min(100%, 420px);
  }
}

.hero-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11, 34, 74, 0.12), rgba(13, 42, 92, 0.02));
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero__chip::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.85);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), color var(--transition-base);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.35);
  border-color: rgba(37, 99, 235, 0.4);
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(37, 99, 235, 0.42);
}

.btn-outline {
  border: 2px solid rgba(37, 99, 235, 0.4);
  color: var(--color-accent);
  background: rgba(37, 99, 235, 0.04);
}

.btn-outline:hover,
.btn-outline:focus {
  background: rgba(37, 99, 235, 0.12);
  color: var(--color-primary);
}

.hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero .btn-outline:hover,
.hero .btn-outline:focus {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.btn-whatsapp {
  background: var(--gradient-success);
  color: #fff;
  box-shadow: 0 18px 44px rgba(34, 197, 94, 0.28);
  border-color: rgba(34, 197, 94, 0.35);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(34, 197, 94, 0.36);
}

.btn-ghost {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: rgba(255, 255, 255, 0.1);
}

.btn.is-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.card-grid {
  display: grid;
  gap: 24px;
}

.card-grid--benefits {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card-grid--product {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card-grid--three {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: 26px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.08);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(255, 255, 255, 0.0));
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.card:hover,
.card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(15, 23, 42, 0.14);
}

.card:hover::before,
.card:focus-within::before {
  opacity: 1;
}

.card h3 {
  margin: 0 0 12px 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--color-text-muted);
}

.card__media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(11, 34, 74, 0.35), rgba(37, 99, 235, 0.22));
}

.card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(11, 34, 74, 0.25));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card--model .card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.card--model .card__media::after {
  display: none;
}

.card--model .card__media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 62%, rgba(0, 0, 0, 0.55) 84%, rgba(0, 0, 0, 0) 100%);
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 62%, rgba(0, 0, 0, 0.55) 84%, rgba(0, 0, 0, 0) 100%);
}

.card:hover .card__media::after,
.card:focus-within .card__media::after {
  opacity: 1;
}

.card__body {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.card__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.card__link {
  color: var(--color-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-base), color var(--transition-base);
}

.card__link::after {
  content: '\2192';
  font-size: 1rem;
  transition: transform var(--transition-base);
}

.card:hover .card__link,
.card:focus-within .card__link {
  color: var(--color-primary-strong);
  gap: 10px;
}

.card:hover .card__link::after,
.card:focus-within .card__link::after {
  transform: translateX(4px);
}

.card--model {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card--model .card__body {
  padding: 20px 20px 24px;
}

.card--product {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card--product .card__body {
  flex: 1;
}

.spec-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--color-text-soft);
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.spec-list li span {
  font-weight: 600;
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.spec-list li strong {
  font-weight: 600;
  color: var(--color-text);
}

.swiper-button-next,
.swiper-button-prev {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(11, 34, 74, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 16px 32px rgba(11, 34, 74, 0.25);
}

.section--panel .swiper-button-next,
.section--panel .swiper-button-prev {
  background: rgba(11, 34, 74, 0.12);
  color: var(--color-primary);
  border-color: rgba(15, 23, 42, 0.12);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--gradient-accent);
}

.model-swiper {
  padding-bottom: 48px;
}

.testimonial-swiper {
  padding-bottom: 36px;
}
.compare-table,
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.compare-table th,
.compare-table td,
.spec-table th,
.spec-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.95rem;
}

.compare-table tbody tr:hover {
  background: rgba(37, 99, 235, 0.04);
}

.compare-table th {
  background: rgba(11, 34, 74, 0.9);
  color: #fff;
  font-weight: 600;
}

.table-responsive {
  overflow-x: auto;
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list li a {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(37, 99, 235, 0.08);
  font-size: 0.75rem;
  color: var(--color-primary);
}

.cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 36px;
}

.cta-box__content h2 {
  margin: 0 0 8px 0;
  font-size: clamp(1.8rem, 2vw + 1rem, 2.2rem);
  color: inherit;
}

.section-kicker,
.aside-kicker
/* .hero__eyebrow  */
{
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-soft);
}

.section--cta .section-kicker,
.section--cta .cta-box__content p {
  color: rgba(255, 255, 255, 0.85);
}

.motor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.section--motor-full {
  padding: clamp(48px, 8vw, 96px) clamp(1.5rem, 8vw, 6rem);
}

.motor-grid--full {
  width: 100%;
  gap: clamp(24px, 6vw, 60px);
}

.motor-media {
  display: flex;
  justify-content: center;
}

.motor-media img {
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

@media (min-width: 1024px) {
  .section--motor-full {
    padding: clamp(72px, 9vw, 112px) 0;
  }

  .section--motor-full .motor-grid--full {
    width: min(var(--container-width), 92vw);
    margin: 0 auto;
    padding: 48px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    box-shadow: var(--shadow-elevated);
  }
}

.bullet-list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--color-text-muted);
}

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  margin: 0;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.testimonial-card p {
  font-size: 1.1rem;
  color: var(--color-text);
}

.testimonial-card footer {
  font-weight: 600;
  color: var(--color-text);
  background: transparent;
}

.product-hero {
  padding: 96px 0 64px;
  background: linear-gradient(135deg, rgba(11, 34, 74, 0.06), rgba(19, 58, 124, 0.04));
}

.product-hero__layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
  align-items: center;
}

.product-gallery .swiper {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.product-gallery img {
  width: 100%;
  height: clamp(240px, 50vw, 480px);
  object-fit: cover;
}

.product-info__kicker {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--color-text-soft);
}

.product-info__title {
  font-size: clamp(2.2rem, 2vw + 1.2rem, 3rem);
  font-weight: 800;
  margin: 12px 0 8px;
}

.product-info__tagline {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.product-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}

.product-specs__item {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.product-specs__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 6px;
}

.product-specs__value {
  font-weight: 700;
  font-size: 1.05rem;
}

.product-content {
  background: #fff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.accordion {
  display: grid;
  gap: 16px;
}

.accordion details {
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.accordion summary {
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

.contact-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

.contact-card,
.contact-aside {
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.contact-aside__block {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.aside-link {
  font-weight: 600;
  color: var(--color-primary-strong);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-weight: 600;
  color: var(--color-text);
}

.form-field input,
.form-field textarea {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 1rem;
  transition: border var(--transition-base), box-shadow var(--transition-base);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.form-field--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-field--hidden {
  display: none;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-feedback {
  font-size: 0.95rem;
  min-height: 20px;
}

.form-feedback.is-error {
  color: #dc2626;
}

.form-feedback.is-success {
  color: #16a34a;
}

.post-list {
  display: grid;
  gap: 24px;
}

.post-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.post-card__title {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.post-card__date {
  font-size: 0.85rem;
  color: var(--color-text-soft);
}

.post-card__more {
  display: inline-flex;
  margin-top: 16px;
  font-weight: 600;
}

.error-404 {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

.error-404__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  --header-bg: transparent; /* Fully transparent at the top */
  --header-text: #ffffff; /* White text */
  --header-border: transparent;
  --header-dropdown-bg: rgba(9, 19, 40, 0.95);
  --header-dropdown-text: rgba(232, 241, 255, 0.92);
  --header-dropdown-hover: rgba(59, 130, 246, 0.22);
  color: var(--header-text);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: none;
  transition: background 240ms ease, color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  --header-bg: rgba(9, 19, 40, 0.92);
  --header-text: #ffffff;
  --header-border: transparent;
  --header-dropdown-bg: rgba(9, 19, 40, 0.98);
  --header-dropdown-text: rgba(232, 241, 255, 0.92);
  --header-dropdown-hover: rgba(59, 130, 246, 0.22);
  box-shadow: none;
}

.site-header a {
  color: inherit; /* Inherits text color */
  transition: color 200ms ease;
}

.site-header.is-scrolled a {
  color: inherit;
}

.site-header:not(.is-scrolled) a {
  color: #ffffff; /* White text for links at the top */
}

.site-header::after {
  display: none;
}

body.nav-open .site-header {
  --header-bg: rgba(9, 19, 40, 0.94);
  --header-text: #ffffff;
  --header-border: transparent;
  box-shadow: none;
}

.site-header:not(.is-scrolled) {
  background: rgba(0, 0, 0, 0);
  border-bottom: none;
}

.header-inner {
  width: min(var(--container-width), 94vw);
  margin: 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 4vw, 2.5rem);
  padding-inline: clamp(0.75rem, 2vw, 1.5rem);
}

.brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 200ms ease;
}

.brand img,
.brand__logo {
  display: block;
  max-height: 40px;
  width: auto;
}

.brand__text {
  color: inherit;
}

.brand__logo--light {
  display: none;
}

.site-header:not(.is-scrolled) .brand__logo--dark {
  display: none;
}

.site-header:not(.is-scrolled) .brand__logo--light {
  display: block;
}

.site-header.is-scrolled .brand__logo--dark {
  display: none;
}

.site-header.is-scrolled .brand__logo--light {
  display: block;
}

body.nav-open .site-header .brand__logo--dark {
  display: none;
}

body.nav-open .site-header .brand__logo--light {
  display: block;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.nav-toggle__bar {
  position: absolute;
  left: 50%;
  display: block;
  width: 24px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle__bar:nth-child(1) {
  top: 15px;
}

.nav-toggle__bar:nth-child(2) {
  top: 21px;
}

.nav-toggle__bar:nth-child(3) {
  top: 27px;
}

body.nav-open .nav-toggle__bar:nth-child(1) {
  transform: translate(-50%, 6px) rotate(45deg);
}

body.nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle__bar:nth-child(3) {
  transform: translate(-50%, -6px) rotate(-45deg);
}

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  color: inherit;
}

.primary-nav__inner {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.primary-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.8vw, 2rem);
}

.primary-nav__link,
.primary-nav__trigger {
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  transition: color 200ms ease;
}

.primary-nav__link {
  cursor: pointer;
  text-decoration: none;
}

.mega__link {
  font-family: inherit;
}

.primary-nav__link:hover,
.primary-nav__link:focus,
.primary-nav__trigger:hover,
.primary-nav__trigger:focus {
  color: rgba(255, 255, 255, 0.85);
}

.site-header.is-scrolled .primary-nav__link:hover,
.site-header.is-scrolled .primary-nav__link:focus,
.site-header.is-scrolled .primary-nav__trigger:hover,
.site-header.is-scrolled .primary-nav__trigger:focus {
  color: rgba(255, 255, 255, 0.85);
}

.primary-nav__trigger svg {
  transition: transform 200ms ease;
  stroke: currentColor;
  fill: none;
}

.has-dropdown {
  position: relative;
}

.has-dropdown.is-open .primary-nav__trigger svg {
  transform: rotate(180deg);
}

.has-dropdown .mega {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 12px;
  border-radius: 14px;
  background: var(--header-dropdown-bg);
  color: var(--header-dropdown-text);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 40px rgba(8, 16, 32, 0.24);
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
  z-index: 90;
}

.site-header.is-scrolled .has-dropdown .mega {
  border-color: rgba(148, 163, 184, 0.14);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
}

.has-dropdown.is-open .mega {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mega__grid {
  display: grid;
  gap: 6px;
}

.mega__link {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  transition: background 150ms ease, color 150ms ease;
}

.mega__link:hover,
.mega__link:focus {
  background: var(--header-dropdown-hover);
  color: #fff;
}

.site-header.is-scrolled .mega__link:hover,
.site-header.is-scrolled .mega__link:focus {
  color: var(--color-primary);
}

.primary-nav__cta {
  display: flex;
  align-items: center;
}

.primary-nav__cta .btn {
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.95rem;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  border: none;
  border-radius: 999px;
  background: var(--color-success);
  color: #fff;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 20px 44px rgba(34, 197, 94, 0.35);
  transition: transform var(--transition-base);
  z-index: 999;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus {
  transform: translateY(-4px);
}

.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.9);
  padding: 56px 0 24px;
}

.footer-top {
  width: min(var(--container-width), 94vw);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 1.4rem;
  color: inherit;
}

.footer-brand__logo {
  display: block;
  max-height: 36px;
  width: auto;
}

.footer-brand__text {
  letter-spacing: -0.02em;
}

.footer-heading {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.footer-copy {
  margin: 12px 0 0;
  color: rgba(226, 232, 240, 0.8);
}

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

.footer-list a {
  color: rgba(226, 232, 240, 0.85);
  transition: color var(--transition-base);
}

.footer-list a:hover,
.footer-list a:focus {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 32px;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.7);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 16px;
  padding: 10px 16px;
  background: var(--color-accent);
  color: #fff;
  z-index: 10000;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 32, 0.48);
  z-index: 900;
  pointer-events: none;
}

@media (max-width: 1023px) {
  .section--panel > .container {
    padding: 36px;
  }

  .header-inner {
    height: calc(var(--header-height) + 8px);
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(360px, 82vw);
    margin-left: 0;
    background: rgba(9, 19, 40, 0.96);
    backdrop-filter: blur(18px);
    transform: translateX(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 260ms ease, opacity 220ms ease;
    z-index: 1001;
    padding: calc(var(--header-height) + 24px) clamp(1.5rem, 6vw, 2.5rem) clamp(2rem, 6vw, 3rem);
    display: flex;
    align-items: stretch;
    color: #fff;
  }

  .primary-nav.is-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    flex: 1 1 auto;
  }

  .primary-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }

  .primary-nav__link,
  .primary-nav__trigger {
    width: 100%;
    justify-content: space-between;
    font-size: 0.95rem;
    padding: 14px 0;
    color: #fff;
  }

  .primary-nav__link:hover,
  .primary-nav__link:focus,
  .primary-nav__trigger:hover,
  .primary-nav__trigger:focus {
    color: rgba(255, 255, 255, 0.85);
  }

  .primary-nav__trigger svg {
    width: 16px;
    height: 16px;
  }

  .has-dropdown {
    width: 100%;
  }

  .has-dropdown .mega {
    position: static;
    min-width: 100%;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    color: rgba(226, 232, 240, 0.88);
    opacity: 1;
    pointer-events: none;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 240ms ease;
  }

  .has-dropdown.is-open .mega {
    pointer-events: auto;
    max-height: 560px;
    padding-top: 8px;
  }

  .mega__grid {
    gap: 8px;
  }

  .mega__link {
    padding: 10px 0;
    border-radius: 8px;
    color: #fff;
  }

  .mega__link:hover,
  .mega__link:focus {
    background: rgba(59, 130, 246, 0.22);
    color: #fff;
  }

  .primary-nav__cta {
    width: 100%;
    justify-content: flex-start;
  }

  .primary-nav__cta .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-block: clamp(4.5rem, 18vh, 6.5rem);
  }

  .hero__layout {
    gap: 40px;
    grid-template-columns: 1fr;
    grid-template-areas:
      'text'
      'media';
    text-align: center;
    justify-items: center;
  }

  .hero--cinematic {
    background-attachment: fixed;
  }

  .hero__text {
    max-width: 36rem;
    width: 100%;
    justify-items: center;
    text-align: center;
  }

  .hero__title {
    font-size: clamp(2rem, 6vw + 1rem, 2.4rem);
  }

  .hero__description,
  .hero__actions,
  .hero__footnote {
    width: 100%;
  }

  .hero__actions {
    justify-content: center;
    width: 100%;
  }

  .hero__actions .btn {
    width: min(100%, 320px);
  }

  .hero__chips {
    justify-content: center;
  }

  .hero__media {
    justify-content: center;
  }

  .model-swiper .swiper-slide,
  .testimonial-swiper .swiper-slide {
    width: 100% !important;
  }

  .model-swiper .card,
  .model-swiper .card--model,
  .testimonial-card {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
  }

  .model-swiper .card__body {
    padding: 18px 0 0;
  }

  .testimonial-card {
    gap: 18px;
    min-height: auto;
  }

  #modelos .container,
  #testimonios .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-inline: clamp(1rem, 5vw, 1.5rem);
  }

  #modelos .swiper-button-next,
  #modelos .swiper-button-prev {
    display: none;
  }

  .section--panel > .container {
    padding: 26px;
  }

  .cta-box {
    padding: 28px;
  }

  .contact-card,
  .contact-aside {
    padding: 24px;
  }

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

  .contact-form {
    gap: 14px;
  }

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

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tr {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 16px;
  }

  .compare-table td {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: none;
    background: rgba(15, 23, 42, 0.02);
    border-radius: 10px;
    padding: 12px;
  }

  .compare-table td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-soft);
  }

  .compare-table tr + tr {
    border-top: 1px solid rgba(148, 163, 184, 0.16);
  }
}

@media (max-width: 540px) {
  .contact-card,
  .contact-aside {
    padding: 20px;
  }

  .contact-form {
    gap: 12px;
  }

  .form-field {
    gap: 6px;
  }

  .form-field label {
    font-size: 0.95rem;
  }
}

.reduce-motion *,
.reduce-motion *::before,
.reduce-motion *::after {
  animation: none !important;
  transition: none !important;
}

.section--muted .card,
.section--muted .contact-card,
.section--muted .contact-aside {
  background: #fff;
}
