/* ===== Variables ===== */
:root {
  --color-primary: #ff6633;
  --color-primary-dark: #e55524;
  --color-secondary: #183d5a;
  --color-secondary-light: #1f4d73;
  --color-accent: #ffd166;
  --color-bg: #f4f7fb;
  --color-bg-alt: #eef3f8;
  --color-white: #ffffff;
  --color-text: #334155;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(24, 61, 90, 0.08);
  --shadow-md: 0 8px 24px rgba(24, 61, 90, 0.12);
  --shadow-lg: 0 16px 40px rgba(24, 61, 90, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --header-height: 126px;
  --brand-card-width: 254px;
  --brand-card-height: 112px;
  --color-instagram-hover: #1877f2;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-primary-dark);
}

ul {
  list-style: none;
}

address {
  font-style: normal;
}

/* ===== Skip link ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  top: 1rem;
}

/* ===== Container ===== */
.container {
  width: min(100% - 2rem, 1140px);
  margin-inline: auto;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 12px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-inline: 0;
  pointer-events: none;
  transition: transform var(--transition);
}

.header--scrolled {
  transform: translateY(-42px);
}

.header__topbar {
  width: 100%;
  background: transparent;
  pointer-events: none;
}

.header__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  width: min(100% - 2rem, 1170px);
  min-height: 38px;
  margin-inline: auto;
  padding: 0 1rem;
  background: #082b59;
  border-radius: 6px 6px 0 0;
  box-shadow: 0 12px 30px rgba(4, 21, 37, 0.2);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-white);
  text-transform: none;
  letter-spacing: 0;
  pointer-events: auto;
}

.header__topbar-contact {
  display: flex;
  align-items: center;
  order: 1;
  gap: 1.15rem;
  min-width: 0;
}

.header__topbar-action {
  display: none !important;
}

.header__topbar a,
.header__topbar button,
.header__topbar p {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--color-white);
  white-space: nowrap;
}

.header__topbar button {
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.header__topbar a:hover,
.header__topbar button:hover {
  color: var(--color-primary);
}

.header__topbar svg {
  width: 18px;
  height: 18px;
  color: var(--color-white);
}

.header__topbar strong {
  color: var(--color-primary);
}

.header__topbar p {
  order: 2;
  margin-left: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.header__inner {
  display: flex;
  align-items: center;
  position: relative;
  width: min(100% - 2rem, 1170px);
  min-height: 74px;
  margin-inline: auto;
  margin-top: 0;
  padding: 0 0 0 var(--brand-card-width);
  background: rgba(255, 255, 255, 0.98);
  border-radius: 0 0 6px 6px;
  border: none;
  box-shadow:
    0 12px 40px rgba(4, 21, 37, 0.18),
    inset 0 -1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  pointer-events: auto;
  overflow: visible;
}

.header--scrolled .header__inner {
  box-shadow:
    0 16px 48px rgba(4, 21, 37, 0.22),
    inset 0 -1px 0 rgba(255, 255, 255, 0.55);
}

.header__logo-box {
  position: absolute;
  left: 0;
  top: calc(((var(--brand-card-height) - 63px) * -1) + 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: var(--brand-card-width);
  min-height: var(--brand-card-height);
  margin: 0;
  padding: 1.1rem 2rem;
  background: var(--color-white);
  clip-path: none;
  border-right: 1px solid var(--color-border);
  border-radius: 6px 0 0 6px;
  box-shadow: 14px 0 26px rgba(4, 21, 37, 0.22);
  z-index: 5;
}

.header__logo-box:hover {
  color: inherit;
}

.header__logo-box .logo__img {
  width: auto;
  height: 82px;
  max-width: 220px;
  object-fit: contain;
}

.header__nav-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  align-self: stretch;
  padding: 0 1rem 0 0;
  min-width: 0;
  box-shadow: none;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.header__actions--mobile {
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.header__actions--mobile [data-modal-open="modal-horarios"] {
  display: none;
}

.header__action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  border: none;
  background: none;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition), transform var(--transition);
}

.header__action-btn:hover {
  color: var(--color-primary-dark);
}

.header__action-btn--solo {
  gap: 0;
}

.header__action-btn--solo:hover {
  transform: scale(1.06);
}

.header__action-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 8px 18px rgba(255, 102, 51, 0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.header__action-btn:hover .header__action-icon-wrap {
  background: var(--color-primary-dark);
}

.header__action-btn--solo:hover .header__action-icon-wrap {
  transform: scale(1.06);
}

.header__action-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: block;
}

.header__action-btn--instagram:hover {
  color: var(--color-instagram-hover);
}

.header__action-btn--instagram:hover .header__action-icon-wrap {
  background: var(--color-instagram-hover);
  box-shadow: 0 3px 10px rgba(24, 119, 242, 0.35);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.logo:hover {
  color: var(--color-secondary);
}

.logo__img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

@media (min-width: 992px) {
  .header__logo-box .logo__img {
    height: 82px;
    max-width: 220px;
  }
}

.header__actions--desktop {
  display: none;
}

.logo__text {
  font-size: 0.85rem;
  line-height: 1.2;
  font-weight: 500;
}

.logo__text strong {
  display: block;
  font-weight: 700;
  color: var(--color-primary);
}

/* Nav */
.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: stretch;
  min-width: 0;
}

.nav__list {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: nowrap;
  justify-content: center;
  height: 100%;
  border-left: 1px solid var(--color-border);
}

.nav__list li {
  display: flex;
  align-items: stretch;
}

.nav__list li:last-child {
  align-items: center;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 1.05rem;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--color-secondary);
  border: 0;
  border-right: 1px solid var(--color-border);
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

button.nav__link {
  appearance: none;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.nav__link:hover,
.nav__link--active {
  background: rgba(255, 102, 51, 0.08);
  color: var(--color-primary);
  transform: none;
}

.nav__link--cta {
  align-self: center;
  height: auto;
  margin-left: 0.85rem;
  padding: 0.78rem 1.45rem;
  border: 1.5px solid var(--color-primary);
  border-radius: 4px;
  background: transparent;
  color: var(--color-primary) !important;
  box-shadow: none;
}

.nav__link--cta:hover {
  background: var(--color-primary);
  color: var(--color-white) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  flex-shrink: 0;
  padding: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.nav-toggle__bar {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn__icon {
  width: 1.25rem;
  height: 1.25rem;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(255, 102, 51, 0.4);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--color-white);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.btn--whatsapp:hover {
  background: #1fb855;
  color: var(--color-white);
}

.btn--ghost {
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(4, 21, 37, 0.2);
}

.btn--ghost:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.16);
}

.btn--block {
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: max(720px, 100dvh);
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 9rem;
  background: #071827;
  overflow: hidden;
}

.hero__backgrounds {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.9s ease, transform 6s ease;
  z-index: 0;
}

.hero__bg--active {
  opacity: 1;
  transform: scale(1.01);
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(100deg, rgba(4, 18, 32, 0.98) 0%, rgba(7, 29, 47, 0.9) 36%, rgba(7, 29, 47, 0.54) 68%, rgba(4, 18, 32, 0.34) 100%),
    linear-gradient(to top, rgba(5, 22, 36, 0.92) 0%, rgba(5, 22, 36, 0.12) 52%),
    repeating-linear-gradient(120deg, rgba(255, 102, 51, 0.08) 0 1px, transparent 1px 120px);
  pointer-events: none;
}

.hero__slider {
  position: relative;
  z-index: 3;
  flex: 1;
  width: 100%;
  min-height: 430px;
  padding-bottom: 2rem;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem 0 3rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease, visibility 0.7s;
}

.hero__slide--active {
  position: relative;
  width: 100%;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.hero__slide--exit {
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero__content.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: min(100% - 2rem, 1140px);
}

.hero__eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 1.05rem;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  background: rgba(255, 102, 51, 0.18);
  border: 1px solid rgba(255, 102, 51, 0.25);
  border-radius: var(--radius-full);
}

.hero__title {
  width: 100%;
  max-width: 1080px;
  font-size: clamp(2.35rem, 4.45vw, 4.15rem);
  font-weight: 950;
  line-height: 1;
  color: var(--color-white);
  margin-bottom: 1.35rem;
  text-align: center;
  letter-spacing: 0;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.hero__title span {
  color: var(--color-primary);
}

.hero__subtitle {
  width: 100%;
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 2rem;
  max-width: 620px;
  text-align: center;
}

.hero__actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: center;
}

.hero__trust-strip {
  position: absolute;
  left: 50%;
  bottom: 1.45rem;
  z-index: 7;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 18px 40px rgba(4, 21, 37, 0.18);
  transform: translateX(-50%);
}

.hero__trust-item {
  position: relative;
  min-height: 106px;
  padding: 1.15rem 1.25rem 1.1rem;
  border-right: 1px solid var(--color-border);
}

.hero__trust-item:last-child {
  border-right: 0;
}

.hero__trust-item span {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--color-primary);
}

.hero__trust-item strong {
  display: block;
  color: var(--color-secondary);
  line-height: 1.2;
}

.hero__trust-item p {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--color-text-muted);
}

.hero__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  width: min(100% - 2rem, 1260px);
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
}

.hero__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  background: rgba(24, 61, 90, 0.55);
  border-radius: 50%;
  color: var(--color-white);
  cursor: pointer;
  pointer-events: auto;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.hero__arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.12);
  box-shadow: 0 6px 20px rgba(255, 102, 51, 0.45);
}

.hero__arrow:active {
  transform: scale(1.02);
}

.hero__arrow:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.hero__arrow svg {
  width: 24px;
  height: 24px;
}

.hero__dots {
  display: none;
  gap: 0.5rem;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}

.hero__dot:hover {
  background: rgba(255, 102, 51, 0.5);
  border-color: var(--color-primary);
  transform: scale(1.15);
}

.hero__dot--active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: scale(1.15);
}

.hero__wave {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 5;
  pointer-events: none;
}

.hero__wave svg {
  width: 100%;
  height: 80px;
}

/* ===== Sections ===== */
.section {
  padding: 5rem 0;
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__header--left {
  text-align: left;
  margin-bottom: 1.5rem;
}

.section__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.section__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.section__title--light {
  color: var(--color-white);
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin-inline: auto;
}

.section__header--left .section__subtitle {
  margin-inline: 0;
}

/* ===== Card base ===== */
.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ===== Highlights ===== */
.highlights {
  position: relative;
  z-index: 8;
  padding-top: 4rem;
}

.highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.highlight-card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem;
  text-align: left;
  border: 1px solid var(--color-border);
  border-bottom: 4px solid transparent;
}

.highlight-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.highlight-card:hover::after {
  transform: scaleX(1);
}

.highlight-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 0 1rem;
  padding: 12px;
  background: rgba(255, 102, 51, 0.12);
  border-radius: var(--radius-md);
  color: var(--color-primary);
}

.highlight-card__icon svg {
  width: 100%;
  height: 100%;
}

.highlight-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.highlight-card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ===== About ===== */
.about {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8fbff 0%, #eef4fa 100%);
  color: var(--color-text);
  padding: 5.5rem 0 5rem;
}

.about .wave-top,
.about .wave-bottom {
  display: none;
}

.wave-top,
.wave-bottom {
  line-height: 0;
}

.wave-top svg,
.wave-bottom svg {
  width: 100%;
  height: 60px;
}

.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.85fr);
  gap: 3rem;
  align-items: center;
  padding: 0 0 2.25rem;
}

.about__content {
  position: relative;
  padding: 2.25rem;
  background: var(--color-white);
  border: 1px solid rgba(24, 61, 90, 0.1);
  border-left: 6px solid var(--color-primary);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 42px rgba(24, 61, 90, 0.1);
}

.about .section__title--light {
  color: var(--color-secondary);
}

.about__text {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: var(--color-text);
}

.about__text strong {
  color: var(--color-primary);
}

.about__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 360px;
  overflow: hidden;
  background: #0b2238;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  box-shadow: 0 22px 44px rgba(11, 34, 56, 0.18);
  isolation: isolate;
}

.about__visual::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  pointer-events: none;
}

.about__visual::after {
  display: none;
}

.about__logo {
  width: 200px;
  opacity: 0.15;
  position: absolute;
}

.about__mascot {
  max-width: min(340px, 78%);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.32));
}

.about-store-carousel {
  position: relative;
  width: 100%;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.about-store-carousel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 24, 39, 0.08) 0%, rgba(7, 24, 39, 0.7) 100%),
    linear-gradient(90deg, rgba(7, 24, 39, 0.42), transparent 55%);
  pointer-events: none;
}

.about-store-carousel__track {
  position: absolute;
  inset: 0;
}

.about-store-carousel__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.8s ease, transform 5.5s ease;
}

.about-store-carousel__image--active {
  opacity: 1;
  transform: scale(1);
}

.about-store-carousel__caption {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.35rem;
  z-index: 2;
  color: var(--color-white);
}

.about-store-carousel__caption span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.about-store-carousel__caption strong {
  display: block;
  max-width: 360px;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  line-height: 1.15;
}

.about-store-carousel__dots {
  position: absolute;
  right: 1.4rem;
  bottom: 1.5rem;
  z-index: 3;
  display: flex;
  gap: 0.5rem;
}

.about-store-carousel__dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.about-store-carousel__dot--active {
  background: var(--color-primary);
  transform: scale(1.35);
}

.about__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  padding-bottom: 1.75rem;
}

.mvv-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 1.75rem;
  background: var(--color-white);
  border: 1px solid rgba(24, 61, 90, 0.1);
  border-top: 4px solid var(--color-primary);
  border-radius: var(--radius-sm);
  box-shadow: 0 14px 30px rgba(24, 61, 90, 0.08);
}

.mvv-card:hover {
  border-color: rgba(255, 102, 51, 0.28);
}

.mvv-card::after {
  content: "";
  position: absolute;
  right: 1.35rem;
  top: 1.45rem;
  width: 38px;
  height: 4px;
  background: rgba(255, 102, 51, 0.22);
  pointer-events: none;
}

.mvv-card__badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  background: rgba(255, 102, 51, 0.12);
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
}

.mvv-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.mvv-card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.mvv-card__list {
  display: grid;
  gap: 0.45rem;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.mvv-card__list li::marker {
  color: var(--color-primary);
  font-weight: 800;
}

.about__slogan {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  margin: 1rem auto 0;
  padding: 0;
  max-width: 980px;
  background:
    linear-gradient(135deg, #0b2238 0%, #183d5a 100%);
  border: 1px solid rgba(24, 61, 90, 0.18);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 40px rgba(11, 34, 56, 0.16);
}

.about__slogan-image {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(7, 24, 39, 0.2), rgba(7, 24, 39, 0.62)),
    url("images/slider/slide-3.jpg") center / cover fixed;
}

.about__slogan-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

.about__slogan strong {
  display: block;
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.15;
  color: var(--color-white);
}

.about__slogan p {
  max-width: none;
  color: rgba(255, 255, 255, 0.8);
}

.about__cta {
  display: flex;
  justify-content: center;
  margin: 1.5rem auto 0;
}

.about__cta .btn {
  min-width: min(100%, 260px);
  justify-content: center;
}

/* ===== Services ===== */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-border);
  border-top: 0;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.service-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  border: 18px solid rgba(255, 102, 51, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.service-card__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ===== Products ===== */
.products {
  position: relative;
  background:
    linear-gradient(180deg, #ffffff 0%, #eef4fa 100%);
  padding: 5rem 0;
}

.products .wave-top {
  display: none;
}

.products .container {
  padding-top: 0;
  padding-bottom: 0;
}

.products .section__title {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  min-height: 116px;
  padding: 1.1rem;
  background: var(--color-white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(24, 61, 90, 0.1);
  text-align: left;
  color: var(--color-secondary);
  box-shadow: 0 12px 28px rgba(24, 61, 90, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--color-primary);
  transform: scaleY(0.34);
  transform-origin: center;
  transition: transform var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  color: var(--color-secondary);
}

.product-card:hover::before {
  transform: scaleY(1);
}

.product-card__icon {
  flex: 0 0 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--color-primary);
  background: rgba(255, 102, 51, 0.1);
  border-radius: var(--radius-sm);
}

.product-card__icon svg {
  width: 34px;
  height: 34px;
}

.product-card__name {
  max-width: none;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-secondary);
}

/* ===== Reviews ===== */
.reviews {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 102, 51, 0.12), transparent 28%),
    linear-gradient(135deg, #071827 0%, #0d3556 64%, #10253b 100%);
  color: var(--color-white);
}

.reviews .section__title,
.reviews .section__subtitle {
  color: var(--color-white);
}

.reviews .section__subtitle {
  opacity: 0.78;
}

.reviews__summary {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2rem;
}

.reviews__score-card,
.reviews__summary-text {
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.reviews__score-card {
  display: grid;
  place-items: center;
  gap: 0.35rem;
  padding: 1.5rem;
  text-align: center;
  background: var(--color-secondary);
  color: var(--color-white);
}

.reviews__score {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 900;
}

.reviews__stars,
.review-card__stars {
  display: block;
  color: #fbbc04;
  letter-spacing: 0.08em;
}

.reviews__source {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.reviews__summary-text {
  display: flex;
  align-items: center;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.12);
  font-size: 1.05rem;
  font-weight: 600;
}

.reviews__slider {
  position: relative;
  padding: 0 4.5rem 2.5rem;
}

.reviews__viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  background: var(--color-white);
}

.reviews__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  flex: 0 0 100%;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background:
    linear-gradient(135deg, rgba(255, 102, 51, 0.08), transparent 36%),
    var(--color-white);
}

.review-card__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.review-card__avatar {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(255, 102, 51, 0.28);
}

.review-card__name {
  font-size: 1.1rem;
  line-height: 1.25;
  color: var(--color-secondary);
}

.review-card__meta {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.review-card__stars {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.review-card__text {
  max-width: 880px;
  color: var(--color-text);
  font-size: clamp(1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.reviews__arrow {
  position: absolute;
  top: calc(50% - 1.25rem);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-secondary);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.reviews__arrow:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.reviews__arrow svg {
  width: 24px;
  height: 24px;
}

.reviews__arrow--prev {
  left: 0;
}

.reviews__arrow--next {
  right: 0;
}

.reviews__dots {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  transform: translateX(-50%);
}

.reviews__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), width var(--transition);
}

.reviews__dot--active {
  width: 28px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
}

/* ===== Contact ===== */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.contact__label-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  color: var(--color-primary);
  background: rgba(255, 102, 51, 0.1);
  border-radius: 50%;
}

.contact__label-icon svg {
  width: 15px;
  height: 15px;
}

.contact__label-icon--whatsapp {
  color: #1fcf63;
  background: rgba(31, 207, 99, 0.12);
}

.contact__label-icon--google {
  background: var(--color-white);
  box-shadow: 0 0 0 1px var(--color-border);
}

.contact__label-icon--google svg {
  width: 17px;
  height: 17px;
}

.contact__label-icon--instagram {
  color: var(--color-primary);
  background: rgba(255, 102, 51, 0.12);
}

.contact__item a,
.contact__item p,
.contact__item address {
  color: var(--color-secondary);
  font-weight: 500;
}

.contact__form {
  padding: 2rem;
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 102, 51, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-secondary);
  color: rgba(255, 255, 255, 0.85);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  min-height: 64px;
  padding-block: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}

.footer__bottom p + p {
  padding-left: 1rem;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.footer__bottom strong {
  color: var(--color-primary);
}

/* ===== WhatsApp float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  border: 0;
  background: #25d366;
  color: var(--color-white);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  animation: pulse-wa 2s ease-in-out infinite;
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: var(--color-white);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@keyframes pulse-wa {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 0 12px rgba(37, 211, 102, 0.2);
  }
}

/* ===== Modals ===== */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal--open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 61, 90, 0.65);
  cursor: pointer;
}

.modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  max-height: min(90vh, 640px);
  overflow-y: auto;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.3s ease;
}

.modal--open .modal__dialog {
  transform: translateY(0) scale(1);
}

.modal__dialog--hours {
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}

.modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
}

.modal__close:hover {
  background: var(--color-border);
}

.modal__close--light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.modal__close--light:hover {
  background: rgba(255, 255, 255, 0.25);
}

.modal__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 1.25rem;
  padding-right: 2rem;
}

.modal__title--light {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 1.5rem;
}

.modal-links {
  display: flex;
  flex-direction: column;
}

.modal-links__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 0;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.modal-links__item:hover {
  color: var(--color-primary);
}

.modal-links li:last-child .modal-links__item {
  border-bottom: none;
}

.modal-links__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-text-muted);
}

.modal-links__icon svg {
  width: 18px;
  height: 18px;
}

.modal-links__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.modal-links__text strong {
  font-size: 0.95rem;
  color: var(--color-secondary);
}

.modal-links__item:hover .modal-links__text strong {
  color: var(--color-primary);
}

.modal-links__text span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  word-break: break-all;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hours-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hours-list__row--spaced {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}

.hours-list dt {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-white);
  letter-spacing: 0.04em;
}

.hours-list dd {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-primary);
  text-align: right;
  letter-spacing: 0.02em;
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .hero__controls {
    top: 54%;
    width: calc(100% - 1.5rem);
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
  }

  .section__header--left {
    text-align: center;
  }

  .about .section__header--left {
    text-align: left;
  }

  .about__visual {
    width: min(100%, 460px);
    margin-inline: auto;
  }

  .about__cards {
    grid-template-columns: 1fr;
  }

  .about__slogan {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .reviews__summary {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 1180px) {
  :root {
    --brand-card-width: 220px;
    --brand-card-height: 112px;
  }

  .header__topbar-inner {
    gap: 1rem;
  }

  .header__topbar-contact {
    gap: 0.85rem;
  }

  .header__topbar a,
  .header__topbar button,
  .header__topbar p {
    font-size: 0.74rem;
  }

  .header__logo-box {
    padding-inline: 1.35rem;
  }

  .header__logo-box .logo__img {
    height: 76px;
    max-width: 190px;
  }

  .header__actions--desktop {
    display: none;
  }

  .header__nav-wrap {
    justify-content: flex-end;
  }

  .nav__link {
    padding-inline: 0.9rem;
    font-size: 0.7rem;
  }

  .nav__link--cta {
    margin-left: 0.75rem;
    padding: 0.7rem 1rem;
  }
}

@media (min-width: 769px) and (max-width: 1180px) {
  .hero__controls {
    width: calc(100% - 1rem);
  }

  .hero__content.container {
    width: min(100% - 8rem, 1140px);
  }
}

@media (max-width: 992px) {
  .header__actions--desktop {
    display: none;
  }

  .header__actions--mobile {
    display: none;
  }

  .header__nav-wrap {
    justify-content: flex-end;
  }

  .nav {
    justify-content: flex-start;
  }

  .header__topbar-inner {
    width: calc(100% - 1rem);
    padding-inline: 0.75rem;
  }

  .header__topbar a,
  .header__topbar button,
  .header__topbar p {
    font-size: 0.66rem;
  }

  .header__topbar svg {
    width: 15px;
    height: 15px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 86px;
    --brand-card-width: 170px;
    --brand-card-height: 70px;
  }

  .header {
    top: 0;
    transform: none;
  }

  .header--scrolled {
    transform: none;
  }

  .header__topbar {
    display: none;
  }

  .header__inner {
    width: calc(100% - 1.5rem);
    min-height: 70px;
    margin-top: 0.75rem;
    padding-left: var(--brand-card-width);
    border-radius: 6px;
    overflow: visible;
  }

  .header__logo-box {
    position: absolute;
    left: 0;
    top: 0;
    width: var(--brand-card-width);
    min-height: 70px;
    margin: 0;
    padding: 0.5rem 1rem;
    border-right: 1px solid var(--color-border);
    border-radius: 6px 0 0 6px;
    box-shadow: none;
  }

  .header__logo-box .logo__img {
    height: 52px;
    max-width: 150px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 2.5rem);
    padding-bottom: 4rem;
  }

  .hero__slider {
    order: 1;
    min-height: 470px;
  }

  .hero__slide {
    padding: 1.5rem 0 2rem;
  }

  .hero__title {
    max-width: 680px;
  }

  .hero__actions-row {
    width: min(100%, 360px);
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions-row .btn {
    width: 100%;
  }

  .hero__controls {
    order: 2;
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    justify-content: center;
    margin: -1.5rem auto 1.35rem;
    transform: none;
  }

  .hero__arrow {
    display: none;
  }

  .hero__dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }

  .hero__dot {
    width: 7px;
    height: 7px;
    border: 0;
    background: var(--color-primary);
    opacity: 0.65;
    box-shadow: 0 0 0 2px rgba(255, 102, 51, 0.08);
  }

  .hero__dot--active {
    opacity: 1;
    transform: scale(1.25);
    box-shadow: 0 0 0 4px rgba(255, 102, 51, 0.16);
  }

  .hero__trust-strip {
    order: 3;
    position: relative;
    left: auto;
    bottom: auto;
    grid-template-columns: 1fr 1fr;
    width: min(100% - 2rem, 640px);
    margin: 0 auto;
    transform: none;
  }

  .hero__trust-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .hero__trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .about {
    padding: 4rem 0;
  }

  .about__content {
    padding: 1.6rem;
  }

  .about__visual {
    min-height: 310px;
  }

  .about-store-carousel {
    min-height: 310px;
  }

  .about__mascot {
    max-width: min(300px, 82%);
  }

  .mvv-card {
    padding: 1.35rem;
  }

  .products {
    padding: 4rem 0;
  }

  .about__slogan-image {
    min-height: 190px;
    background-attachment: scroll;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1004;
  }

  .header__actions--mobile {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1003;
    width: min(230px, 58vw);
    height: 100vh;
    height: 100dvh;
    padding: 5rem 0.9rem 2rem;
    background: var(--color-white);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    overflow-y: auto;
  }

  .nav--open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    height: auto;
    border-left: 0;
  }

  .nav__list li,
  .nav__list li:last-child {
    display: block;
    align-items: stretch;
  }

  .nav__link {
    display: flex;
    align-items: center;
    height: auto;
    min-height: 46px;
    padding: 0.8rem 0.85rem;
    font-size: 0.78rem;
    line-height: 1;
    white-space: nowrap;
    border-right: 0;
    border-radius: var(--radius-sm);
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background var(--transition);
  }

  .nav--open .nav__link {
    opacity: 1;
    transform: translateX(0);
  }

  .nav--open .nav__list li:nth-child(1) .nav__link { transition-delay: 0.05s; }
  .nav--open .nav__list li:nth-child(2) .nav__link { transition-delay: 0.1s; }
  .nav--open .nav__list li:nth-child(3) .nav__link { transition-delay: 0.15s; }
  .nav--open .nav__list li:nth-child(4) .nav__link { transition-delay: 0.2s; }
  .nav--open .nav__list li:nth-child(5) .nav__link { transition-delay: 0.25s; }
  .nav--open .nav__list li:nth-child(6) .nav__link { transition-delay: 0.3s; }

  .nav__link--cta {
    margin-left: 0;
    margin-top: 0.5rem;
    justify-content: center;
    text-align: center;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(24, 61, 90, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
    z-index: 999;
  }

  .nav-overlay--visible {
    opacity: 1;
    visibility: visible;
  }

  .logo__text {
    font-size: 0.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .product-card {
    min-height: 132px;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .reviews__slider {
    padding: 0 0 3.75rem;
  }

  .reviews__arrow {
    top: auto;
    bottom: 0;
  }

  .reviews__arrow--prev {
    left: calc(50% - 5rem);
  }

  .reviews__arrow--next {
    right: calc(50% - 5rem);
  }

  .reviews__dots {
    bottom: 1.1rem;
  }
}

@media (max-width: 480px) {
  :root {
    --brand-card-width: 170px;
    --brand-card-height: 64px;
  }

  .header {
    top: 0;
    padding-inline: 0;
  }

  .header--scrolled {
    top: 0;
  }

  .header__inner {
    width: calc(100% - 1rem);
    min-height: 64px;
    padding: 0 0 0 var(--brand-card-width);
  }

  .header__logo-box {
    width: var(--brand-card-width);
    min-height: 64px;
    padding: 0.4rem 0.75rem;
  }

  .hero__controls {
    gap: 1rem;
  }

  .hero__actions-row {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions-row .btn {
    width: 100%;
  }

  .hero__arrow {
    width: 42px;
    height: 42px;
  }

  .header__logo-box .logo__img {
    height: 46px;
    max-width: 124px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .about__slogan {
    padding: 1.5rem;
  }

  .product-card {
    min-height: 124px;
    padding: 0.9rem;
  }

  .product-card__icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .product-card__name {
    font-size: 0.85rem;
  }

  .review-card {
    padding: 1.35rem;
  }

  .review-card__text {
    font-size: 1rem;
  }

  .hero__trust-strip {
    grid-template-columns: 1fr;
  }

  .hero__trust-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--color-border);
  }

  .hero__trust-item:last-child {
    border-bottom: 0;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 1rem;
    right: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
