:root {
  --red: #c01010;
  --red-dark: #8f0c0c;
  --blue: #102060;
  --blue-dark: #08143f;
  --yellow: #f0e000;
  --ink: #172033;
  --muted: #5e687b;
  --line: #dde4ef;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --radius: 8px;
  --shadow: 0 20px 55px rgba(15, 32, 61, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(221, 228, 239, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-logo {
  display: grid;
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(15, 32, 61, 0.12));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: #31405b;
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--red);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(70px, 12vh, 130px) clamp(18px, 6vw, 76px);
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 40%, rgba(255, 255, 255, 0.26) 70%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(12, 53, 113, 0.14), rgba(215, 25, 32, 0.12));
}

.hero-content {
  width: min(690px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  color: var(--blue-dark);
  font-size: clamp(2.45rem, 6vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--blue-dark);
  font-size: clamp(1.85rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-subtitle {
  max-width: 620px;
  color: #2f3c55;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.delivery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(15, 32, 61, 0.2);
}

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

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

.btn-outline {
  color: var(--blue-dark);
  background: #fff;
  border-color: rgba(21, 89, 183, 0.26);
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.trust-list li {
  padding: 10px 12px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 89, 183, 0.16);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

.section {
  padding: clamp(60px, 9vw, 110px) clamp(18px, 6vw, 76px);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

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

.benefit-card {
  min-height: 260px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(15, 32, 61, 0.07);
}

.icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  color: #fff;
  background: var(--blue);
  border-radius: 8px;
}

.icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.section-benefits {
  background: linear-gradient(180deg, #fff, var(--soft));
}

.delivery-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
  color: #fff;
  background: var(--blue-dark);
}

.delivery-band h2,
.delivery-band p,
.delivery-band .eyebrow {
  color: #fff;
}

.delivery-copy {
  width: min(760px, 100%);
}

.delivery-image {
  width: 100%;
  max-width: 360px;
  height: min(520px, 58vw);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
  border: 4px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  justify-self: end;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 900;
}

.offer-panel {
  display: grid;
  grid-template-columns: minmax(130px, 0.85fr) minmax(0, 1fr);
  gap: 16px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.offer-panel img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.offer-panel-content {
  display: grid;
  align-content: center;
  gap: 12px;
}

.offer-panel strong {
  color: var(--blue-dark);
  font-size: 1.4rem;
}

.offer-panel em {
  margin-top: -6px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.offer-panel-content div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.offer-panel span {
  min-height: 76px;
  display: grid;
  place-items: center;
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid rgba(21, 89, 183, 0.14);
  border-radius: 8px;
  font-weight: 900;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.info-strip > div {
  display: grid;
  gap: 8px;
  min-height: 170px;
  align-content: center;
  padding: 28px;
  background: #fff;
}

.info-label {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.info-strip strong {
  color: var(--blue-dark);
  font-size: 1.2rem;
}

.info-strip a {
  color: var(--blue);
  font-weight: 900;
}

.schedule-list {
  display: grid;
  gap: 6px;
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
}

.schedule-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.schedule-list b {
  color: var(--blue-dark);
  white-space: nowrap;
}

.holiday-note {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  background: #fff;
}

.map-copy {
  display: grid;
  justify-items: start;
}

.map-frame {
  position: relative;
  width: 100%;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(15, 32, 61, 0.12);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

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

.faq-list {
  display: grid;
  gap: 10px;
  width: min(920px, 100%);
}

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 66px;
  padding: 18px 20px;
  color: var(--blue-dark);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  text-align: left;
}

.faq-item strong {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
}

.faq-answer.is-open {
  display: block;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(48px, 7vw, 84px) clamp(18px, 6vw, 76px);
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--blue));
}

.final-cta h2,
.final-cta .eyebrow {
  color: #fff;
}

.final-cta h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 76px);
  color: #fff;
  background: #101827;
  font-weight: 800;
}

.site-footer a {
  color: var(--yellow);
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.float-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 154px;
  min-height: 50px;
  padding: 0 16px;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(15, 32, 61, 0.25);
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 32, 61, 0.3);
}

.float-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.float-whatsapp {
  background: #1fa855;
}

.float-instagram {
  background: linear-gradient(135deg, #6d2bd9, #d62976 52%, #f0b400);
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.86) 62%, rgba(255, 255, 255, 0.42) 100%),
      linear-gradient(180deg, rgba(12, 53, 113, 0.14), rgba(215, 25, 32, 0.12));
  }

  .benefit-grid,
  .info-strip {
    grid-template-columns: 1fr;
  }

  .delivery-band,
  .final-cta {
    align-items: flex-start;
  }

  .delivery-band {
    grid-template-columns: 1fr;
  }

  .delivery-image {
    justify-self: start;
    width: min(360px, 100%);
    height: auto;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .map-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: auto;
  }

  .brand {
    min-width: 0;
  }

  .header-cta {
    flex: 1 1 auto;
  }

  .hero {
    padding-top: 54px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .btn {
    width: 100%;
  }

  .benefit-card {
    min-height: auto;
  }

  .offer-panel {
    grid-template-columns: 1fr;
  }

  .offer-panel img {
    min-height: 280px;
  }

  .map-frame {
    min-height: 300px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .float-btn {
    min-width: 0;
    padding: 0 12px;
  }
}
