
:root {
  --brown-950: #171006;
  --brown-900: #24180b;
  --brown-800: #3b2917;
  --cream-50: #fffef9;
  --cream-100: #f7f3e9;
  --cream-200: #ede5d3;
  --olive-500: #909a72;
  --olive-600: #7d8761;
  --olive-700: #68704f;
  --green-500: #81c92d;
  --green-600: #61a91e;
  --lime-300: #e5f47e;
  --mango-400: #efae42;
  --white: #ffffff;
  --text: #2c271f;
  --muted: #756f65;
  --container: 1160px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 28px 70px rgba(28, 22, 10, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.topbar {
  position: fixed;
  z-index: 100;
  top: 14px;
  right: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 24px;
  align-items: center;
  max-width: 1240px;
  min-height: 64px;
  margin: 0 auto;
  padding: 9px 12px 9px 18px;
  border: 1px solid rgba(255,255,255,.64);
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 16px 40px rgba(27,22,10,.09);
  backdrop-filter: blur(18px);
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.topbar.is-scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 16px 42px rgba(27,22,10,.17);
}

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

.brand img {
  display: block;
  width: 118px;
  height: auto;
}

.main-menu {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.main-menu a {
  position: relative;
  padding: 8px 0;
  font-size: .78rem;
  font-weight: 700;
}

.main-menu a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--green-500);
  content: "";
  transform: scaleX(0);
  transition: transform .25s ease;
}

.main-menu a:hover::after,
.main-menu a:focus-visible::after {
  transform: scaleX(1);
}

.topbar-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.language-switch {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(59,41,23,.12);
  border-radius: 999px;
}

.language-switch button {
  padding: 5px 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button.is-active {
  background: var(--brown-900);
  color: var(--white);
}

.language-switch > span {
  width: 1px;
  height: 14px;
  background: rgba(59,41,23,.16);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--brown-900);
  transition: transform .25s ease, opacity .25s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
  transition: transform .25s ease, filter .25s ease, background .25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.button--small {
  min-height: 40px;
  padding: 8px 15px;
}

.button--lime {
  background: var(--lime-300);
  color: var(--brown-950);
}

.button--pale {
  background: var(--lime-300);
  color: var(--brown-950);
}

.button--olive {
  background: var(--olive-600);
  color: var(--white);
}

.button--center {
  width: max-content;
  margin: 34px auto 0;
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--brown-950);
}

.hero__image,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center 44%;
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(19,14,5,.76), rgba(19,14,5,.16) 52%, rgba(19,14,5,.55)),
    linear-gradient(180deg, rgba(19,14,5,.22), rgba(19,14,5,.18) 44%, rgba(19,14,5,.76));
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) .44fr minmax(300px, .78fr);
  gap: 42px;
  align-items: end;
  width: min(100% - 40px, var(--container));
  min-height: 720px;
  margin: 0 auto;
  padding: 150px 0 62px;
}

.hero h1,
.hero h2 {
  margin: 0;
  letter-spacing: -.035em;
  line-height: .96;
  text-wrap: balance;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(3.8rem, 7.6vw, 7.3rem);
  font-weight: 620;
}

.hero h2 {
  font-size: clamp(3rem, 5.7vw, 5.7rem);
  font-weight: 620;
}

.hero__left > p {
  max-width: 520px;
  margin: 32px 0 0;
  color: rgba(255,255,255,.76);
  font-size: .94rem;
  line-height: 1.65;
}

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

.hero__features a {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 188px;
  padding: 12px 15px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(11px);
}

.hero__features img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

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

.hero__features strong {
  font-size: .74rem;
}

.hero__features small {
  margin-top: 3px;
  color: rgba(255,255,255,.58);
  font-size: .6rem;
}

.hero__stat {
  align-self: start;
  justify-self: center;
  padding-top: 10px;
  text-align: center;
}

.hero__stat strong {
  display: block;
  color: var(--lime-300);
  font-size: clamp(4rem, 6vw, 6.4rem);
  font-weight: 650;
  letter-spacing: -.06em;
  line-height: .9;
}

.hero__stat span {
  display: block;
  max-width: 110px;
  margin: 10px auto 0;
  color: rgba(255,255,255,.74);
  font-size: .7rem;
  line-height: 1.4;
}

.hero__right {
  padding-bottom: 2px;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
  color: var(--lime-300);
  font-size: .82rem;
  font-weight: 800;
}

.section {
  padding: 96px 0;
}

.section--light {
  background: var(--cream-50);
}

.section--olive {
  color: var(--white);
  background: var(--olive-500);
}

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

.intro__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 34px;
}

.section-heading {
  max-width: 650px;
}

.section-heading h2 {
  margin: 12px 0 0;
  font-size: clamp(2.45rem, 4.5vw, 4.7rem);
  font-weight: 620;
  letter-spacing: -.045em;
  line-height: .98;
  text-wrap: balance;
}

.section-heading--light h2 {
  color: var(--white);
}

.label {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid rgba(59,41,23,.18);
  border-radius: 999px;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.label--light {
  border-color: rgba(255,255,255,.3);
  color: rgba(255,255,255,.76);
}

.intro__image {
  grid-column: 1 / -1;
  margin: 8px 0 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.intro__image img {
  display: block;
  width: 100%;
  height: clamp(360px, 45vw, 590px);
  object-fit: cover;
}

.intro__columns {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
}

.intro__columns p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.75;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(59,41,23,.1);
  border-bottom: 1px solid rgba(59,41,23,.1);
  background: var(--cream-50);
}

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

.ticker span {
  margin: 0 5px;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--lime-300);
  color: var(--brown-950);
  font-size: .68rem;
  font-weight: 750;
  white-space: nowrap;
}

.ticker span:nth-child(even) {
  background: var(--olive-500);
  color: var(--white);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section-top {
  display: flex;
  gap: 32px;
  align-items: end;
  justify-content: space-between;
}

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

.product-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(34,30,15,.19);
}

.product-card > img,
.product-card__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-card > img {
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,1,.36,1);
}

.product-card__overlay {
  background: linear-gradient(180deg, rgba(20,15,6,.04), rgba(20,15,6,.8));
}

.product-card:hover > img {
  transform: scale(1.055);
}

.product-card > span {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  font-size: .7rem;
  font-weight: 800;
}

.product-card > div:last-of-type {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 22px;
  left: 18px;
}

.product-card h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -.025em;
}

.product-card p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.72);
  font-size: .68rem;
}

.product-card > a {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--lime-300);
  color: var(--brown-950);
  font-weight: 900;
}

.product-card > div:last-of-type {
  padding-right: 50px;
}

.brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 54px;
  color: rgba(255,255,255,.57);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.future {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--white);
  background: var(--brown-950);
}

.future__image,
.future__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.future__image {
  object-fit: cover;
}

.future__overlay {
  background:
    linear-gradient(90deg, rgba(16,11,5,.18), rgba(16,11,5,.72) 58%, rgba(16,11,5,.88)),
    linear-gradient(180deg, rgba(16,11,5,.16), rgba(16,11,5,.45));
}

.future__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 80px;
  align-items: center;
  min-height: 650px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.future__copy {
  grid-column: 2;
}

.future h2 {
  max-width: 620px;
  margin: 14px 0 0;
  font-size: clamp(2.65rem, 4.8vw, 5rem);
  font-weight: 620;
  letter-spacing: -.045em;
  line-height: .98;
}

.future__copy > p {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.72);
  font-size: .9rem;
  line-height: 1.7;
}

.accordion {
  grid-column: 2;
  display: grid;
  margin-top: -14px;
}

.accordion__item {
  border-top: 1px solid rgba(255,255,255,.2);
}

.accordion__item:last-child {
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.accordion__item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
}

.accordion__item p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255,255,255,.66);
  font-size: .82rem;
  line-height: 1.6;
  opacity: 0;
  transition: max-height .35s ease, margin .35s ease, opacity .35s ease;
}

.accordion__item.is-open p {
  max-height: 140px;
  margin: -3px 0 20px;
  opacity: 1;
}

.partner__inner {
  display: grid;
  grid-template-columns: .64fr 1.36fr;
  gap: 70px;
  align-items: start;
}

.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px 44px;
}

.service img {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 8px;
  background: var(--lime-300);
  object-fit: contain;
}

.service h3 {
  margin: 14px 0 0;
  font-size: .98rem;
}

.service p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.65;
}

.harvest__heading {
  display: grid;
  grid-template-columns: 1.15fr .55fr;
  gap: 50px;
  align-items: end;
}

.harvest__heading h2 {
  margin: 0;
  font-size: clamp(3.7rem, 7vw, 7rem);
  font-weight: 610;
  letter-spacing: -.055em;
  line-height: .88;
}

.harvest__heading h2 span {
  display: block;
  color: var(--lime-300);
  text-align: right;
}

.harvest__heading p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.67);
  font-size: .84rem;
  line-height: 1.65;
}

.harvest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.harvest-card img {
  display: block;
  width: 100%;
  height: 390px;
  border-radius: 18px;
  object-fit: cover;
}

.harvest-card small {
  display: inline-flex;
  margin-top: 12px;
  color: rgba(255,255,255,.58);
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.harvest-card h3 {
  margin: 6px 0 0;
  color: var(--white);
  font-size: .92rem;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.insight img {
  display: block;
  width: 100%;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
}

.insight > span {
  display: inline-flex;
  margin-top: 14px;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--lime-300);
  font-size: .58rem;
  font-weight: 800;
}

.insight h3 {
  margin: 10px 0 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

.insight > a {
  display: inline-flex;
  margin-top: 12px;
  font-size: .7rem;
  font-weight: 800;
}

.footer {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: var(--white);
  background: var(--brown-950);
}

.footer__image,
.footer__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.footer__image {
  object-fit: cover;
}

.footer__overlay {
  background: linear-gradient(180deg, rgba(20,14,6,.44), rgba(20,14,6,.88));
}

.footer__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 76px 0 30px;
}

.footer__inner > h2 {
  margin: 0;
  color: var(--lime-300);
  font-size: clamp(4.5rem, 10vw, 10rem);
  font-weight: 620;
  letter-spacing: -.065em;
  line-height: .8;
}

.footer__inner > h2 span {
  color: var(--white);
}

.footer-card {
  display: grid;
  grid-template-columns: 1.35fr .7fr .9fr 1fr;
  gap: 36px;
  margin-top: 38px;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: rgba(22,14,6,.52);
  backdrop-filter: blur(14px);
}

.footer-card__brand img {
  width: 120px;
}

.footer-card p,
.footer-card a {
  color: rgba(255,255,255,.68);
  font-size: .72rem;
  line-height: 1.65;
}

.footer-card a {
  display: block;
  margin-top: 8px;
}

.footer-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: .82rem;
}

.footer-card__cta .button {
  display: inline-flex;
  width: max-content;
  margin-top: 14px;
  color: var(--brown-950);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  color: rgba(255,255,255,.52);
  font-size: .68rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .85s cubic-bezier(.22,1,.36,1);
}

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

@media (max-width: 1000px) {
  .topbar {
    grid-template-columns: 120px 1fr auto;
  }

  .main-menu {
    gap: 16px;
  }

  .main-menu a {
    font-size: .7rem;
  }

  .hero__content {
    grid-template-columns: 1fr .35fr;
  }

  .hero__right {
    grid-column: 1 / -1;
    max-width: 540px;
  }

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

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

  .footer-card {
    grid-template-columns: 1.2fr 1fr;
  }
}

@media (max-width: 780px) {
  .topbar {
    grid-template-columns: 1fr auto auto;
    right: 10px;
    left: 10px;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
  }

  .topbar-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .topbar-actions .button {
    display: none;
  }

  .main-menu {
    position: fixed;
    top: 90px;
    right: 10px;
    left: 10px;
    display: grid;
    gap: 0;
    padding: 18px;
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .main-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-menu a {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(59,41,23,.08);
  }

  .hero {
    min-height: 820px;
  }

  .hero__content {
    grid-template-columns: 1fr;
    align-content: end;
    min-height: 820px;
    padding-top: 130px;
  }

  .hero__stat {
    position: absolute;
    top: 120px;
    right: 10px;
  }

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

  .hero h2 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
  }

  .section {
    padding: 72px 0;
  }

  .intro__inner,
  .intro__columns,
  .section-top,
  .future__content,
  .harvest__heading {
    grid-template-columns: 1fr;
  }

  .intro__inner > .button {
    width: max-content;
  }

  .intro__columns {
    gap: 18px;
  }

  .section-top {
    display: grid;
    align-items: start;
  }

  .product-grid,
  .services,
  .harvest-grid,
  .insight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .future__content {
    display: grid;
    align-content: end;
  }

  .future__copy,
  .accordion {
    grid-column: 1;
  }

  .harvest__heading h2 span {
    text-align: left;
  }

  .footer-card {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .topbar {
    min-height: 58px;
  }

  .brand img {
    width: 98px;
  }

  .language-switch {
    display: none;
  }

  .hero__features {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__features a {
    width: 100%;
  }

  .product-grid,
  .services,
  .harvest-grid,
  .insight-grid,
  .footer-card {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 430px;
  }

  .brand-row {
    justify-content: flex-start;
  }

  .harvest__heading h2 {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

  .harvest-card img {
    height: 360px;
  }

  .footer__inner > h2 {
    font-size: clamp(3.8rem, 19vw, 6rem);
  }

  .footer__bottom {
    gap: 12px;
    flex-direction: column;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* =========================================================
   AJUSTES DE REFINAMIENTO V2
   ========================================================= */

/* Logo más discreto en el navegador. */
.brand img {
  width: 94px;
}

/* Navegación con mayor integración visual sobre el hero. */
.topbar {
  background: rgba(247, 243, 233, 0.68);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow:
    0 14px 36px rgba(27, 22, 10, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.topbar.is-scrolled {
  background: rgba(247, 243, 233, 0.88);
}

/* Hero más equilibrado y menos dominante. */
.hero__content {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.76fr);
}

.hero h1 {
  max-width: 600px;
  font-size: clamp(3.25rem, 6.25vw, 6rem);
}

.hero h2 {
  font-size: clamp(2.55rem, 4.65vw, 4.55rem);
}

/* La segunda sección mantiene el título en dos líneas. */
.intro .section-heading {
  max-width: 760px;
}

.intro .section-heading h2 {
  max-width: 760px;
  font-size: clamp(2.25rem, 3.65vw, 3.85rem);
  line-height: 1.02;
  text-wrap: balance;
}

/* Botón Conocer más más corto. */
.intro__inner > .button {
  min-height: 40px;
  padding: 9px 15px;
  gap: 8px;
  font-size: 0.72rem;
}

/* Ajuste del espacio tras retirar la marquesina. */
.products {
  border-top: 1px solid rgba(59, 41, 23, 0.08);
}

@media (max-width: 1000px) {
  .hero__content {
    grid-template-columns: 1fr;
  }

  .hero__right {
    grid-column: 1;
  }
}

@media (max-width: 780px) {
  .brand img {
    width: 88px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.9rem);
  }

  .hero h2 {
    font-size: clamp(2.4rem, 10.5vw, 3.8rem);
  }

  .intro .section-heading h2 {
    font-size: clamp(2.05rem, 8.5vw, 3rem);
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 82px;
  }
}


/* =========================================================
   CORRECCIÓN V3 — BOTÓN CONOCER MÁS
   ========================================================= */

.intro__inner > .button {
  width: auto;
  min-width: 0;
  min-height: 44px;
  aspect-ratio: auto;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
  align-self: start;
  justify-self: end;
}

@media (max-width: 780px) {
  .intro__inner > .button {
    justify-self: start;
  }
}
