:root {
  --navy-950: #04162e;
  --navy-900: #072342;
  --blue-800: #07579c;
  --blue-700: #0874c9;
  --blue-600: #0d8ad8;
  --cyan-500: #1bb9d9;
  --cyan-100: #dff8ff;
  --sky-50: #f4fbff;
  --gold-500: #efb92f;
  --green-600: #198754;
  --green-700: #116b41;
  --white: #ffffff;
  --ink: #10233b;
  --muted: #52687f;
  --line: #dceaf4;
  --shadow-sm: 0 10px 30px rgba(5, 49, 88, 0.08);
  --shadow-lg: 0 26px 70px rgba(4, 35, 66, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid #78dafa;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  color: var(--white);
  background: var(--navy-950);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.announcement {
  color: var(--white);
  background: var(--navy-950);
  font-size: 0.875rem;
}

.announcement__inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.announcement__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #63d8f1;
  box-shadow: 0 0 0 5px rgba(99, 216, 241, 0.14);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(7, 87, 156, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(7, 35, 66, 0.05);
  backdrop-filter: blur(16px);
}

.header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
}

.brand__logo {
  width: 52px;
  height: 52px;
  border: 1px solid #d7e9f7;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 87, 156, 0.12);
  object-fit: contain;
}

.brand__name {
  display: block;
  color: var(--blue-800);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand__local {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 11px;
  border-radius: 10px;
  color: #28455f;
  font-size: 0.875rem;
  font-weight: 750;
  white-space: nowrap;
  transition: color 0.2s ease, background 0.2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--blue-800);
  background: #edf8ff;
}

.header__order {
  flex: 0 0 auto;
}

.header__phone {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  box-shadow: 0 9px 22px rgba(8, 116, 201, 0.25);
  place-items: center;
}

.header__phone svg {
  width: 21px;
  height: 21px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy-900);
  background: var(--white);
  place-items: center;
  cursor: pointer;
}

.menu-button svg {
  width: 23px;
  height: 23px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn svg {
  width: 19px;
  height: 19px;
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  box-shadow: 0 12px 26px rgba(8, 116, 201, 0.25);
}

.btn--primary:hover {
  box-shadow: 0 16px 32px rgba(8, 116, 201, 0.34);
}

.btn--whatsapp {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), #21a969);
  box-shadow: 0 12px 26px rgba(25, 135, 84, 0.23);
}

.btn--dark {
  color: var(--white);
  background: var(--navy-950);
}

.btn--light {
  color: var(--blue-800);
  border-color: #cfe9f8;
  background: var(--white);
}

.btn--light:hover {
  background: var(--sky-50);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: var(--gold-500);
  content: "";
}

.home-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 18, 33, 0.98) 0%, rgba(3, 18, 33, 0.94) 43%, rgba(3, 18, 33, 0.5) 66%, rgba(3, 18, 33, 0.08) 100%),
    #031221 url("/fachada-carro-agua-real-20260905.jpeg") right center / auto 100% no-repeat;
}

.home-hero::after {
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(8, 116, 201, 0.11);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(8, 116, 201, 0.035), 0 0 0 96px rgba(8, 116, 201, 0.025);
  content: "";
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  min-height: 620px;
  padding-block: 68px;
  display: flex;
  align-items: center;
}

.home-hero__content {
  width: min(63%, 720px);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.home-hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2.55rem, 5.8vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.home-hero h1 span,
.page-hero h1 span {
  color: var(--blue-700);
}

.home-hero__lead,
.page-hero__lead {
  max-width: 680px;
  margin: 24px 0 28px;
  color: #3e5871;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.7;
}

.home-hero .eyebrow {
  color: #70d5ff;
}

.home-hero h1 {
  color: var(--white);
}

.home-hero h1 span {
  color: #42bfff;
}

.home-hero__lead,
.home-hero .hero-note {
  color: rgba(255, 255, 255, 0.92);
}

.home-hero__actions {
  align-items: center;
}

.home-hero__call {
  min-height: 58px;
  padding: 11px 26px;
  gap: 12px;
}

.home-hero__call svg {
  width: 23px;
  height: 23px;
}

.home-hero__call span {
  display: grid;
  text-align: left;
  line-height: 1.12;
}

.home-hero__call strong {
  font-size: 1.02rem;
}

.home-hero__call small {
  margin-top: 3px;
  font-size: 0.77rem;
  font-weight: 750;
  opacity: 0.9;
}

.home-carousel {
  position: relative;
  width: min(100%, 560px);
  margin: 20px 0 0;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
  isolation: isolate;
  text-shadow: none;
}

.home-carousel__viewport {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  background: #eaf6fb;
}

.home-carousel__track {
  display: flex;
  height: 100%;
  transform: translate3d(calc(var(--carousel-index, 0) * -100%), 0, 0);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.home-carousel__slide {
  position: relative;
  min-width: 100%;
  height: 100%;
}

.home-carousel__image {
  display: block;
  width: 100%;
  height: 100%;
}

.home-carousel__image--store {
  object-fit: cover;
  object-position: center 55%;
}

.home-carousel__image--brand {
  padding: 4px;
  background: linear-gradient(145deg, #effaff, #d9eef7);
  object-fit: contain;
}

.home-carousel__image--bottles {
  background: #d9efff;
  object-fit: cover;
  object-position: center 48%;
}

.coconut-carousel {
  width: 100%;
  max-width: 760px;
  margin: 2px 0 26px;
  border-color: rgba(255, 255, 255, 0.82);
  background: #173f25;
  box-shadow: 0 24px 60px rgba(31, 91, 48, 0.25);
}

.coconut-carousel .home-carousel__viewport {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #e9f5df, #b8dcae);
}

.coconut-carousel__image {
  background: linear-gradient(135deg, #dcefd6, #87bc78);
}

.coconut-carousel__image--creative {
  padding: 3px;
  object-fit: contain;
}

.coconut-carousel__image--bottle {
  object-fit: cover;
  object-position: center 45%;
}

.coconut-carousel__image--local {
  object-fit: cover;
  object-position: center 43%;
}

.coconut-carousel .home-carousel__control:hover,
.coconut-carousel .home-carousel__control:focus-visible {
  background: #2d7a43;
}

.home-carousel__caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 2px;
  max-width: 440px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  color: var(--white);
  background: rgba(3, 18, 33, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
}

.home-carousel__caption small {
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-carousel__caption strong {
  font-size: 0.9rem;
  line-height: 1.35;
}

.home-carousel__control {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--white);
  background: rgba(3, 18, 33, 0.78);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-carousel__control:hover,
.home-carousel__control:focus-visible {
  background: var(--blue-700);
  transform: translateY(-50%) scale(1.05);
}

.home-carousel__control span {
  margin-top: -3px;
  font-size: 2rem;
  line-height: 1;
}

.home-carousel__control--previous {
  left: 12px;
}

.home-carousel__control--next {
  right: 12px;
}

.home-carousel__dots {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: flex;
  gap: 6px;
  padding: 7px;
  border-radius: 99px;
  background: rgba(3, 18, 33, 0.7);
}

.home-carousel__dots button {
  width: 24px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.home-carousel__dots button[aria-current="true"] {
  width: 34px;
  background: var(--white);
}

.order-builder {
  width: min(100%, 680px);
  margin: 26px 0 0;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
  text-shadow: none;
}

.order-builder__heading {
  margin-bottom: 24px;
}

.order-builder__local {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue-800);
  background: var(--cyan-100);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.order-builder h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.order-builder__heading p,
.order-builder__location p,
.order-builder__validity > p {
  margin: 8px 0 0;
  color: #4c647a;
  line-height: 1.5;
}

.order-builder__step {
  display: grid;
  padding: 22px 0;
  border-top: 1px solid #dce9f1;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 12px;
}

fieldset.order-builder__step {
  margin: 0;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
}

.order-builder__step legend {
  display: grid;
  width: 100%;
  padding: 0 0 16px;
  grid-template-columns: 40px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.order-builder__number {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue-700);
  font-weight: 950;
  place-items: center;
}

.order-builder__question {
  display: block;
  color: var(--navy-950);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.35;
}

.order-builder__items {
  display: grid;
  min-width: 0;
  gap: 12px;
}

.order-builder__limit {
  margin: -4px 0 2px;
  color: #526b80;
  font-size: 0.88rem;
}

.order-builder__limit strong {
  color: var(--blue-800);
  font-size: 1rem;
}

.order-builder__item {
  display: grid;
  min-width: 0;
  padding: 16px;
  border: 2px solid #cfe1eb;
  border-radius: 16px;
  background: #f8fcfe;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.order-builder__item-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.order-builder__item-copy strong {
  color: var(--navy-950);
  font-size: 1rem;
}

.order-builder__item-copy small {
  color: #526b80;
  line-height: 1.35;
}

.order-builder__item-copy span {
  margin-top: 3px;
  color: var(--blue-800);
  font-size: 0.83rem;
  font-weight: 850;
}

.quantity-picker {
  display: inline-grid;
  margin-top: 14px;
  overflow: hidden;
  border: 2px solid #bcd9e9;
  border-radius: 16px;
  background: #f4fbff;
  grid-template-columns: 58px 72px 58px;
}

.quantity-picker button {
  min-height: 56px;
  padding: 0;
  border: 0;
  color: var(--blue-800);
  background: transparent;
  font-size: 1.8rem;
  font-weight: 900;
  cursor: pointer;
}

.quantity-picker button:hover:not(:disabled),
.quantity-picker button:focus-visible {
  background: #dff4fd;
}

.quantity-picker button:disabled {
  color: #9eb0bd;
  cursor: not-allowed;
}

.quantity-picker output {
  display: grid;
  border-right: 1px solid #cfe3ee;
  border-left: 1px solid #cfe3ee;
  color: var(--navy-950);
  background: var(--white);
  font-size: 1.45rem;
  font-weight: 950;
  place-items: center;
}

.quantity-picker--compact {
  margin-top: 0;
  grid-template-columns: 46px 52px 46px;
}

.quantity-picker--compact button {
  min-height: 48px;
  font-size: 1.5rem;
}

.quantity-picker--compact output {
  font-size: 1.2rem;
}

.order-builder__choices {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.order-builder__choice {
  display: flex;
  min-height: 78px;
  padding: 15px;
  border: 2px solid #cfe1eb;
  border-radius: 16px;
  background: #f8fcfe;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.order-builder__choice:hover,
.order-builder__choice:has(input:checked) {
  border-color: var(--blue-700);
  background: #e8f7ff;
  transform: translateY(-1px);
}

.order-builder__choice input {
  width: 24px;
  height: 24px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--blue-700);
}

.order-builder__choice span {
  display: grid;
  gap: 3px;
}

.order-builder__choice strong {
  font-size: 1rem;
}

.order-builder__choice small {
  color: #526b80;
  line-height: 1.35;
}

.order-builder__validity {
  margin: 0 0 4px 52px;
  padding: 18px;
  border: 1px solid #cce4ef;
  border-radius: 16px;
  background: #f1faff;
}

.order-builder__validity[hidden] {
  display: none;
}

.order-builder__validity-list {
  display: grid;
  margin-top: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.order-builder__validity-item {
  display: grid;
  min-width: 0;
  padding: 14px;
  border: 1px solid #c9e0ec;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.7);
}

.order-builder__validity-label {
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 900;
}

.order-builder__validity input[type="text"],
.order-builder__location input {
  width: 100%;
  min-height: 54px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 2px solid #bfd7e5;
  border-radius: 13px;
  color: var(--navy-950);
  background: var(--white);
  font: inherit;
  font-size: 1rem;
}

.order-builder__validity input[type="text"]:focus,
.order-builder__location input:focus {
  border-color: var(--blue-700);
  outline: 3px solid rgba(8, 116, 201, 0.14);
}

.order-builder__location {
  min-width: 0;
}

.order-builder__summary {
  display: grid;
  padding: 18px;
  border: 1px solid #b9deed;
  border-radius: 16px;
  background: linear-gradient(145deg, #e8f8ff, #f7fcff);
  gap: 5px;
}

.order-builder__summary span {
  color: var(--blue-800);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.order-builder__summary strong {
  color: var(--navy-950);
  font-size: 1.08rem;
}

.order-builder__summary small {
  color: #45627a;
  line-height: 1.45;
}

.order-builder__submit {
  width: 100%;
  min-height: 62px;
  margin-top: 18px;
  font-size: 1.05rem;
}

.order-builder__submit.is-disabled {
  opacity: 0.52;
  cursor: not-allowed;
}

.order-builder__help {
  margin: 10px 0 0;
  color: #667d90;
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: center;
}

.order-builder__error {
  margin: 10px 0 0;
  color: #b3261e;
  font-size: 0.86rem;
  font-weight: 800;
  grid-column: 1 / -1;
}

.hero-note {
  display: flex;
  margin-top: 20px;
  align-items: flex-start;
  gap: 13px;
  color: #36536e;
  font-size: 0.92rem;
  font-weight: 650;
}

.hero-note__icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--blue-800);
  background: var(--cyan-100);
  place-items: center;
}

.hero-note__icon svg {
  width: 17px;
  height: 17px;
}

.hero-visual {
  position: relative;
  max-width: 440px;
  margin-left: auto;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  inset: 40px -28px -28px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #b7edfb, #1285ca);
  content: "";
  transform: rotate(3deg);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 9px solid var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.visual-badge {
  position: absolute;
  right: -24px;
  bottom: 26px;
  max-width: 230px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  color: var(--white);
  background: rgba(4, 22, 46, 0.93);
  box-shadow: var(--shadow-lg);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.4;
  backdrop-filter: blur(10px);
}

.visual-badge strong {
  display: block;
  color: #77dff5;
  font-size: 1.08rem;
}

.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-bar__inner {
  display: grid;
  min-height: 88px;
  align-items: stretch;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  padding: 17px 22px;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item__icon,
.feature-card__icon,
.step__number {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 13px;
  color: var(--blue-800);
  background: var(--cyan-100);
  place-items: center;
}

.trust-item__icon svg,
.feature-card__icon svg {
  width: 21px;
  height: 21px;
}

.trust-item strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.9rem;
  line-height: 1.2;
}

.trust-item span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.3;
}

.section {
  padding-block: 86px;
}

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

body[data-route="/agua-de-coco"] {
  background: #f2f8ee;
}

body[data-route="/agua-de-coco"] .announcement {
  background: #153f24;
}

body[data-route="/agua-de-coco"] .announcement__dot {
  background: #a7dc79;
  box-shadow: 0 0 0 5px rgba(167, 220, 121, 0.16);
}

body[data-route="/agua-de-coco"] .site-header {
  border-bottom-color: rgba(45, 122, 67, 0.14);
  background: rgba(249, 253, 246, 0.96);
}

body[data-route="/agua-de-coco"] .breadcrumb,
body[data-route="/agua-de-coco"] .breadcrumb a,
body[data-route="/agua-de-coco"] .eyebrow {
  color: #2d7a43;
}

body[data-route="/agua-de-coco"] .page-hero {
  background:
    radial-gradient(circle at 88% 8%, rgba(174, 220, 117, 0.36), transparent 28%),
    radial-gradient(circle at 8% 84%, rgba(74, 145, 73, 0.18), transparent 30%),
    linear-gradient(135deg, #edf8e7, #f8fbf4 54%, #dcefd6);
}

body[data-route="/agua-de-coco"] .page-hero h1 span,
body[data-route="/agua-de-coco"] .page-hero__price {
  color: #2d7a43;
}

body[data-route="/agua-de-coco"] .page-hero__panel {
  border-color: rgba(45, 122, 67, 0.24);
  background: rgba(250, 254, 247, 0.9);
  box-shadow: 0 26px 70px rgba(31, 91, 48, 0.18);
}

body[data-route="/agua-de-coco"] .section {
  background: #f2f8ee;
}

body[data-route="/agua-de-coco"] .section--soft {
  background: #e4f2df;
}

body[data-route="/agua-de-coco"] .content-block {
  border-color: #cfe2c6;
  background: rgba(253, 255, 251, 0.92);
  box-shadow: 0 12px 34px rgba(31, 91, 48, 0.08);
}

body[data-route="/agua-de-coco"] .contact-panel {
  background: linear-gradient(140deg, #153f24, #2d7a43 72%, #4f934f);
}

body[data-route="/agua-de-coco"] .coconut-visual {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.34), transparent 18%),
    linear-gradient(145deg, #4c9348, #23653b 62%, #153f24);
}

.section--navy {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.section--navy::before {
  position: absolute;
  top: -260px;
  right: -180px;
  width: 590px;
  height: 590px;
  border: 1px solid rgba(99, 216, 241, 0.16);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 58px rgba(99, 216, 241, 0.035), 0 0 0 116px rgba(99, 216, 241, 0.02);
}

.section-heading {
  max-width: 730px;
  margin-bottom: 38px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.content-block h2,
.contact-panel h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  font-weight: 930;
  letter-spacing: -0.045em;
  line-height: 1.06;
  text-wrap: balance;
}

.section--navy .section-heading h2,
.section--navy .content-block h2 {
  color: var(--white);
}

.section-heading p,
.content-block > p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section--navy .section-heading p,
.section--navy .content-block > p {
  color: #b8cee3;
}

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

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

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

.info-card,
.feature-card,
.region-card,
.contact-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.info-card,
.feature-card,
.region-card,
.contact-card {
  padding: 26px;
}

.info-card,
.region-card {
  position: relative;
  overflow: hidden;
}

.info-card::after,
.region-card::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(27, 185, 217, 0.09);
  content: "";
}

.info-card__index {
  display: block;
  margin-bottom: 20px;
  color: #75a7ca;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.info-card h3,
.feature-card h3,
.region-card h3,
.contact-card h3,
.price-card h3,
.step h3 {
  margin: 0;
  color: var(--navy-950);
  font-size: 1.16rem;
  font-weight: 880;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.info-card p,
.feature-card p,
.region-card p,
.contact-card p,
.price-card p,
.step p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.card-link {
  display: inline-flex;
  margin-top: 20px;
  align-items: center;
  gap: 7px;
  color: var(--blue-700);
  font-size: 0.9rem;
  font-weight: 850;
}

.card-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

.price-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

.price-card--featured {
  border-color: rgba(99, 216, 241, 0.58);
  background: linear-gradient(150deg, rgba(18, 136, 207, 0.42), rgba(255, 255, 255, 0.08));
}

.price-card__label {
  color: #b9d3e8;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price-card__value {
  display: block;
  margin: 12px 0 8px;
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 4.3rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 1;
}

.price-card p,
.price-card h3 {
  color: #d5e6f3;
}

.price-card .tag {
  margin-top: 20px;
}

.tag {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--blue-800);
  background: var(--cyan-100);
  font-size: 0.76rem;
  font-weight: 850;
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
}

.split--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.split--reverse > :first-child {
  order: 2;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid #cfe6f3;
  border-radius: var(--radius-lg);
  background: #dff7ff;
  box-shadow: var(--shadow-lg);
}

.media-frame img {
  width: 100%;
  min-height: 440px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.media-frame--portrait img {
  aspect-ratio: 4 / 5;
}

.media-frame__label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  color: var(--white);
  background: rgba(4, 22, 46, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.bullet-list,
.check-list,
.link-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li,
.check-list li {
  position: relative;
  margin-top: 12px;
  padding-left: 31px;
  color: #334f68;
}

.bullet-list li::before,
.check-list li::before {
  position: absolute;
  top: 5px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--blue-800);
  background: var(--cyan-100);
  content: "✓";
  font-size: 0.76rem;
  font-weight: 950;
  place-items: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.step {
  position: relative;
  padding: 0 24px 0 0;
}

.step:not(:last-child)::after {
  position: absolute;
  top: 22px;
  right: -5px;
  width: 32px;
  border-top: 2px dashed #b9dced;
  content: "";
}

.step__number {
  margin-bottom: 18px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue-700), var(--cyan-500));
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(8, 116, 201, 0.2);
}

.feature-card__icon {
  margin-bottom: 20px;
}

.region-card {
  padding: 32px;
  border-top: 4px solid var(--blue-600);
}

.region-card__places {
  margin: 16px 0 0;
  color: #415d75;
  font-size: 0.92rem;
}

.region-card__radius {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue-800);
  background: #e7f7ff;
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  padding: 48px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(125deg, #07579c 0%, #0877c9 60%, #19abc9 100%);
  box-shadow: var(--shadow-lg);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.cta-panel::after {
  position: absolute;
  right: -72px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(255, 255, 255, 0.06), 0 0 0 72px rgba(255, 255, 255, 0.04);
  content: "";
}

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

.cta-panel h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 930;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.cta-panel p {
  max-width: 670px;
  margin: 13px 0 0;
  color: #dff6ff;
}

.cta-panel .btn--light {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 28px rgba(4, 22, 46, 0.16);
}

.breadcrumb {
  padding-top: 26px;
  color: #6b8195;
  font-size: 0.84rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--blue-700);
}

.breadcrumb span {
  margin-inline: 8px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 78px;
  background:
    radial-gradient(circle at 85% 10%, rgba(27, 185, 217, 0.18), transparent 26%),
    linear-gradient(135deg, #effaff, #ffffff 58%, #eaf7ff);
}

.page-hero__inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.68fr);
  gap: 60px;
}

.page-hero h1 {
  max-width: 830px;
  font-size: clamp(2.55rem, 5vw, 4.55rem);
}

.page-hero__panel {
  padding: 26px;
  border: 1px solid rgba(8, 116, 201, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.page-hero__panel strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.03rem;
}

.page-hero__panel p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.page-hero__price {
  display: block;
  margin: 18px 0 4px;
  color: var(--blue-700);
  font-size: 3.3rem;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
}

.page-hero__panel .btn {
  width: 100%;
  margin-top: 19px;
}

.content-stack {
  display: grid;
  gap: 30px;
}

.content-block {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.content-block h2 {
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
}

.content-block h3 {
  margin: 24px 0 6px;
  color: var(--navy-950);
  font-size: 1.08rem;
  line-height: 1.3;
}

.content-block p {
  color: var(--muted);
}

.content-block p:last-child {
  margin-bottom: 0;
}

.fact-strip {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  grid-template-columns: repeat(3, 1fr);
}

.fact {
  padding: 25px 28px;
  border-right: 1px solid var(--line);
}

.fact:last-child {
  border-right: 0;
}

.fact__label {
  display: block;
  color: #7190a8;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  margin-top: 5px;
  color: var(--navy-950);
  font-size: 1.05rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 24px;
}

.faq-list summary {
  position: relative;
  padding: 22px 44px 22px 0;
  color: var(--navy-950);
  font-weight: 850;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--blue-800);
  background: var(--cyan-100);
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
  place-items: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: -2px 0 23px;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-card__label {
  display: block;
  margin-bottom: 8px;
  color: #6c8aa3;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--blue-700);
  font-weight: 800;
}

.contact-panel {
  padding: 42px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(140deg, var(--navy-950), #083f70);
  box-shadow: var(--shadow-lg);
}

.contact-panel h2 {
  color: var(--white);
}

.contact-panel p {
  color: #c9ddeb;
}

.contact-panel .button-row {
  margin-top: 24px;
}

.coconut-visual {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.34), transparent 18%),
    linear-gradient(145deg, #0a8c8b, #0b6873 65%, #06404e);
  box-shadow: var(--shadow-lg);
  place-items: center;
}

.coconut-visual::before,
.coconut-visual::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
}

.coconut-visual::before {
  width: 330px;
  height: 330px;
}

.coconut-visual::after {
  width: 430px;
  height: 430px;
}

.coconut-visual__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.coconut-visual__icon {
  display: block;
  font-size: 7rem;
  filter: drop-shadow(0 16px 22px rgba(2, 30, 36, 0.26));
}

.coconut-visual__price {
  display: block;
  margin-top: 14px;
  font-size: 3.8rem;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
}

.coconut-visual__label {
  display: block;
  margin-top: 7px;
  color: #c9fbf5;
  font-weight: 800;
}

.notice {
  padding: 20px 22px;
  border-left: 4px solid var(--blue-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #38556e;
  background: #edf9ff;
}

.site-footer {
  color: #d5e3ef;
  background: var(--navy-950);
}

.footer__main {
  display: grid;
  padding-block: 64px 44px;
  grid-template-columns: 1.15fr 0.85fr 0.8fr;
  gap: 62px;
}

.footer__brand .brand__logo {
  border-color: rgba(255, 255, 255, 0.18);
}

.footer__brand .brand__name {
  color: var(--white);
}

.footer__brand .brand__local {
  color: #93b3ca;
}

.footer__brand p {
  max-width: 420px;
  margin: 22px 0 0;
  color: #9eb8cc;
  font-size: 0.91rem;
}

.footer__title {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.link-list {
  margin-top: 0;
}

.link-list li {
  margin-top: 9px;
}

.link-list a,
.footer__contact p,
.footer__contact a {
  color: #a9c1d3;
  font-size: 0.89rem;
}

.link-list a:hover,
.footer__contact a:hover {
  color: var(--white);
}

.footer__contact p {
  margin: 0 0 10px;
}

.footer__bottom {
  display: flex;
  min-height: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #8daabe;
  font-size: 0.82rem;
}

.footer__bottom a:hover {
  color: var(--white);
}

.floating-phone,
.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  display: inline-flex;
  width: 60px;
  height: 60px;
  min-height: 60px;
  padding: 0;
  border: 3px solid var(--white);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
}

.floating-phone {
  bottom: 94px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-600));
  box-shadow: 0 14px 34px rgba(5, 83, 148, 0.32);
  animation: phone-pulse 2.2s ease-in-out infinite;
}

.floating-whatsapp {
  bottom: 22px;
  background: var(--green-600);
  box-shadow: 0 14px 34px rgba(4, 41, 25, 0.28);
}

.floating-phone svg,
.floating-whatsapp svg {
  width: 24px;
  height: 24px;
}

.floating-phone span,
.floating-whatsapp span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@keyframes phone-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 14px 34px rgba(5, 83, 148, 0.3), 0 0 0 0 rgba(13, 138, 216, 0.28);
  }
  50% {
    transform: scale(1.035);
    box-shadow: 0 16px 38px rgba(5, 83, 148, 0.36), 0 0 0 10px rgba(13, 138, 216, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-phone {
    animation: none;
  }
}

.consent-banner {
  position: fixed;
  z-index: 300;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  width: min(calc(100% - 36px), 980px);
  margin-inline: auto;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  background: rgba(4, 22, 46, 0.97);
  box-shadow: 0 24px 70px rgba(4, 22, 46, 0.38);
  backdrop-filter: blur(16px);
}

.consent-banner strong {
  font-size: 1rem;
}

.consent-banner p {
  max-width: 650px;
  margin: 4px 0 0;
  color: #bed2e2;
  font-size: 0.84rem;
  line-height: 1.5;
}

.consent-banner p a {
  color: #79def3;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 9px;
}

.consent-banner .btn {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.84rem;
}

.error-page {
  display: grid;
  min-height: 62vh;
  padding-block: 90px;
  text-align: center;
  place-items: center;
  background: linear-gradient(145deg, #effaff, #ffffff);
}

.error-page__code {
  display: block;
  color: var(--blue-700);
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.error-page h1 {
  margin: 24px 0 10px;
  color: var(--navy-950);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.error-page p {
  max-width: 540px;
  margin: 0 auto 26px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .main-nav a {
    padding-inline: 8px;
    font-size: 0.81rem;
  }

  .header__order {
    display: none;
  }

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

@media (max-width: 900px) {
  .header__phone {
    display: grid;
    margin-left: auto;
  }

  .menu-button {
    display: grid;
    margin-left: 0;
  }

  .main-nav {
    position: fixed;
    top: 116px;
    right: 16px;
    left: 16px;
    display: grid;
    max-height: calc(100vh - 136px);
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow-y: auto;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .main-nav a {
    padding: 13px 14px;
    font-size: 0.96rem;
  }

  .page-hero__inner,
  .split,
  .split--reverse {
    grid-template-columns: 1fr;
  }

  .home-hero {
    background:
      linear-gradient(90deg, rgba(3, 18, 33, 0.97) 0%, rgba(3, 18, 33, 0.9) 48%, rgba(3, 18, 33, 0.28) 100%),
      #031221 url("/fachada-carro-agua-real-20260905.jpeg") right center / auto 100% no-repeat;
  }

  .home-hero__inner {
    padding-block: 58px 78px;
  }

  .home-hero__content {
    width: min(72%, 620px);
  }

  .page-hero__inner {
    gap: 34px;
  }

  .hero-visual {
    width: min(86%, 470px);
    margin-inline: auto;
  }

  .page-hero__panel {
    max-width: 560px;
  }

  .split--reverse > :first-child {
    order: initial;
  }

  .price-grid,
  .steps,
  .card-grid--3 {
    grid-template-columns: 1fr;
  }

  .step {
    padding: 0;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .trust-bar__inner,
  .fact-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:last-child {
    border-top: 1px solid var(--line);
    grid-column: 1 / -1;
  }

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

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .announcement__inner {
    min-height: 46px;
    font-size: 0.76rem;
    line-height: 1.3;
  }

  .header__inner {
    min-height: 70px;
    gap: 10px;
  }

  .brand__logo {
    width: 46px;
    height: 46px;
  }

  .brand__local {
    display: none;
  }

  .main-nav {
    top: 124px;
  }

  .home-hero__inner {
    min-height: auto;
    padding-block: 54px 68px;
  }

  .home-hero {
    background:
      linear-gradient(180deg, rgba(3, 18, 33, 0.72) 0%, rgba(3, 18, 33, 0.8) 58%, rgba(3, 18, 33, 0.96) 100%),
      url("/fachada-carro-agua-real-20260905.jpeg") center top / 100% auto no-repeat;
  }

  .home-hero__content {
    width: 100%;
  }

  .home-hero .hero-note {
    padding-right: 0;
  }

  .home-carousel {
    border-radius: 18px;
  }

  .home-carousel__viewport {
    aspect-ratio: 4 / 3;
    border-radius: 16px;
  }

  .coconut-carousel .home-carousel__viewport {
    aspect-ratio: 4 / 3;
  }

  .home-carousel__caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 10px 12px;
  }

  .home-carousel__control {
    width: 38px;
    height: 38px;
  }

  .home-carousel__control--previous {
    left: 8px;
  }

  .home-carousel__control--next {
    right: 8px;
  }

  .home-carousel__dots {
    top: 10px;
    right: 10px;
  }

  .order-builder {
    margin-top: 22px;
    padding: 20px 18px;
    border-radius: 20px;
  }

  .order-builder__heading {
    margin-bottom: 20px;
  }

  .order-builder h2 {
    font-size: 1.7rem;
  }

  .order-builder__step,
  .order-builder__step legend {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 10px;
  }

  .order-builder__number {
    width: 32px;
    height: 32px;
  }

  .order-builder__choices {
    grid-template-columns: 1fr;
  }

  .order-builder__choice {
    min-height: 72px;
  }

  .order-builder__item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .quantity-picker--compact {
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .order-builder__validity {
    margin-left: 0;
    padding: 16px;
  }

  .order-builder__validity-list {
    grid-template-columns: 1fr;
  }

  .quantity-picker {
    grid-template-columns: 62px 76px 62px;
  }

  .order-builder__submit {
    min-height: 66px;
    font-size: 1rem;
  }

  .home-hero h1,
  .page-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3rem);
  }

  .button-row {
    display: grid;
  }

  .button-row .btn {
    width: 100%;
  }

  .visual-badge {
    right: -6px;
    bottom: 18px;
  }

  .fact-strip,
  .card-grid,
  .card-grid--2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .fact,
  .fact:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .fact:last-child {
    grid-column: auto;
  }

  .trust-bar {
    padding-block: 14px;
    background: #f3f9fd;
  }

  .trust-bar__inner {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .trust-item,
  .trust-item:nth-child(2),
  .trust-item:nth-child(-n + 2),
  .trust-item:last-child {
    min-width: 0;
    padding: 14px 12px;
    border: 1px solid #d7e7f1;
    border-radius: 14px;
    align-items: flex-start;
    gap: 10px;
    background: var(--white);
    box-shadow: 0 8px 22px rgba(4, 54, 92, 0.06);
  }

  .trust-item__icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(8, 116, 201, 0.12);
    border-radius: 12px;
    background: linear-gradient(145deg, #e5f8ff, #cdeef9);
  }

  .trust-item__icon svg {
    width: 20px;
    height: 20px;
  }

  .trust-item strong {
    font-size: 0.84rem;
    line-height: 1.25;
  }

  .trust-item span {
    margin-top: 4px;
    font-size: 0.75rem;
    line-height: 1.35;
  }

  .section {
    padding-block: 52px;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .page-hero {
    padding: 38px 0 58px;
  }

  .media-frame img {
    min-height: 340px;
  }

  .content-block,
  .region-card,
  .contact-panel {
    padding: 26px 22px;
  }

  .cta-panel {
    padding: 32px 24px;
  }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer__brand {
    grid-column: auto;
  }

  .footer__bottom {
    padding-block: 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }

  .floating-phone {
    display: none;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    display: inline-flex;
    width: 58px;
    height: 58px;
    min-height: 58px;
  }

  .consent-banner {
    bottom: 12px;
    display: block;
    width: min(calc(100% - 24px), 980px);
    padding: 18px;
  }

  .consent-banner__actions {
    display: grid;
    margin-top: 14px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
