/* =========================================================
   SO.CO.BIO.MA.
   HOJA DE ESTILOS PRINCIPAL
========================================================= */

:root {
  --verde-oscuro: #234b39;
  --verde: #3d6a50;
  --verde-claro: #e9f0e8;
  --verde-acento: #94ad35;

  --arena: #f3efe5;
  --crema: #fbfaf6;
  --blanco: #ffffff;

  --texto: #20342a;
  --texto-suave: #66736b;
  --borde: #dce4dc;

  --radio: 22px;

  --sombra:
    0 18px 45px rgba(32, 52, 42, 0.10);
}


/* =========================================================
   GENERAL
========================================================= */

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;

  font-family: "DM Sans", Arial, sans-serif;

  color: var(--texto);
  background: var(--crema);

  line-height: 1.65;
}

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

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

.container {
  width: min(92%, 1180px);
  margin-inline: auto;
}

.section {
  padding: 90px 0;
}

.section-soft {
  background: var(--verde-claro);
}

.section-dark {
  background: var(--verde-oscuro);
  color: var(--blanco);
}


/* =========================================================
   TIPOGRAFÍA
========================================================= */

h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h2 {
  margin-bottom: 22px;

  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-top: 0;
}

.section-label,
.section-kicker,
.eyebrow {
  display: inline-block;

  margin: 0 0 8px;

  color: var(--verde-acento);

  font-size: 0.8rem;
  font-weight: 800;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(251, 250, 246, 0.97);

  backdrop-filter: blur(14px);

  border-bottom:
    1px solid rgba(35, 75, 57, 0.08);

  transition:
    box-shadow 0.25s ease;
}

.site-header.compact {
  box-shadow:
    0 8px 24px rgba(35, 75, 57, 0.08);
}

.nav-container {
  min-height: 112px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 36px;
}

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

.site-logo {
  width: auto;
  height: 105px;

  object-fit: contain;

  transition:
    height 0.25s ease;
}

.site-header.compact .nav-container {
  min-height: 76px;
}

.site-header.compact .site-logo {
  height: 72px;
}

.main-nav {
  display: flex;
  align-items: center;

  gap: 24px;

  font-size: 1.05rem;
  font-weight: 600;
}

.main-nav a {
  color: #34483f;

  transition:
    color 0.2s ease;
}

.main-nav a:hover {
  color: var(--verde-acento);
}

.nav-donate {
  padding: 12px 20px;

  border-radius: 999px;

  background: var(--verde-oscuro);

  color: #ffffff !important;

  font-weight: 700;

  box-shadow:
    0 6px 18px rgba(35, 75, 57, 0.16);
}

.nav-donate:hover {
  background: var(--verde-acento);

  color: #183d2d !important;
}

.menu-toggle {
  display: none;

  border: 0;
  background: none;

  color: var(--verde-oscuro);

  font-size: 1.8rem;

  cursor: pointer;
}


/* =========================================================
   BOTONES
========================================================= */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: auto;

  padding: 13px 21px;

  border: 1px solid transparent;
  border-radius: 999px;

  font-size: 0.9rem;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

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

.button-primary {
  background: var(--verde-oscuro);
  color: var(--blanco);
}

.button-primary:hover {
  box-shadow:
    0 10px 24px rgba(35, 75, 57, 0.25);
}

.button-light {
  background: var(--blanco);
  color: var(--verde-oscuro);
}

.button-outline {
  border-color: var(--verde);

  color: var(--verde-oscuro);

  background: transparent;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;

  min-height: 690px;

  display: flex;
  align-items: center;

  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;

  background-image:
    url("images/portada.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(20, 48, 35, 0.88) 0%,
      rgba(20, 48, 35, 0.68) 42%,
      rgba(20, 48, 35, 0.25) 72%,
      rgba(20, 48, 35, 0.08) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 5;

  max-width: 760px;

  padding: 80px 0;

  color: var(--blanco);
}

.hero h1 {
  max-width: 820px;

  margin: 12px 0 22px;

  color: #ffffff;

  font-size:
    clamp(3rem, 5.2vw, 5.2rem);

  line-height: 0.98;

  letter-spacing: -0.04em;
}

.hero h1 span {
  color: #ffffff;
}

.hero-description {
  max-width: 680px;

  color: #eef5ef;

  font-size: 1.08rem;
}

.hero-buttons {
  margin-top: 32px;

  display: flex;

  gap: 12px;

  flex-wrap: wrap;
}


/* =========================================================
   COLUMNAS GENERALES
========================================================= */

.two-columns {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 80px;
}

.section-text {
  color: var(--texto-suave);

  font-size: 1.04rem;
}

.section-header,
.section-heading {
  display: flex;

  justify-content: space-between;
  align-items: end;

  gap: 60px;

  margin-bottom: 45px;
}

.section-header > p,
.section-heading > p {
  max-width: 430px;

  margin-bottom: 0;

  color: var(--texto-suave);
}


/* =========================================================
   QUÉ HACEMOS
========================================================= */

.work-section {
  padding: 100px 0;

  background: #f7f7f2;
}

.work-heading {
  max-width: 760px;

  margin-bottom: 50px;
}

.work-heading h2 {
  margin: 0 0 24px;

  color: #183d2d;

  font-size:
    clamp(3rem, 5vw, 5rem);

  line-height: 1;
}

.work-heading h2 span {
  color: var(--verde-acento);
}

.work-intro {
  max-width: 700px;

  color: #66716b;

  font-size: 1.08rem;
  line-height: 1.8;
}

.work-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 28px;
}

.work-card {
  overflow: hidden;

  background: #f5f4ee;

  border-radius: 26px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.work-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 18px 45px rgba(24, 50, 37, 0.14);
}

.work-card img {
  width: 100%;
  height: 360px;

  object-fit: cover;
}

.work-card-content {
  padding: 30px 32px 35px;
}

.work-card-content span {
  color: var(--verde-acento);

  font-size: 0.8rem;
  font-weight: 800;
}

.work-card-content h3 {
  margin: 8px 0 15px;

  color: #173d2c;

  font-size: 1.55rem;
}

.work-card-content p {
  margin: 0;

  color: #5c665f;

  line-height: 1.7;
}


/* =========================================================
   EDUCACIÓN AMBIENTAL
========================================================= */

.feature {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 70px;

  align-items: center;
}

.feature-image {
  min-height: 520px;

  border-radius: 28px;

  overflow: hidden;

  box-shadow: var(--sombra);
}

.feature-photo {
  width: 100%;

  height: 100%;
  min-height: 520px;

  object-fit: cover;

  object-position: center;
}

.feature-content p {
  color: var(--texto-suave);
}


/* =========================================================
   SUMATE
========================================================= */

.join-section {
  padding: 90px 0 70px;

  background: #eef3ea;
}

.join-heading {
  margin-bottom: 42px;
}

.join-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;
}

.join-card {
  min-height: 320px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  padding: 30px 34px;

  background: #ffffff;

  border:
    1px solid var(--borde);

  border-radius: 24px;

  box-shadow:
    0 12px 32px rgba(30, 60, 45, 0.06);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.join-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 18px 42px rgba(30, 60, 45, 0.11);
}

.join-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 26px;

  border-radius: 50%;

  background: #edf2dc;

  font-size: 1.8rem;
}

.join-card h3 {
  margin-bottom: 14px;

  font-size: 1.55rem;
}

.join-card p {
  margin-bottom: 28px;

  color: var(--texto-suave);
}

.join-card .button {
  margin-top: auto;
}


/* =========================================================
   DONACIONES
========================================================= */

/* =========================================================
   DONACIONES — NUEVO DISEÑO
========================================================= */

.donation-section {
  padding: 95px 0;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f5f7f2 100%
    );
}


/* ENCABEZADO */

.donation-heading {
  max-width: 760px;

  margin-bottom: 48px;
}

.donation-heading h2 {
  margin: 0 0 20px;

  color: #183d2d;

  font-size: clamp(2.4rem, 4vw, 3.3rem);
  line-height: 1.08;
}

.donation-intro {
  max-width: 680px;

  margin: 0;

  color: #5f6c65;

  font-size: 1.05rem;
  line-height: 1.75;
}


/* =========================================================
   TARJETAS DE DONACIÓN
========================================================= */

.donation-options {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 28px;

  align-items: stretch;
}


/* TARJETA */

.donation-card {
  min-height: 390px;

  display: flex;
  flex-direction: column;

  padding: 34px;

  background: #ffffff;

  border:
    1px solid rgba(31, 90, 67, 0.12);

  border-radius: 24px;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.donation-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.09);
}


/* LOGO MERCADO PAGO */

.donation-card-logo {
  height: 64px;

  display: flex;
  align-items: center;

  margin-bottom: 20px;
}

.donation-card-logo img {
  width: 62px;
  height: 62px;

  object-fit: contain;
}


/* PAYPAL */

.paypal-brand {
  height: 64px;

  display: flex;
  align-items: center;

  margin-bottom: 20px;

  color: #003087;

  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}


/* ETIQUETA */

.donation-card-label {
  margin: 0 0 10px;

  color: #1f5a43;

  font-size: 1.1rem;
  font-weight: 800;
}

.paypal-card-label {
  color: #0070ba;
}


/* TÍTULO */

.donation-card h3 {
  margin: 0 0 16px;

  color: #183d2d;

  font-size: 1.55rem;
  line-height: 1.25;
}


/* TEXTO */

.donation-card-text {
  margin: 0 0 28px;

  color: #5d6962;

  line-height: 1.7;
}


/* =========================================================
   BOTÓN MERCADO PAGO
========================================================= */

.donation-action {
  margin-top: auto;

  align-self: flex-start;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;

  padding: 13px 28px;

  border-radius: 10px;

  font-size: 1rem;
  font-weight: 700;

  text-decoration: none;
}

.donation-action-mp {
  background: #009ee3;

  color: #ffffff !important;

  box-shadow:
    0 6px 16px rgba(0, 158, 227, 0.20);
}

.donation-action-mp:hover {
  background: #008ed0;

  transform: translateY(-2px);
}


/* =========================================================
   PAYPAL
========================================================= */

.donation-paypal-form {
  margin: auto 0 0;
}

.donation-paypal-button {
  display: block;

  width: auto;
  height: auto;

  max-width: 175px;

  cursor: pointer;

  transition:
    transform 0.2s ease;
}

.donation-paypal-button:hover {
  transform: translateY(-2px);
}


/* =========================================================
   OTROS MEDIOS DE DONACIÓN
========================================================= */

.other-donation-methods {
  margin-top: 60px;

  padding: 42px;

  display: grid;

  grid-template-columns:
    0.8fr 1.2fr;

  gap: 55px;

  align-items: center;

  background: #ffffff;

  border:
    1px solid rgba(31, 90, 67, 0.10);

  border-radius: 26px;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.05);
}


.other-donation-heading h3 {
  margin: 0 0 14px;

  color: #183d2d;

  font-size: 1.7rem;
  line-height: 1.25;
}

.other-donation-heading p:last-child {
  margin: 0;

  color: #617067;

  line-height: 1.7;
}


/* IMAGEN */

.other-donation-image {
  display: flex;
  justify-content: center;
}

.other-donation-image img {
  width: 100%;
  max-width: 430px;

  height: auto;

  display: block;
}


/* =========================================================
   DONACIONES — TABLET
========================================================= */

@media (max-width: 900px) {

  .other-donation-methods {
    grid-template-columns: 1fr;

    gap: 30px;
  }

}


/* =========================================================
   DONACIONES — CELULAR
========================================================= */

@media (max-width: 768px) {

  .donation-section {
    padding: 70px 0;
  }

  .donation-heading {
    margin-bottom: 34px;
  }

  .donation-heading h2 {
    font-size: 2.2rem;
  }

  .donation-options {
    grid-template-columns: 1fr;

    gap: 20px;
  }

  .donation-card {
    min-height: auto;

    padding: 26px;
  }

  .donation-card h3 {
    font-size: 1.35rem;
  }

  .donation-action {
    width: 100%;
  }

  .donation-paypal-button {
    max-width: 170px;
  }

  .other-donation-methods {
    margin-top: 35px;

    padding: 26px 22px;

    grid-template-columns: 1fr;
  }

  .other-donation-image img {
    max-width: 100%;
  }

}
/* =========================================================
   NOVEDADES
========================================================= */

.news-section {
  padding: 70px 0;

  background: #ffffff;
}

.news-section .container {
  width:
    min(92%, 1180px);
}

.news-heading {
  margin-bottom: 44px;
}

.news-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0, 1fr));

  gap: 28px;
}

.news-card {
  height: 100%;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  background: #f7f7f2;

  border:
    1px solid var(--borde);

  border-radius: 24px;
}

.news-image {
  overflow: hidden;

  background: #f3f3ef;
}

.news-image img {
  width: 100%;

  aspect-ratio: 16 / 9;

  object-fit: contain;

  background: #f3f3ef;

  transition:
    transform 0.4s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.02);
}

.news-content {
  flex: 1;

  display: flex;
  flex-direction: column;

  padding: 28px;
}

.news-category {
  margin: 0 0 10px;

  color: var(--verde-acento);

  font-size: 0.75rem;
  font-weight: 800;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}

.news-content h3 {
  margin: 0 0 14px;

  color: var(--verde-oscuro);

  font-size: 1.45rem;

  line-height: 1.25;
}

.news-content p {
  color: var(--texto-suave);

  line-height: 1.7;
}

.news-link {
  margin-top: auto;

  color: var(--verde-oscuro);

  font-weight: 800;
}

.news-link:hover {
  text-decoration: underline;
}

.news-date {
  display: block;

  margin-top: 12px;

  color: #78837d;

  font-size: 0.82rem;
}

.news-all {
  margin-top: 60px;
  margin-bottom: 40px;

  text-align: center;
}

.news-all-button {
  display: inline-block;

  padding: 14px 28px;

  background: var(--verde-oscuro);

  color: #ffffff;

  border:
    2px solid var(--verde-oscuro);

  border-radius: 999px;

  font-weight: 700;
}


/* =========================================================
   TIENDA — SHOPIFY
========================================================= */

#tienda {
  padding: 85px 0 90px;

  background:
    linear-gradient(
      180deg,
      #f6f5ef 0%,
      #eef3ea 100%
    );
}

#tienda > div {
  width: min(92%, 1180px);

  margin-inline: auto;
}

#tienda h2 {
  margin-bottom: 8px;
}


/* -------------------------
   GRILLA
------------------------- */

#shopify-destacados {
  width: 100%;

  margin:
    45px auto 0;

  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  column-gap: 32px;
  row-gap: 52px;

  align-items: stretch;
}


/* -------------------------
   TARJETA
------------------------- */

.shopify-product-card {
  min-width: 0;

  height: 100%;

  display: grid;

  grid-template-rows:
    280px 1fr;

  background: #ffffff;

  border:
    1px solid rgba(31, 90, 67, 0.10);

  border-radius: 22px;

  overflow: hidden;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.shopify-product-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.10);
}


/* -------------------------
   IMAGEN
------------------------- */

/* -------------------------
   IMAGEN
------------------------- */

.shopify-product-image {
  width: 100%;
  height: 280px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px;

  background: #ffffff;
}

.shopify-product-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
}

/* -------------------------
   INFORMACIÓN
------------------------- */

.shopify-product-content {
  display: grid;

  grid-template-rows:
    4.35em
    1.5em
    48px;

  row-gap: 12px;

  padding:
    18px 20px 24px;
}


/* Título: hasta 3 líneas */

.shopify-product-content h3 {
  height: 4.35em;

  margin: 0;

  overflow: hidden;

  color: #183d2d;

  font-size: 1.05rem;

  line-height: 1.38;

  display: -webkit-box;

  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}


/* Precio */

.shop-product-price {
  height: 1.5em;

  margin: 0;

  color: var(--verde-oscuro);

  font-size: 1rem;
  font-weight: 700;
}


/* Botón */

.shopify-product-content .button {
  margin: 0;

  align-self: start;
  justify-self: start;

  padding: 11px 20px;

  border-radius: 999px;

  font-size: 0.9rem;
}


/* -------------------------
   VER TODA LA TIENDA
------------------------- */

#tienda > div > div:last-child {
  margin-top: 55px !important;

  margin-bottom: 10px !important;

  text-align: center;
}

#tienda > div > div:last-child .button {
  padding: 14px 30px;

  font-size: 1rem;

  box-shadow:
    0 6px 18px rgba(31, 90, 67, 0.16);
}


/* =========================================================
   CONTACTO
========================================================= */

.contact-section {
  padding: 100px 0;

  background: #eef3ea;
}

.contact-grid {
  display: grid;

  grid-template-columns:
    1fr 0.85fr;

  gap: 70px;

  align-items: center;
}

.contact-copy {
  max-width: 620px;
}

.contact-copy h2 {
  margin: 0 0 24px;

  color: #183d2d;

  font-size:
    clamp(3rem, 5vw, 4.6rem);

  line-height: 1;
}

.contact-copy > p {
  color: #66716b;

  font-size: 1.05rem;

  line-height: 1.8;
}

.contact-data {
  display: grid;

  gap: 24px;

  margin-top: 35px;
}

.contact-data div {
  display: flex;

  flex-direction: column;

  gap: 5px;
}

.contact-label {
  color: var(--verde-acento);

  font-size: 0.78rem;
  font-weight: 800;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}

.contact-data a {
  color: #183d2d;

  font-size: 1.08rem;

  font-weight: 700;
}

.contact-data p {
  margin: 0;

  color: #183d2d;

  font-weight: 600;
}

.contact-card {
  padding: 40px;

  background: #ffffff;

  border-radius: 26px;

  box-shadow:
    0 14px 36px rgba(35, 75, 57, 0.08);
}

.contact-card h3 {
  margin-bottom: 14px;

  color: #183d2d;

  font-size: 1.8rem;
}

.contact-card p {
  color: #66716b;

  line-height: 1.7;
}

.contact-socials {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin: 26px 0;
}

.social-button {
  padding: 11px 18px;

  border:
    1px solid var(--verde-oscuro);

  border-radius: 999px;

  color: var(--verde-oscuro);

  font-weight: 700;
}

.social-button:hover {
  background: var(--verde-oscuro);

  color: #ffffff;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding:
    65px 0 28px;

  background: #17382a;

  color: #dce9df;
}

.footer-main {
  display: grid;

  grid-template-columns:
    1.4fr 0.7fr 0.9fr;

  gap: 70px;

  align-items: start;
}

.footer-brand {
  max-width: 370px;
}

.footer-logo {
  width: auto;
  height: 105px;

  margin-bottom: 20px;

  object-fit: contain;
}

.footer-brand p {
  color: #c5d4ca;

  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: flex;

  flex-direction: column;

  gap: 10px;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 10px;

  color: #ffffff;

  font-size: 1rem;
}

.footer-links a,
.footer-contact a {
  color: #dce9df;

  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #b2c83f;
}

.footer-contact p {
  margin: 0;

  color: #c5d4ca;
}

.footer-socials {
  display: flex;

  gap: 14px;

  margin-top: 10px;
}

.footer-bottom {
  margin-top: 45px;

  padding-top: 22px;

  display: flex;

  justify-content: space-between;

  gap: 30px;

  border-top:
    1px solid rgba(255, 255, 255, 0.12);

  color: #aebeb3;

  font-size: 0.78rem;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-float {
  position: fixed !important;

  right: 25px !important;
  bottom: 25px !important;

  z-index: 999999 !important;

  width: 64px !important;
  height: 64px !important;

  display: flex !important;

  align-items: center !important;
  justify-content: center !important;

  border-radius: 50% !important;

  background: #25d366 !important;

  color: #ffffff !important;

  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.25) !important;

  transition:
    transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.06);
}

.whatsapp-float img,
.whatsapp-float svg {
  width: 36px;
  height: 36px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .main-nav {
    gap: 14px;

    font-size: 0.9rem;
  }

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

  #shopify-destacados {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

  .container {
    width:
      calc(100% - 32px);
  }


  /* Header */

  .nav-container {
    min-height: 88px;
  }

  .site-logo {
    height: 82px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;

    top: 82px;
    left: 14px;
    right: 14px;

    display: none;

    flex-direction: column;

    align-items: stretch;

    padding: 12px;

    background: #ffffff;

    border:
      1px solid var(--borde);

    border-radius: 18px;

    box-shadow: var(--sombra);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 11px 12px;
  }


  /* Hero */

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding: 70px 0;
  }

  .hero h1 {
    font-size:
      clamp(2.8rem, 12vw, 4.2rem);
  }


  /* Secciones */

  .section {
    padding: 65px 0;
  }

  .two-columns,
  .feature,
  .donation-grid,
  .contact-grid {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .section-header,
  .section-heading {
    display: block;
  }

  .section-header > p,
  .section-heading > p {
    margin-top: 18px;
  }


  /* Qué hacemos */

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

  .work-card img {
    height: 280px;
  }


  /* Sumate */

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

  .join-card {
    min-height: auto;
  }


  /* Novedades */

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


  /* Tienda */

  #tienda {
    padding:
      60px 18px 70px;
  }

  #shopify-destacados {
    grid-template-columns: 1fr;

    margin-top: 30px;

    row-gap: 32px;
  }

  .shopify-product-card {
    grid-template-rows:
      250px 1fr;

    border-radius: 18px;
  }

  .shopify-product-image {
    height: 250px;

    padding: 18px;
  }

  .shopify-product-content {
    grid-template-rows:
      auto
      1.5em
      48px;

    padding:
      18px 20px 22px;
  }

  .shopify-product-content h3 {
    height: auto;

    font-size: 1rem;

    -webkit-line-clamp: 3;
  }


  /* Contacto */

  .contact-section {
    padding: 65px 0;
  }

  .contact-card {
    padding: 30px;
  }


  /* Footer */

  .footer-main {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .footer-logo {
    width: 180px;
    height: auto;

    max-width: 70%;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 8px;
  }


  /* WhatsApp */

  .whatsapp-float {
    right: 16px !important;
    bottom: 16px !important;

    width: 56px !important;
    height: 56px !important;
  }

}


/* =========================================================
   CELULARES PEQUEÑOS
========================================================= */

@media (max-width: 600px) {

  body {
    font-size: 16px;
  }

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .button {
    width: auto;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: stretch;
  }

  .hero-buttons .button {
    width: 100%;
  }

  .news-content {
    padding: 24px;
  }

  .shopify-product-content h3 {
    font-size: 1rem;
  }
   }
/* =========================================================
   JERARQUÍA DE TÍTULOS DE SECCIÓN
========================================================= */

/* ETIQUETAS:
   TIENDA
   ACTUALIDAD
   QUÉ HACEMOS
   TU AYUDA HACE LA DIFERENCIA
   EDUCACIÓN AMBIENTAL
   SUMATE A SO.CO.BIO.MA.
   CONTACTO
*/

.section-label,
.section-kicker {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.15;
  margin-bottom: 14px;
}


/* TÍTULOS PRINCIPALES */

.section-heading h2,
.work-heading h2,
#tienda h2,
.contact-section h2,
.feature-content h2,
.join-heading h2,
.donation-copy h2 {
  font-size: clamp(2.15rem, 3.5vw, 3rem);
  line-height: 1.08;
}


/* CELULAR */

@media (max-width: 768px) {

  .section-label,
  .section-kicker {
    font-size: 1.35rem;
    letter-spacing: 0.05em;
  }

  .section-heading h2,
  .work-heading h2,
  #tienda h2,
  .contact-section h2,
  .feature-content h2,
  .join-heading h2,
  .donation-copy h2 {
    font-size: 2rem;
  }
   }
/* =========================================================
   DONACIÓN — MERCADO PAGO
========================================================= */

.mercadopago-donation {
  margin-top: 28px;
  padding: 26px 28px;

  background: #ffffff;

  border: 1px solid rgba(31, 90, 67, 0.14);
  border-radius: 20px;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);

}

.mercadopago-brand {
  margin-bottom: 14px;
}

.mercadopago-logo {
  width: 72px;
  height: 72px;

  display: block;
  object-fit: contain;
}


/* Texto superior */

.mercadopago-donation .donation-subtitle {
  margin: 0 0 12px;

  color: #1f5a43;

  font-size: 1.2rem;
  font-weight: 700;
}


/* Título */

.mercadopago-donation h3 {
  margin: 0 0 16px;

  color: #183d2d;

  font-size: 1.4rem;
  line-height: 1.25;
}


/* Texto */

.mercadopago-donation p {
  margin: 0 0 14px;

  line-height: 1.65;
}


/* Nota final */

.mercadopago-note {
  color: #596860;
  font-size: 0.95rem;
}


/* BOTÓN */

/* BOTÓN */

a.mercadopago-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin-top: 10px !important;
  padding: 14px 28px !important;

  min-height: 50px !important;

  background: #009ee3 !important;
  color: #ffffff !important;

  border: none !important;
  border-radius: 10px !important;

  font-size: 1rem !important;
  font-weight: 700 !important;

  text-decoration: none !important;

  box-shadow:
    0 5px 14px rgba(0, 158, 227, 0.20) !important;
}

a.mercadopago-button:hover {
  background: #008ed0 !important;
  color: #ffffff !important;

  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(0, 158, 227, 0.30) !important;
}


/* CELULAR */

@media (max-width: 768px) {
  a.mercadopago-button {
    width: 100% !important;
  }
}

/* =========================================================
   TIENDA — CELULAR
========================================================= */

@media (max-width: 768px) {

  #tienda {
    padding: 60px 0 70px !important;
  }

  #tienda > div {
    width: 92% !important;
    max-width: 440px !important;
    margin: 0 auto !important;
  }

  #shopify-destacados {
    display: grid !important;

    grid-template-columns: 1fr !important;

    gap: 28px !important;

    width: 100% !important;
  }

  .shopify-product-card {
    width: 100% !important;
    max-width: 420px !important;

    margin: 0 auto !important;

    grid-template-rows:
      270px auto !important;
  }

  .shopify-product-image {
    width: 100% !important;
    height: 270px !important;

    padding: 12px !important;
  }

  .shopify-product-image img {
    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
  }

  .shopify-product-content {
    display: grid !important;

    grid-template-rows:
      auto
      auto
      auto !important;

    gap: 14px !important;

    padding: 20px 22px 24px !important;
  }

  .shopify-product-content h3 {
    height: auto !important;

    font-size: 1.05rem !important;
    line-height: 1.35 !important;

    overflow: visible !important;

    display: block !important;
  }

  .shop-product-price {
    height: auto !important;

    font-size: 1rem !important;
  }

  .shopify-product-content .button {
    width: auto !important;
    min-width: 145px !important;

    padding: 12px 22px !important;

    font-size: 0.95rem !important;

    justify-self: start !important;
  }

}
