*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --red: #ff365f;
  --ink: #17151d;
  --coal: #17151d;
  --paper: #fff7ef;
  --white: #ffffff;
  --muted: rgba(23, 21, 29, 0.66);
  --line: rgba(23, 21, 29, 0.1);
  --blue: #315dff;
  --teal: #13d47f;
  --yellow: #f7ff4d;
  --pink: #ff365f;
  --shadow: 0 18px 38px rgba(23, 21, 29, 0.07);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 2.2rem;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav.is-scrolled,
.nav.is-open {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(23, 21, 29, 0.08);
}

.nav__logo img {
  width: 118px;
  height: auto;
  filter: brightness(0) invert(1);
}

.nav.is-scrolled .nav__logo img,
.nav.is-open .nav__logo img {
  filter: none;
}

.nav__links {
  display: flex;
  justify-content: center;
  gap: 1.45rem;
}

.nav__links a,
.nav__cta {
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__cta {
  border-radius: 999px;
  border: 2px solid currentColor;
  padding: 0.74rem 1.25rem;
}

.nav__menu {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav__menu span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
}

/* ===== LABEL ===== */
.label {
  margin: 0 0 0.9rem;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 7rem 2rem 2rem;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(23, 21, 29, 0.98) 0%, rgba(23, 21, 29, 0.9) 44%, rgba(23, 21, 29, 0.76) 100%),
    var(--coal);
  text-align: left;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 16px),
    linear-gradient(90deg, rgba(255, 54, 95, 0.22), transparent 42%),
    linear-gradient(0deg, rgba(49, 93, 255, 0.18), transparent 46%);
  opacity: 0.78;
}

.hero::after {
  right: -10vw;
  bottom: -18vh;
  width: 48vw;
  height: 48vh;
  background: var(--yellow);
  opacity: 0.12;
  transform: rotate(-8deg);
}

.hero__layout {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: min(100%, 1440px);
  min-height: calc(100svh - 9rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: 5rem;
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  max-width: 700px;
  padding: 2rem 0 2.8rem;
}

.hero h1 {
  margin: 0;
  font-size: 5.85rem;
  line-height: 0.91;
  font-weight: 950;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: var(--red);
}

.hero p:not(.label) {
  max-width: 560px;
  margin: 1.45rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.14rem;
  line-height: 1.72;
}

.hero__media {
  position: relative;
  z-index: 1;
  height: min(680px, calc(100svh - 10rem));
  min-height: 520px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(8, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero__photo {
  position: relative;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.hero__photo--main  { grid-column: 1 / 8;  grid-row: 1 / 6; }
.hero__photo--wide  { z-index: 2; grid-column: 6 / 13; grid-row: 5 / 9; }
.hero__photo--small { grid-column: 8 / 13; grid-row: 2 / 5; }
.hero__photo--tall  { grid-column: 1 / 5;  grid-row: 6 / 9; }

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.04);
  transition: transform 360ms ease;
}

.hero__photo--main img  { object-position: 50% 52%; }
.hero__photo--wide img  { object-position: 50% 50%; }
.hero__photo--small img { object-position: 50% 52%; }
.hero__photo--tall img  { object-position: 50% 52%; }

.hero__photo:hover img {
  transform: scale(1.035);
}

.hero__photo figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.85rem 0.95rem;
  background: linear-gradient(180deg, rgba(23, 21, 29, 0), rgba(23, 21, 29, 0.9));
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__actions,
.button {
  display: flex;
  align-items: center;
}

.hero__actions {
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-start;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.9rem 2.35rem;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 0 rgba(23, 21, 29, 0.14);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 0 rgba(23, 21, 29, 0.11);
}

.button--red {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button--whatsapp {
  background: #22c55e;
  border-color: #22c55e;
  color: var(--white);
}

/* ===== TICKER ===== */
.ticker {
  overflow: hidden;
  background: var(--yellow);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: moveTicker 32s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.4rem;
  color: rgba(23, 21, 29, 0.72);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker span::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 1.4rem;
  background: var(--red);
}

@keyframes moveTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== INTRO ===== */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  background: var(--paper);
}

.intro__copy {
  padding: 4.5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro__copy h2 {
  margin: 0;
  font-size: 4rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro__copy p:not(.label) {
  max-width: 560px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.intro__image {
  margin: 2rem;
  min-height: calc(440px - 4rem);
  max-height: 420px;
  overflow: hidden;
  border-radius: 1.6rem;
  box-shadow: 0 22px 45px rgba(23, 21, 29, 0.12);
}

.intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== TIPOS ===== */
.tipos {
  padding: 7rem 2rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.tipos .section-head {
  max-width: 1180px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: end;
}

.tipos .section-head .label {
  grid-column: 1 / -1;
  margin-bottom: -2rem;
}

.tipos .section-head h2 {
  margin: 0;
  font-size: 4rem;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.tipos .section-head p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.tipo-row {
  max-width: 1180px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.tipo-row:last-child { margin-bottom: 0; }

.tipo-row--reverse { direction: rtl; }
.tipo-row--reverse > * { direction: ltr; }

.tipo-row__img {
  border-radius: 1.6rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 22px 45px rgba(23, 21, 29, 0.12);
}

.tipo-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.tipo-row:hover .tipo-row__img img {
  transform: scale(1.03);
}

.tipo-row__num {
  display: block;
  margin-bottom: 1rem;
  color: var(--red);
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 950;
}

.tipo-row__content h3 {
  margin: 0 0 1rem;
  font-size: 2.5rem;
  font-weight: 950;
  text-transform: uppercase;
  line-height: 1;
}

.tipo-row__content p {
  margin: 0 0 2rem;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
  max-width: 480px;
}

/* ===== PHOTO STORY ===== */
.photo-story {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 100svh;
  gap: 1rem;
  padding: 7rem 2rem 2rem;
  align-items: stretch;
  background:
    radial-gradient(circle at 18% 0%, rgba(247, 255, 77, 0.18), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(255, 54, 95, 0.2), transparent 30%),
    var(--coal);
  color: var(--white);
}

.photo-story .label { color: var(--yellow); }

.photo-story__copy {
  min-height: 0;
  height: min(640px, calc(100svh - 9rem));
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.035);
}

.photo-story__copy h2 {
  margin: 0;
  font-size: 4rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.photo-story__copy p:not(.label) {
  max-width: 560px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  font-size: 1.02rem;
}

.photo-story__grid {
  min-height: 0;
  height: min(640px, calc(100svh - 9rem));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.story-card {
  position: relative;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1) contrast(1.03);
  transition: transform 260ms ease;
}

.story-card:hover img { transform: scale(1.035); }

.story-card figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 0.9rem 1rem;
  background: linear-gradient(180deg, rgba(23, 21, 29, 0), rgba(23, 21, 29, 0.92));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

/* ===== DOBLECES ===== */
.dobleces {
  padding: 7rem 2rem;
  background: var(--coal);
  color: var(--white);
}

.dobleces__inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.dobleces .label { color: var(--yellow); }

.dobleces h2 {
  margin: 0 0 1.5rem;
  font-size: 4rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dobleces p:not(.label) {
  max-width: 580px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  font-size: 1.02rem;
}

.dobleces__img {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  border-radius: 1.6rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

/* ===== STATEMENT ===== */
.statement {
  padding: 7rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--coal);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.statement h2,
.statement__text {
  max-width: 1050px;
  margin: 0;
  color: var(--white);
  font-size: 5rem;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.statement__text span { display: block; }
.statement__red { color: var(--red); }

/* ===== BRANDS ===== */
.brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}

.brands__copy {
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brands__copy h2 {
  margin: 0;
  font-size: 4rem;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.brands__copy p {
  max-width: 560px;
  margin: 1.2rem 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem 2rem 2rem 0;
}

.brand-grid img {
  width: 100%;
  height: 140px;
  object-fit: contain;
  padding: 1.6rem;
  background: var(--white);
  border-radius: 1.15rem;
  box-shadow: var(--shadow);
  filter: grayscale(1) contrast(1.1);
}

/* ===== PROCESS ===== */
.process {
  padding: 7rem 2rem;
  background: var(--paper);
}

.section-head {
  max-width: 1180px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: end;
}

.section-head .label {
  grid-column: 1 / -1;
  margin-bottom: -2rem;
}

.section-head h2 {
  margin: 0;
  font-size: 4rem;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.section-head p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.steps {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  min-height: 280px;
  padding: 1.55rem;
  background: var(--white);
  border-radius: 1.15rem;
  box-shadow: var(--shadow);
}

.step span {
  display: block;
  margin-bottom: 3rem;
  color: var(--red);
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 950;
}

.step h3 {
  margin: 0 0 0.7rem;
  font-size: 1.1rem;
  font-weight: 950;
  text-transform: uppercase;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

/* ===== QUOTE ===== */
.quote {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}

.quote__image {
  min-height: 680px;
  overflow: hidden;
  margin: 2rem;
  border-radius: 1.6rem;
  box-shadow: 0 22px 45px rgba(23, 21, 29, 0.12);
}

.quote__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote__form {
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: center;
  gap: 0.9rem;
  margin: 2rem 0 2rem 2rem;
  background: var(--white);
  border-radius: 1.6rem 0 0 1.6rem;
  box-shadow: -24px 0 55px rgba(23, 21, 29, 0.08);
}

.quote__form .label,
.quote__form h2 {
  grid-column: 1 / -1;
}

.quote__form h2 {
  margin: 0;
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.quote__form label {
  display: grid;
  gap: 0.45rem;
}

.quote__form label span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote__form input,
.quote__form textarea,
.quote__form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0.85rem 0.95rem;
  outline: none;
  border-radius: 0;
  appearance: none;
}

.quote__form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2317151d' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.quote__form textarea { resize: vertical; }

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

.quote__actions {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 0.85rem;
}

.quote__actions .button {
  width: 100%;
  min-width: 0;
}

/* ===== FOOTER ===== */
.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  background: var(--paper);
  color: rgba(23, 21, 29, 0.62);
}

.footer img { width: 96px; height: auto; }

.footer p {
  margin: 0;
  font-size: 0.82rem;
}

/* ===== REVEAL ANIMATIONS ===== */
.hero__copy > *,
.hero__photo,
.nav__logo,
.nav__links a,
.nav__cta,
.story-card,
.button {
  will-change: transform, opacity;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ===== BREAKPOINTS ===== */
@media (max-width: 1180px) {
  .hero h1 { font-size: 4.7rem; }

  .hero__layout {
    grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
    gap: 1.4rem;
  }

  .hero__media {
    height: min(600px, calc(100svh - 10rem));
    min-height: 480px;
  }

  .intro__copy h2,
  .photo-story__copy h2,
  .section-head h2,
  .brands__copy h2,
  .quote__form h2,
  .tipo-row__content h3,
  .dobleces h2 {
    font-size: 3.25rem;
  }

  .tipo-row__content h3 { font-size: 2rem; }

  .statement h2 { font-size: 4rem; }
}

@media (max-width: 1080px) {
  .hero {
    min-height: auto;
    padding: 6.5rem 1.5rem 1.5rem;
  }

  .hero__layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__copy {
    max-width: 760px;
    padding: 2rem 0 0;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 8vw, 4.7rem);
  }

  .hero__media {
    width: 100%;
    height: 540px;
    min-height: 0;
  }
}

@media (max-width: 940px) {
  .nav {
    padding: 0.9rem 1rem;
  }

  .nav__cta { display: none; }

  .nav__menu {
    display: flex;
    justify-self: end;
  }

  .nav__links {
    position: fixed;
    inset: 72px 1rem auto;
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 1rem;
  }

  .nav__links.is-open { display: flex; }

  .nav__links a {
    padding: 1rem 0.3rem;
    border-bottom: 1px solid var(--line);
  }

  .nav__links a:last-child { border-bottom: 0; }

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

  .hero {
    min-height: auto;
    padding: 6.5rem 1rem 1rem;
  }

  .hero__layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero__copy {
    max-width: 760px;
    padding: 2rem 0 0;
  }

  .hero__media {
    height: 540px;
    min-height: 0;
  }

  .intro,
  .brands,
  .quote,
  .photo-story,
  .tipos .section-head,
  .section-head {
    grid-template-columns: 1fr;
  }

  .intro,
  .quote { min-height: auto; }

  .intro__copy,
  .photo-story__copy,
  .brands__copy,
  .quote__form {
    padding: 4rem 2rem;
  }

  .intro__image,
  .quote__image,
  .quote__form {
    margin: 1rem;
    border-radius: 1.2rem;
  }

  .intro__image,
  .quote__image {
    min-height: 0;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .photo-story {
    padding: 1rem;
  }

  .photo-story__copy,
  .photo-story__grid {
    height: auto;
    min-height: auto;
    grid-template-rows: none;
  }

  .photo-story__grid {
    gap: 1.25rem;
    grid-auto-rows: 240px;
  }

  .brand-grid {
    padding: 0 1rem 3rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tipo-row,
  .tipo-row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 1.5rem;
  }

  .tipo-row { margin-bottom: 3rem; }

  .tipo-row__img { aspect-ratio: 16 / 9; }

  .dobleces h2 { font-size: 2.6rem; }

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

@media (max-width: 620px) {
  .hero {
    padding: 6rem 1rem 1rem;
  }

  .hero h1 {
    font-size: 2.45rem;
    line-height: 0.96;
  }

  .hero p:not(.label) { font-size: 1rem; }

  .hero__media {
    height: 500px;
    grid-template-rows: repeat(8, minmax(0, 1fr));
  }

  .hero__photo--main  { grid-column: 1 / 13; grid-row: 1 / 4; }
  .hero__photo--wide  { grid-column: 1 / 13; grid-row: 6 / 9; }
  .hero__photo--small { grid-column: 1 / 7;  grid-row: 4 / 6; }
  .hero__photo--tall  { grid-column: 7 / 13; grid-row: 4 / 6; }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .button {
    width: min(100%, 300px);
    min-width: 0;
    padding-inline: 1.35rem;
  }

  .intro__copy,
  .photo-story__copy,
  .brands__copy,
  .quote__form {
    padding: 3.5rem 1rem;
  }

  .intro__copy h2,
  .photo-story__copy h2,
  .section-head h2,
  .brands__copy h2,
  .quote__form h2 {
    font-size: 2.45rem;
  }

  .tipo-row__content h3 { font-size: 1.8rem; }

  .photo-story {
    padding: 1rem;
  }

  .photo-story__grid {
    grid-template-columns: 1fr;
    gap: 1.85rem;
    grid-auto-rows: auto;
  }

  .story-card,
  .story-card--large,
  .story-card--tall {
    aspect-ratio: 1 / 1;
    grid-column: auto;
    grid-row: auto;
  }

  .tipos { padding: 4.5rem 1rem; }

  .tipos .section-head { gap: 1.7rem; margin-bottom: 2.5rem; }

  .dobleces { padding: 4.5rem 1rem; }
  .dobleces h2 { font-size: 2rem; }

  .statement,
  .process {
    padding: 4.5rem 1rem;
  }

  .section-head {
    gap: 1.7rem;
    margin-bottom: 2rem;
  }

  .section-head .label { margin-bottom: -1.2rem; }

  .brand-grid,
  .steps,
  .quote__form,
  .quote__actions {
    grid-template-columns: 1fr;
  }

  .brand-grid { gap: 1.85rem; }
  .steps { gap: 1.85rem; }

  .statement h2 { font-size: 2.65rem; }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== WHATSAPP FLOAT ===== */
.wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
}
.wa:hover { transform: scale(1.1); }
.wa svg { width: 28px; height: 28px; fill: #fff; }
