:root {
  --bg: #fbf7ef;
  --bg-soft: #f4ede1;
  --surface: #fffdf8;
  --navy: #071d2f;
  --navy-soft: #12344f;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --text: #132334;
  --muted: #64707b;
  --line: #dfd7c9;
  --accent: #d8bd7a;
  --accent-soft: #f1dfb2;
  --shadow: 0 12px 28px rgba(23, 29, 35, 0.12);
  --font-heading:
    'Nunito', 'Source Sans 3', system-ui, -apple-system, sans-serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.58;
  padding-bottom: 82px;
  overflow-x: hidden;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(216, 189, 122, 0.8);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: var(--font-heading);
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.05rem, 10vw, 3.45rem);
}

h2 {
  font-size: clamp(2rem, 7vw, 3rem);
}

h3 {
  font-size: 1.45rem;
}

h4 {
  font-size: 1.04rem;
}

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 0.55rem clamp(1rem, 5vw, 3rem);
  background: rgba(251, 247, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.logo {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: 58vw;
  overflow: hidden;
  border-radius: 6px;
}

.logo__img {
  width: 100%;
  height: auto;
}

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

.logo__text {
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.logo--footer {
  width: 150px;
}

.nav__toggle {
  display: grid;
  gap: 5px;
  width: 42px;
  height: 42px;
  place-content: center;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 27px;
  height: 3px;
  background: var(--navy);
  border-radius: 999px;
}

.nav__list {
  position: absolute;
  top: calc(100% + 10px);
  right: clamp(1rem, 5vw, 3rem);
  left: clamp(1rem, 5vw, 3rem);
  display: none;
  list-style: none;
  margin: 0;
  padding: 0.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nav__list.is-open {
  display: grid;
}

.nav__list a {
  display: block;
  padding: 0.72rem 0.85rem;
  border-radius: 6px;
  color: var(--navy);
  font-weight: 800;
}

.nav__list a:hover {
  background: var(--bg-soft);
}

.section {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.3rem 0;
  scroll-margin-top: 76px;
}

.section--separated {
  border-top: 1px solid var(--line);
}

.section__header {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.35rem;
}

.section__header p {
  max-width: 67ch;
  font-size: 1rem;
}

.hero {
  position: relative;
  display: grid;
  min-height: 455px;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero__media {
  min-height: 455px;
  background:
    linear-gradient(
      90deg,
      rgba(251, 247, 239, 0.99) 0%,
      rgba(251, 247, 239, 0.95) 50%,
      rgba(251, 247, 239, 0.54) 100%
    ),
    linear-gradient(
      180deg,
      rgba(251, 247, 239, 0.22),
      rgba(251, 247, 239, 0.7)
    ),
    url('../assets/hero-knife.webp') center right 28% / cover no-repeat;
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: 1.2rem 0 1.5rem;
}

.hero__subtitle {
  max-width: 18.5rem;
  margin-top: 0.85rem;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.38;
}

.hero__intro {
  max-width: 19.5rem;
  margin-top: 0.65rem;
  color: var(--text);
  font-size: 0.98rem;
  font-weight: 650;
}

.hero__actions {
  display: grid;
  gap: 0.62rem;
  width: min(100%, 250px);
  margin-top: 1.15rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.72rem 1rem;
  border: 2px solid var(--navy);
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn svg {
  width: 22px;
  height: 22px;
  margin-right: 0.55rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 10px 18px rgba(7, 29, 47, 0.2);
}

.btn--whatsapp {
  background: var(--whatsapp);
  border-color: var(--whatsapp);
  color: #071d2f;
  box-shadow: 0 10px 18px rgba(18, 140, 74, 0.22);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  color: #fff;
}

.btn--secondary {
  background: rgba(255, 253, 248, 0.88);
  color: var(--navy);
}

.highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.1rem 0 1.35rem;
  border-bottom: 1px solid var(--line);
}

.highlight {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  text-align: center;
}

.highlight img {
  width: min(100%, 96px);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(23, 29, 35, 0.12);
}

.highlight p {
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 0.35rem;
}

.quick-links a {
  padding: 0.45rem 0.65rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.15;
}

.quick-links a:hover {
  background: var(--bg-soft);
}

.quick-links--footer {
  padding: 0 0 1.1rem;
}

.service-grid,
.pricing-grid,
.info-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.pricing-card,
.info-card,
.location-card,
.contact-method {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card {
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card__body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.badge {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  padding: 0.33rem 0.65rem;
  background: var(--accent-soft);
  border: 1px solid #d4b56d;
  border-radius: 6px;
  color: var(--navy-soft);
  font-size: 0.85rem;
  font-weight: 900;
  line-height: 1.15;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin-top: 0.2rem;
}

.link-row a {
  color: var(--navy);
  font-weight: 900;
}

.link-row a::after {
  content: ' ->';
}

.pricing-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  min-width: 0;
  overflow: hidden;
}

.pricing-card__header {
  display: grid;
  gap: 0.8rem;
  padding-bottom: 0.35rem;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  align-items: start;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  min-width: 0;
}

.price-row strong {
  color: var(--navy);
  font-size: 1.14rem;
  line-height: 1.15;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
}

.price-row--note {
  margin-top: 0.35rem;
  padding: 0.85rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-row--stacked {
  grid-template-columns: 1fr;
}

.mini-prices {
  display: grid;
  gap: 0.5rem;
}

.mini-prices span {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.55rem 0.65rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--navy);
  font-weight: 900;
}

.small-note,
.pricing-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.pricing-note {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.info-card {
  padding: 1rem;
}

.info-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
}

.faq {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.faq h3 {
  font-size: 1.28rem;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq summary {
  padding: 0.85rem 1rem;
  color: var(--navy);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.25;
}

.faq p {
  padding: 0 1rem 1rem;
}

.steps {
  display: grid;
  gap: 0.9rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--navy);
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
}

.steps h3 {
  margin-bottom: 0.3rem;
  font-size: 1.18rem;
}

.logistics {
  display: grid;
  gap: 1rem;
}

.logistics h2,
.about h2,
.contact h2 {
  margin-bottom: 0.75rem;
}

.logistics p + p,
.about p + p {
  margin-top: 0.8rem;
}

.logistics .btn {
  width: 100%;
  margin-top: 1.2rem;
}

.location-card {
  padding: 1rem;
}

.location-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0.85rem 0 1rem;
  padding: 0;
}

.location-card li {
  padding: 0.35rem 0.65rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-weight: 800;
}

.about {
  max-width: 82ch;
}

.contact {
  padding-bottom: 2.8rem;
}

.contact__inner {
  display: grid;
  gap: 1rem;
}

.contact-methods {
  display: grid;
  gap: 0.75rem;
}

.contact-method {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
}

.contact-method span {
  color: var(--muted);
  font-weight: 800;
}

.contact-method strong {
  color: var(--navy);
  overflow-wrap: anywhere;
}

.contact-method--primary {
  background: var(--navy);
}

.contact-method--primary span,
.contact-method--primary strong {
  color: #fff;
}

.contact-note {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.site-footer {
  display: grid;
  gap: 0.8rem;
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.6rem 0 2rem;
  border-top: 1px solid var(--line);
}

.sticky-cta {
  position: fixed;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr);
  gap: 0.55rem;
  width: min(calc(100% - 2rem), 430px);
  padding: 0.6rem 0.65rem max(0.6rem, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  background: rgba(251, 247, 239, 0.94);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-radius: 10px 10px 0 0;
  backdrop-filter: blur(12px);
  box-shadow: 0 -10px 24px rgba(23, 29, 35, 0.12);
}

.sticky-cta .btn {
  min-height: 48px;
  padding-inline: 0.55rem;
  font-size: 0.95rem;
}

@media (max-width: 380px) {
  h1 {
    font-size: 2rem;
  }

  .highlight p {
    font-size: 0.82rem;
  }

  .sticky-cta {
    width: min(calc(100% - 1.2rem), 430px);
  }
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    min-height: 86px;
  }

  .logo {
    width: 60px;
  }

  .site-header .logo__img {
    display: block;
  }

  .logo__text {
    display: none;
  }

  .nav__toggle {
    display: none;
  }

  .nav__list {
    position: static;
    display: flex;
    gap: 0.15rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .nav__list a {
    padding: 0.55rem 0.65rem;
    font-size: 1rem;
  }

  .hero {
    min-height: 610px;
  }

  .hero__media {
    min-height: 610px;
    background:
      linear-gradient(
        90deg,
        rgba(251, 247, 239, 0.98) 0%,
        rgba(251, 247, 239, 0.9) 31%,
        rgba(251, 247, 239, 0.1) 66%
      ),
      url('../assets/hero-knife.webp') center right / cover no-repeat;
  }

  .hero__subtitle {
    max-width: 30rem;
    font-size: 1.55rem;
  }

  .hero__intro {
    max-width: 34rem;
    font-size: 1.05rem;
  }

  .hero__actions {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    width: min(100%, 470px);
  }

  .highlights,
  .service-grid,
  .pricing-grid,
  .info-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-links {
    justify-content: center;
    padding-top: 1.2rem;
  }

  .service-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .price-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
  }

  .price-row strong {
    font-size: 1.18rem;
    text-align: right;
  }

  .logistics,
  .contact__inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    align-items: start;
  }

  .contact-methods {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .contact-note {
    grid-column: 1;
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 1040px) {
  .logo {
    width: 100px;
  }

  .nav__list a {
    padding-inline: 0.85rem;
    font-size: 1.2rem;
  }

  .hero__content {
    padding-top: 3rem;
  }

  .hero__subtitle {
    font-size: 1.75rem;
  }
}
