:root {
  --blue: #003f88;
  --blue-2: #075bb9;
  --red: #d4141d;
  --yellow: #f8c21b;
  --green: #23c45e;
  --ink: #071b3e;
  --muted: #4c5b70;
  --line: #d8dee7;
  --paper: #ffffff;
  --soft: #f4f5f7;
  --shadow: 0 10px 26px rgba(8, 28, 63, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: Inter, Arial, sans-serif;
}

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

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

.shell {
  width: min(1210px, calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid #e7e9ee;
  box-shadow: 0 2px 8px rgba(8, 28, 63, 0.08);
}

.nav {
  width: min(1210px, calc(100% - 44px));
  min-height: 70px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 320px 1fr auto;
  align-items: center;
  gap: 18px;
}

.brand img {
  width: 300px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav-links a {
  color: #061633;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 5px;
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow);
}

.nav-cta {
  background: var(--red);
  white-space: nowrap;
}

.nav-cta span,
.btn span,
.floating-whatsapp,
.quote-icon {
  display: inline-grid;
  place-items: center;
}

.nav-cta span,
.btn span {
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.wa-icon svg,
.quote-icon svg,
.floating-whatsapp svg {
  display: block;
  fill: currentColor;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  min-height: 440px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.88) 34%, rgba(0, 0, 0, 0.25) 66%, rgba(0, 0, 0, 0.04) 100%),
    url("./assets/hero-equipo-principal.jpg") center right / cover no-repeat;
}

.hero-content {
  min-height: 440px;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(580px, 100%);
  padding: 38px 0;
}

.hero h1 {
  margin: 0;
  font-family: "Archivo Black", "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 7.3vw, 5.8rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  color: var(--red);
}

.hero h2 {
  width: fit-content;
  max-width: 560px;
  margin: 18px 0 16px;
  padding: 8px 14px;
  color: #050b18;
  background: var(--yellow);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.05rem);
  line-height: 1;
  text-transform: uppercase;
}

.hero p {
  max-width: 560px;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.45;
}

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

.btn-whatsapp {
  background: var(--green);
}

.btn-blue {
  background: var(--blue-2);
}

.btn-yellow {
  min-width: 310px;
  min-height: 54px;
  color: var(--ink);
  background: var(--yellow);
}

.trust-bar {
  color: #fff;
  background: linear-gradient(90deg, #00326e, #004eaa);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-grid div {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.trust-grid div:first-child {
  border-left: 0;
}

.trust-grid span {
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
}

.trust-grid svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.section {
  padding: 22px 0 0;
}

.section-title {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(8, 28, 63, 0.12);
  text-align: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red), var(--yellow));
  opacity: 0.9;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 63, 136, 0.28);
  box-shadow: 0 16px 32px rgba(8, 28, 63, 0.18);
}

.service-media {
  position: relative;
  overflow: hidden;
  margin: 8px 8px 0;
  border-radius: 6px;
  background: var(--ink);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 27, 62, 0.02) 30%, rgba(7, 27, 62, 0.44) 100%),
    linear-gradient(135deg, rgba(248, 194, 27, 0.12), rgba(212, 20, 29, 0.12));
  pointer-events: none;
}

.service-media img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.03);
  transition: transform 220ms ease;
}

.service-card:hover .service-media img {
  transform: scale(1.08);
}

.service-tag {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.service-tag svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.tag-blue {
  background: var(--blue);
}

.tag-red {
  background: var(--red);
}

.tag-yellow {
  color: var(--ink);
  background: var(--yellow);
}

.service-card h3 {
  margin: 15px 10px 5px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.42rem;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  padding: 0 14px 22px;
  color: #111827;
  font-size: 0.86rem;
  line-height: 1.32;
}

.work {
  padding-top: 16px;
}

.work-panel {
  padding: 18px 46px 34px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(5, 12, 24, 0.88), rgba(5, 12, 24, 0.92)),
    url("./assets/hero-equipo-principal.jpg") center / cover no-repeat;
  border-radius: 7px;
}

.work-panel .section-title {
  margin-bottom: 2px;
  color: #fff;
}

.work-panel > p {
  max-width: 540px;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.28;
  text-align: center;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.work-grid figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 16 / 10;
  background: #071b3e;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.work-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 38%, rgba(0, 0, 0, 0.64) 100%),
    linear-gradient(135deg, rgba(0, 63, 136, 0.16), rgba(212, 20, 29, 0.12));
  pointer-events: none;
}

.work-grid figure:hover {
  transform: translateY(-3px);
  border-color: #fff;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.34);
}

.work-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.04);
}

.work-grid figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 9px 10px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.68));
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.split-section {
  padding-top: 12px;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 14px;
}

.mini-panel {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 7px;
  box-shadow: 0 4px 14px rgba(8, 28, 63, 0.1);
}

.mini-panel h2 {
  margin: 0 0 16px;
  color: var(--blue);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.audience-grid span {
  min-height: 72px;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
}

.audience-grid svg {
  width: 30px;
  height: 30px;
  color: var(--blue);
  fill: currentColor;
}

.process ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process ol::before {
  content: "";
  position: absolute;
  top: 43px;
  left: 9%;
  right: 9%;
  height: 0;
  border-top: 3px dotted #4775a3;
}

.process li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.process li span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: #fff;
  background: var(--blue);
  border-radius: 999px;
  box-shadow: 0 0 0 8px #fff;
}

.process li svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.process li:nth-child(2) span,
.process li:nth-child(5) span {
  background: var(--red);
}

.process li:nth-child(3) span {
  color: var(--ink);
  background: var(--yellow);
}

.process p {
  margin: 0;
  max-width: 115px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
}

.quote-section {
  padding-top: 12px;
}

.quote-box {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px 38px;
  color: #fff;
  background: linear-gradient(90deg, var(--red), #df1a22);
  border-radius: 6px;
}

.quote-icon {
  width: 76px;
  height: 76px;
  color: #fff;
  background: var(--green);
  border: 6px solid #fff;
  border-radius: 999px;
}

.quote-icon svg {
  width: 44px;
  height: 44px;
}

.quote-box h2 {
  margin: 0;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  line-height: 1;
  text-transform: uppercase;
}

.quote-box p {
  margin: 4px 0 0;
  font-size: 1rem;
  font-weight: 700;
}

.location {
  padding-bottom: 14px;
}

.location-grid {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: 18px;
  align-items: stretch;
}

.location-copy,
.map-card {
  background: #fff;
  border-radius: 6px;
}

.location-copy {
  padding: 18px 28px;
}

.location-copy h2 {
  margin: 0 0 6px;
  color: var(--blue);
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.location-copy p,
.location-points {
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.location-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.location-points span {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  align-items: center;
}

.location-points svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
  fill: currentColor;
}

.map-card {
  position: relative;
  overflow: hidden;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 240px;
  border: 0;
}

.map-link {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  background: var(--red);
  border-radius: 5px;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(8, 28, 63, 0.2);
}

.footer {
  color: #fff;
  background: linear-gradient(90deg, #002c67, #003d87);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.05fr 1fr 0.55fr;
  gap: 34px;
  padding: 24px 0 12px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-brand img {
  width: 285px;
  max-width: 100%;
  height: auto;
  padding: 8px 10px;
  background: #fff;
  border-radius: 6px;
}

.footer h3 {
  margin: 0 0 8px;
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.footer p,
.footer a {
  margin: 0 0 6px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}

.footer-list {
  columns: 2;
  gap: 24px;
  margin: 0;
  padding-left: 16px;
}

.footer-list li {
  margin-bottom: 4px;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact a,
.footer-contact p {
  display: grid;
  grid-template-columns: 23px 1fr;
  gap: 8px;
  align-items: center;
}

.footer-contact svg {
  width: 21px;
  height: 21px;
  color: #fff;
  fill: currentColor;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  color: var(--blue);
  background: #fff;
  border-radius: 999px;
}

.social-links a:hover {
  color: #fff;
  background: var(--red);
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-line {
  margin: 0;
  padding: 0 22px 18px;
  font-size: 1rem;
  text-align: center;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 70px;
  height: 70px;
  color: #fff;
  background: var(--green);
  border: 5px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(8, 28, 63, 0.28);
}

.floating-whatsapp svg {
  width: 40px;
  height: 40px;
}

.floating-delivery {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  grid-template-columns: 48px auto;
  column-gap: 12px;
  align-items: center;
  max-width: min(330px, calc(100vw - 116px));
  min-height: 72px;
  padding: 12px 18px 12px 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #002c67);
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(8, 28, 63, 0.28);
}

.floating-delivery span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 999px;
}

.floating-delivery svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.floating-delivery strong,
.floating-delivery small {
  display: block;
  line-height: 1.05;
}

.floating-delivery strong {
  font-family: "Barlow Condensed", Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-delivery small {
  margin-top: 3px;
  font-size: 0.82rem;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: 280px 1fr auto;
  }

  .brand img {
    width: 260px;
  }

  .nav-links {
    gap: 20px;
  }

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

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

  .trust-grid div {
    border: 1px solid rgba(255, 255, 255, 0.22);
  }
}

@media (max-width: 850px) {
  body {
    overflow-x: hidden;
  }

  .nav {
    min-height: 66px;
    grid-template-columns: 1fr auto;
  }

  .brand {
    max-width: calc(100vw - 92px);
  }

  .brand img {
    width: min(260px, 100%);
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 66px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 22px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 0;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero {
    min-height: 560px;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.82) 54%, rgba(0, 0, 0, 0.48) 100%),
      url("./assets/hero-equipo-principal.jpg") 62% center / cover no-repeat;
  }

  .hero-content {
    align-items: flex-start;
  }

  .hero-copy {
    padding: 44px 0 210px;
  }

  .hero p {
    font-size: 1rem;
    max-width: 560px;
  }

  .trust-grid div {
    min-height: 66px;
    padding: 12px 14px;
    font-size: 0.9rem;
  }

  .trust-grid span {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .trust-grid svg {
    width: 28px;
    height: 28px;
  }

  .trust-grid,
  .split-grid,
  .quote-box,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .work-panel {
    padding: 22px 18px 26px;
  }

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

  .process ol {
    grid-template-columns: 1fr;
  }

  .process ol::before {
    display: none;
  }

  .process li {
    grid-template-columns: 72px 1fr;
    justify-items: start;
    text-align: left;
  }

  .process p {
    max-width: none;
    align-self: center;
  }

  .quote-box {
    justify-items: center;
    text-align: center;
  }

  .quote-icon {
    width: 68px;
    height: 68px;
  }

  .location-grid {
    gap: 12px;
  }

  .map-card iframe {
    min-height: 280px;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-brand img {
    width: min(285px, 100%);
  }
}

@media (max-width: 620px) {
  .shell,
  .nav {
    width: calc(100% - 24px);
  }

  body {
    padding-bottom: 86px;
  }

  .site-header {
    position: sticky;
  }

  .nav {
    min-height: 62px;
  }

  .nav-links {
    top: 62px;
  }

  .brand img {
    width: min(210px, calc(100vw - 92px));
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.35rem);
    line-height: 0.92;
  }

  .hero h2 {
    width: 100%;
    font-size: 1.25rem;
    line-height: 1.04;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 34px 0 170px;
  }

  .actions,
  .btn,
  .btn-yellow {
    width: 100%;
  }

  .btn {
    min-height: 50px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

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

  .trust-grid div {
    min-height: 58px;
    border-left: 0;
  }

  .service-grid,
  .work-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 28px;
  }

  .section-title,
  .mini-panel h2 {
    font-size: 1.85rem;
  }

  .service-card img,
  .service-media img {
    aspect-ratio: 16 / 10;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .work-panel {
    padding: 18px 14px 22px;
  }

  .work-grid figure {
    aspect-ratio: 16 / 11;
  }

  .mini-panel {
    padding: 14px;
  }

  .audience-grid span {
    min-height: 78px;
  }

  .process li {
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: center;
  }

  .process li span {
    width: 54px;
    height: 54px;
    box-shadow: 0 0 0 5px #fff;
  }

  .process li svg {
    width: 29px;
    height: 29px;
  }

  .quote-box {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 22px;
    text-align: center;
  }

  .location-points {
    grid-template-columns: 1fr;
  }

  .location-copy {
    padding: 18px;
  }

  .map-card iframe {
    min-height: 320px;
  }

  .map-link {
    left: 12px;
    right: 12px;
    justify-content: center;
    text-align: center;
  }

  .footer {
    padding-bottom: 10px;
  }

  .footer-grid {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-list {
    columns: 1;
    padding-left: 0;
    list-style-position: inside;
  }

  .footer-contact a,
  .footer-contact p {
    grid-template-columns: 22px auto;
    justify-content: center;
    text-align: left;
  }

  .social-links {
    justify-content: center;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    width: 58px;
    height: 58px;
    border-width: 3px;
  }

  .floating-whatsapp svg {
    width: 32px;
    height: 32px;
  }

  .floating-delivery {
    left: 12px;
    right: 82px;
    bottom: 12px;
    grid-template-columns: 38px auto;
    min-height: 58px;
    max-width: none;
    padding: 8px 12px 8px 8px;
    border-width: 2px;
  }

  .floating-delivery span {
    width: 38px;
    height: 38px;
  }

  .floating-delivery svg {
    width: 24px;
    height: 24px;
  }

  .floating-delivery strong {
    font-size: 1rem;
  }

  .floating-delivery small {
    font-size: 0.72rem;
  }
}

@media (max-width: 380px) {
  .shell,
  .nav {
    width: calc(100% - 18px);
  }

  .brand img {
    width: min(184px, calc(100vw - 82px));
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero h2 {
    font-size: 1.08rem;
  }

  .hero p {
    font-size: 0.94rem;
  }

  .btn {
    font-size: 0.86rem;
  }

  .quote-box h2 {
    font-size: 1.65rem;
  }

  .floating-delivery {
    right: 76px;
    grid-template-columns: 34px auto;
    min-height: 54px;
    padding-right: 8px;
  }

  .floating-delivery span {
    width: 34px;
    height: 34px;
  }

  .floating-delivery strong {
    font-size: 0.9rem;
  }

  .floating-delivery small {
    font-size: 0.66rem;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
  }
}
