/* ===================================================
   ESTILOS PERSONALIZADOS REFORESTACIÓN ALIMENTARIA
   Basado en plantilla Sailor - v4.7.0 de BootstrapMade
   Autor original: BootstrapMade.com
   Modificado por: [Soul creativa digial]
   =================================================== */

/* ===========================================
   GENERAL STYLES
   Tipografía, colores generales y fuentes
=========================================== */

body {
  font-family: 'CoconOT', sans-serif;
  font-weight: 300;
  color: #000000;
  background-color: #ffffff;
}

a {
  text-decoration: none;
  color: #ff5a7a;
  font-family: 'CoconOT';
}

a:hover {
  color: #e24d55;
  text-decoration: none;
}


/* -------------------------------
   FUENTES PERSONALIZADAS
   CoconOT en 3 pesos: Light, Regular, Bold
-------------------------------- */
@font-face {
  font-family: 'CoconOT';
  src: url('../fonts/CoconOT-Light.woff2') format('woff2'),
       url('../fonts/CoconOT-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'CoconOT';
  src: url('../fonts/CoconOT-Regular.woff2') format('woff2'),
       url('../fonts/CoconOT-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'CoconOT';
  src: url('../fonts/CoconOT-Bold.woff2') format('woff2'),
       url('../fonts/CoconOT-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
}
/* ===========================================
   TIPOGRAFÍA PERSONALIZADA GLOBAL
   Aplica CoconOT en todos los textos básicos del sitio:
   párrafos, listas, spans y strong.
   Define pesos por defecto: 300 (light), 400 (regular), 700 (bold)
=========================================== */

/* Fuente base: todos los textos generales */
 p {
  font-family: 'CoconOT', sans-serif;
  font-weight: 300; /* Peso más liviano por defecto */
  color: #000000;
  font-size: 20px;
  line-height: 1.6;
}

/* Ajuste para negritas reales */
strong {
  font-weight: 600;
}


/* ===========================================
   BOTÓN BACK TO TOP
   Flechita que aparece abajo a la derecha
=========================================== */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ff5a7a;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #ff4e79;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* ===========================================
   HEADER
   Incluye fondo, posición fija, efecto blur
=========================================== */
#header {
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.5s ease-in-out, backdrop-filter 0.5s ease-in-out;
}

/* Header cuando se scrollea */
#header.header-scrolled {
  background: rgba(226, 77, 77, 0.16);
  backdrop-filter: blur(10px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contenedor de logo */
#header .logo {
  display: flex;
  align-items: center;
  padding: 10px;
}

/* Imagen del logo */
#header .logo img {
  max-height: 130px;
  width: auto;
  display: block;
}

/* Contenedor interior del header */
#header .container {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* ===========================================
   NAVBAR (Menú de navegación principal)
   Incluye estilos desktop y mobile
=========================================== */

#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
}

.navbar {
  width: 100%;
}

/* Lista de ítems del menú */
.navbar ul {
 display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px; /* Nuevo: aire entre los ítems */
}

.navbar li {
  position: relative;
  text-align: center;
}

/* Enlaces del menú */
.navbar a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 20px;
  font-weight: 300;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  text-transform: uppercase;
  line-height: 1;
}

/* Hover en enlaces */
.navbar a:hover {
  color: #ff4e79;
}

/* 🍃 Animación de hoja al hacer hover */
.navbar a:hover::after {
  content: "🍃";
  position: absolute;
  font-size: 14px;
  right: -10px;
  top: 0;
  animation: leaf-fall 0.8s forwards ease-out;
}

/* Ítem activo del menú */
.navbar .active {
  color: #ff4e79;
  font-weight: 300;
  display: flex;
  align-items: center;
}

/* -------------------------------
   BOTÓN DONAR (versión desktop y mobile)
-------------------------------- */
.navbar .getstarted,
.navbar-mobile .getstarted {
  background: #ffffff;
  color: #ff4e79;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 400;
  transition: background 0.3s, color 0.3s;
  text-transform: none;
}

.navbar .getstarted:hover,
.navbar-mobile .getstarted:hover {
  background: #ff4e79;
  color: white;
}

/* ===========================================
   NAVBAR MOBILE
   Se activa en resoluciones menores a 1212px
=========================================== */

.mobile-nav-toggle {
  color: #ffffff;
  font-size: 45px;
  cursor: pointer;
  display: none;
  transition: 0.3s;
}

@media (max-width: 1362px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  .navbar-mobile ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    background: #d3284a5c;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(8px);
    padding: 40px 20px;
    z-index: 999;
    gap: 15px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .navbar-mobile a {
    font-size: 20px;
    color: white;
    padding: 15px;
    white-space: nowrap;
  }

  .navbar-mobile a:hover {
    color: #ff4e79;
  }
}

/* Animación reutilizable: caída de hoja */
@keyframes leaf-fall {
  0% {
    transform: translateY(0) rotate(0);
    opacity: 1;
  }
  100% {
    transform: translateY(20px) rotate(20deg);
    opacity: 0;
  }
}


/* ===========================================
   ABOUT SECTION
   Nueva estructura con 2 columnas centradas
=========================================== */

.about {
  padding: 160px 0 120px 0;
}

/* Títulos dentro de los text-box */
.about .text-box h3 {
  font-size: clamp(36px, 7vw, 48px);
  font-weight: 700;
  color: #ff4e79;
  margin-bottom: 15px;
  font-family: 'CoconOT', sans-serif;

}

/* Párrafos */
.about .text-box p {
  font-size: 22px;
  color: #000000;
  line-height: 1.6;
  text-shadow: none;
}

/*la caja flexible */
.about .d-flex { 
  gap: 40px; /* o el valor que te guste */
  flex-wrap: wrap; /* por si en mobile querés que se acomoden uno abajo del otro */
}

/* ===========================================
   CATEGORÍAS DE PLANTACIONES
   Bloque con 3 imágenes + overlay texto
=========================================== */

.categorias-home {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 2rem 1rem;
  max-width: 80%;
  margin: 0 auto 60px auto;
}

.contenedor-titulo {
  text-align: center;
}

/* Contenedor de cada imagen */
.categoria {
  flex: 1 1 300px; /* Esto hace que se acomoden según el espacio disponible */
  max-width: 100%;
  display: flex;
  justify-content: center;
}

/* Enlace con imagen + overlay */
.categoria-link {
  position: relative;
  display: block;
  border-radius: 9px;
  overflow: hidden;
}

/* Imagen */
.categoria-link img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.7);
  transition: transform 0.3s ease;
  border-radius: 9px;
}

/* Hover de zoom */
.categoria-link:hover img {
  transform: scale(1.03);
}

/* Texto centrado sobre imagen */
.overlay-texto {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
  text-align: center;
}

.titulo-box h3 {
  font-size: 72px;
  font-weight: 700;
  color: #ff4e79;
  font-family: 'CoconOT', sans-serif;
  margin: 0;
  position: relative;
  padding: 0 0 50px 0;
}

/* ===========================================
   SECCION DE MAPA. CAMMBIO COLOR BOTONES Y EFECTO HOJAS CAYENDO
=========================================== */
.seccion-mapa {
  padding: 120px 0; /* Espacio arriba y abajo */
}
.map-btn-celeste, .map-btn-amarillo, {
    background-color: #ffffff;
    color:  #ff4e79;
    border: 1px solid;
    color-border: #ff4e79;
}
.btn-warning:hover::after, 
.map-btn-celeste:hover::after {
  content: "🍃";
  position: absolute;
  font-size: 14px;
  opacity: 1;
  animation: leaf-fall 0.8s forwards ease-out;
  right: -10px;
  top: 0;
}

/* Ajustando el color y el hover */
.btn-warning, .map-btn-celeste {
  color: #ffffff;
  background-color: #ff4e79;
  border-color: #ff4e79;
}

.btn-warning:hover,
.btn-info:hover {
  color: #ffffff;
  background-color: #ff4e79;
  border-color: #ff4e79;
}
.map-modal-info button {
    width: 48%;
    padding: 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: transform 0.2s ease;
     background-color: #ffffff;
    color:  #ff4e79;
    border: 1px solid;
    color-border: #ff4e79;
}

/* ========== SECCIÓN MAPA2 CON CONTADORES ========== */

.section-mapa2 .titulo-box h3 {
  font-size: clamp(42px, 7vw, 72px);
}
.wave-top-rosada,
.wave-bottom-rosada {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  line-height: 0;
}

.wave-top-rosada svg,
.wave-bottom-rosada svg {
  display: block;
  width: 100%;
  height: 100%;
}

.section-mapa2 {
  background-color: #fec7c254;
  padding: 40px 40px 60px;
  text-align: center;
  position: relative;
  z-index: 1;
}


.contenedor-mapa {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;

}

.frase-impacto {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 500;
  color: #333;
  padding: 20px;
}

.contador {
  font-size: 40px;
  font-weight: 700;
  color: #ff4e79;
}

.btn-mapa {
  background: #ff4e79;
  color: #ffffff;
  padding: 20px 20px;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
  text-transform: none;
  font-size: 28px;
  position: relative;

}

.btn-mapa:hover {
  background: #ffffff;
  color: #ff4e79;
}
.btn-mapa:hover::after {
  content: "🍃";
  position: absolute;
  font-size: 18px;
  opacity: 1;
  animation: leaf-fall 0.8s forwards ease-out;
  right: -10px;
  top: 0;
}


.subtexto-mapa {
  font-size: 20px;
  color: #555; /* o #444 si querés un poquito más fuerte */
  margin-top: 40px;
}

/* === Sección Famosos
=== === */
.famosos-section {
   padding: 120px 0;
  background-color: #fff;
}

.famosos-section h4 {
  font-size: clamp(42px, 7vw, 48px);
    font-weight: 700;
    color: #ff4e79;
    font-family: 'CoconOT', sans-serif;
    margin: 0;
    position: relative;
    padding: 0 0 50px 0;
    text-align: center;
}

/* Contenedor flexible para distribuir las cards */
.famosos-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 90%;
  margin: 0 auto;
}

/* Tarjeta de cada embajador/a */
.famosos-card {
  flex: 1 1 240px;
  max-width: 260px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* Imagen circular */
.famosos-foto {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto 15px auto;
}

/* Tipografía y detalles */
.famosos-nombre {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
}

.famosos-titulo {
  font-size: 14px;
  color: #ff4e79;
  margin: 5px 0;
}

.famosos-descripcion {
  font-size: 13px;
  color: #333;
  margin-bottom: 10px;
}

/* Botón play e íconos */
.mi-boton-play {
  width: 32px;
  margin-top: 10px;
}

.famosos-card i.bi-instagram {
  font-size: 18px;
  color: #ff4e79;
  margin-bottom: 5px;
  display: inline-block;
}

.famosos-card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease;
}


/* ===========================================
   SECCIÓN DE DONAR
=========================================== */

.section-donar {
  background-color: #fec7c254;
  padding: 120px 40px 120px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-donar h3 {
  font-size: clamp(42px, 7vw, 48px);
  color: #ff4e79;
  font-family: 'CoconOT', sans-serif;
  font-weight: 700;
  margin-bottom: 40px;
}

.section-donar h5 {
  font-size: 22px;
  color: #444;
  font-family: 'CoconOT', sans-serif;
  font-weight: 400;
  margin-bottom: 30px;
}

.box-color2 {
  padding: 20px;
  background: #ff4e79;
  text-align: center;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  background-image: url('https://reforestacionalimentaria.org/assets/img/patron.webp');
  background-size: 180px;
  background-repeat: repeat;
}

.color-text {
  color: rgb(20, 148, 148);
  font-family: 'CoconOT', sans-serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}

.Testo-precio2 {
  font-weight: 800;
  font-size: 75px;
  color: rgb(20, 148, 148);
  letter-spacing: -3px;
}

.btn-wrap2,
.mercadopago-button {
  text-align: center;
  background-color: #ffffff !important;
  border: 1px solid #ff4e79 !important;
  border-radius: 4px;
  padding: 5px;
}

.btn-subscribe,
.mercadopago-button {
  background: none;
  border: none;
  color: #ff4e79 !important;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  padding: 0;
  text-align: center;
  text-transform: uppercase;
}

.btn-wrap2:hover,
.mercadopago-button:hover {
  background-color: #ff4e79 !important;
  color: white !important;
}

.btn-wrap2:hover .btn-subscribe {
  color: white !important;
}

.sup {
  top: -0.3em;
  position: relative;
  font-size: 20px;
}
.box-color2 {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-color2:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

/*--------------------------------------------------------------
# MARCAS
--------------------------------------------------------------*/

.clients {
  padding: 15px 0;
  text-align: center;
}
.clients img {
  max-width: 45%;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
}
.clients img:hover {
  filter: none;
  transform: scale(1.15);
}

.section-aliados {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  
}

.section-aliados h4 {
  font-size: 36px;
  color: #ff4e79;
  font-weight: 700;
  font-family: 'CoconOT', sans-serif; /* si estás usando esa fuente */
  margin-bottom: 40px;
}

/*--------------------------------------------------------------
# Footer - Rediseñado ✨
--------------------------------------------------------------*/
#footer {
  background: #fff2f2;
  padding: 0 0 30px 0;
  color: #145a5a;
  font-size: 14px;
}

#footer .footer-top {
  background: transparent;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #ff4e79;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'CoconOT', sans-serif;
  font-weight: 700;
  color: #145a5a;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #ffffff;
  color: #ff4e79;
  border: 1px solid #ff4e79;
  line-height: 1;
  padding: 8px 0;
  margin-right: 6px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ff4e79;
  color: white;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ff4e79;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
  padding-left: 15%;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ff4e79;
  font-size: 16px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul a {
  color: #145a5a;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ff4e79;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  border: 1px solid #ff4e79;
}

#footer .footer-top .footer-newsletter form input[type=email] {
  border: none;
  padding: 4px;
  width: calc(100% - 110px);
  font-family: 'CoconOT', sans-serif;
  font-weight: 500;
  color: #145a5a;
}

#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #ff4e79;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  font-weight: bold;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #e13d63;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  font-size: 13px;
  color: #999;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 12px;
  color: #aaa;
}

#footer .credits a {
  color: #145a5a;
  transition: 0.3s;
  font-weight: 600;
}

#footer .credits a:hover {
  color: #ff4e79;
}

/* ===========================================
   RESPONSIVE FOOTER 🦶📱
=========================================== */
@media (max-width: 768px) {
  #footer .footer-top {
    padding: 40px 0 20px 0;
  }

  #footer .footer-top .footer-info h3 {
    font-size: 20px;
  }

  #footer .footer-top .footer-info p {
    font-size: 13px;
  }

  #footer .footer-top .social-links a {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  #footer .footer-top .footer-links {
    padding-left: 10px;
    text-align: left;
    margin-top: 20px; /* 👈 le da aire al bloque */
  }

  #footer .footer-top .footer-links h4 {
    margin-bottom: 15px; /* 👈 baja el título "Sitio" */
  }

  #footer .footer-top .footer-links ul li {
    justify-content: left;
    padding: 6px 0; /* 👈 más espacio entre ítems */
  }

  #footer .footer-top .footer-newsletter form {
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
  }

  #footer .footer-top .footer-newsletter form input[type="email"] {
    width: 100%;
    margin-bottom: 10px;
  }

  #footer .footer-top .footer-newsletter form input[type="submit"] {
    position: relative;
    width: 100%;
    right: 0;
  }

  #footer .copyright,
  #footer .credits {
    font-size: 12px;
  }
}

/* Campo email suscripcion */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}



/* -------------------- */
/* ESTRUCTURA GENERAL HERO REUTILIZABLE | PAG QUÉ HACEMO | PAG QUIÉNES SOMOS | PAG CONTACTO COLABORAR */
/* -------------------- */

/* BOTONES CALL TO ACTION */
.btn-cta {
 font-size: clamp(12px, 4vw, 18px) !important;
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 4px;
  background: #ff4e79;
  color: white;
  text-transform: none;
  text-decoration: none;
  display: inline-block;
  margin-top: 24px;
  position: relative;
  width: fit-content;
  max-width: 90%;
  box-sizing: border-box;
  text-align: center;
}

.btn-cta:hover {
  background: #ff4e79;
  color: white;
}

/* Hojita 🍃 en hover */
.btn-cta:hover::after {
   content: "🍃";
  position: absolute;
  font-size: 14px;
  right: -10px;
  top: 0;
  animation: leaf-fall 0.8s forwards ease-out;
}

.btn-cta2 {
  background: #ff4e79;
  color: #ffffff;
  padding: 12px 12px;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
  text-transform: none;
  font-size: 20px;
  position: relative;
  margin-top: 24px;

}

.btn-cta2:hover {
  background: #ffffff;
  color: #ff4e79;
}
.btn-cta2:hover::after {
  content: "🍃";
  position: absolute;
  font-size: 18px;
  opacity: 1;
  animation: leaf-fall 0.8s forwards ease-out;
  right: -10px;
  top: 0;
}
/* los imágenes dentro de cada hero de cada página */


.hero-alt-container {
 height: 100dvh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centra vertical */
  align-items: center;     /* centra horizontal */
  text-align: center;
  width: 100%;
  position: relative;
  overflow-x: hidden;
  color: white;
}
/* Cada sección cambia solo el fondo con ID */
#hero-alt {
  background-image: url('https://reforestacionalimentaria.org/assets/img/que%20hacemos.webp');
 background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  }


#hero-alt2 {
  background-image: url('https://reforestacionalimentaria.org/assets/img/espacios%20reforestados.webp');
   background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero-alt3 {
  background-image: url('https://reforestacionalimentaria.org/assets/img/Contactos/Test-(1).png');
 background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero-alt4 {
  background-image: url('https://reforestacionalimentaria.org/assets/img/colaborar.webp');
 background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero-alt5 {
  background-image: url('https://reforestacionalimentaria.org/assets/img/quienes%20somos.webp');
 background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#hero-alt6 {
  background-image: url('https://reforestacionalimentaria.org/test/assets/img/slide/rea4.jpg');
 background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* -------------------- */
/* OVERLAY OSCURO */
/* -------------------- */

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0b0a0a78;
  z-index: 0;
}


/* -------------------- */
/* TEXTO DENTRO DEL HERO */
/* -------------------- */

.container {
  position: relative;
  z-index: 2;
}

.hero-alt-container .container h2 {
  color: #fff;
  margin-bottom: 20px;
   font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  font-family: 'CoconOT', sans-serif;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-alt-container .container p {
  color: #fff;
  font-size: clamp(16px, 4vw, 24px);
  max-width: 80%;
  margin: 0 auto;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}


/* SECCION ROSA PAG QUÉ HACEMOS */

.frase-impacto-light {
    font-size: 28px;
  line-height: 1.4;
  font-weight: 300; /* Más liviana */
  color: #333;
  padding: 20px;
  text-shadow: none;
}

h4.frase-impacto-light {
  font-size: 48px;
  color: #ff4e79;
  font-family: 'CoconOT', sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-educacion {
  padding: 60px 0 40px;
}

.img-cta {
  width: 100%;
  height: 250px; /* o el alto que quieras */
  object-fit: cover;
  border-radius: 9px;
  transition: transform 0.3s ease;
}

.img-cta:hover {
  transform: scale(1.03);
}

.texto-mision {
  font-size: clamp(28px, 7vw, 30px);
  font-weight: 300;
  color: #333;
  max-width: 800px;
  margin: 30px auto;
  text-align: center;
  line-height: 1.4;
}
.bloque-donar {
  padding-top: 60px;
}

.bloque-donar h3 {
  font-size: clamp(42px, 7vw, 48px);
  font-weight: 700;
  color: #ff4e79;
  font-family: 'CoconOT', sans-serif;
  margin-bottom: 40px;
}

.bloque-donar h5 {
  font-size: 20px;
  font-weight: 400;
  color: #333;
  margin-bottom: 40px;
}

/* ---------------------- VIDEOS YOUTUBE ---------------------- */

#videos h4 {
  font-size: 42px;
  font-weight: 700;
  color: #ff4e79;
  margin-bottom: 40px;
  font-family: 'CoconOT', sans-serif;
}

.video-wrapper iframe {
  border-radius: 9px;
}

@media (max-width: 768px) {
  #videos h4 {
    font-size: 30px;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.about-espacios {
  padding-top: 120px;
  padding-bottom: 20px;
}

.portfolio .portfolio-item {
  margin-bottom: 40px;
}
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 10px auto;
  list-style: none;
  text-align: center;
}

#portfolio-flters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0 auto 20px auto;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 10px 15px;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
  color: #fff4e79;
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #ffffff;
  background: #ff4e79;

}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(85, 98, 112, 0.6);
}
.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(85, 98, 112, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;

}
.portfolio .portfolio-wrap img {
  transition: all ease-in-out 0.3s;
}
.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
}
.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}
.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  font-style: italic;
  border-radius: 4px;
}
.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
}
.portfolio .portfolio-wrap .portfolio-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 5px 0 0;
  font-size: 28px;
  display: inline-block;
  transition: 0.3s;
}
.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: white;
}
.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
}
.portfolio .portfolio-wrap:hover img {
  transform: scale(1.2);
}
.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #ff5a7a;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ff5a7a;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(85, 98, 112, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

#portfolio #portfolio-flters {
    display: flex;
    justify-content: center;
    gap: 10px; /* Espacio entre cada elemento */
}
#portfolio h4 {
    margin-top: 120px; /* Aumentá el valor si lo querés más abajo */

}

#portfolio {
    margin: 0 auto; /* Centra la sección */
    padding: 60px 20px; /* Espacio interno para que no quede pegado */
}

.portfolio-container {
    max-width: 1200px; /* Ajusta el ancho del portfolio */
    margin: 0 auto; /* Centra el contenido */
    padding: 0 20px; /* Espaciado lateral */
}
.portfolio-wrap {
    border-radius: 8px; /* O el valor que prefieras */
    overflow: hidden; /* Esto evita que la imagen sobresalga */
    position: relative; /* Para que respete el radio en hover */
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
  background-color: #ffffff;
}

.contact .info i {
  font-size: 20px;
  color: #ff4e79;
  float: left;
  width: 44px;
  height: 44px;
  background: #edeff1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #556270;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #8795a4;
}
.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #ff4e79;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  background-color: #ffffff;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #ff5a7a;
}
.contact .php-email-form input {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #ff4e79;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #ff4e79;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.contact {
  padding: 80px 0;
}

/* SECCION MAPA */

.mapa-titulo-box h3 {
  font-size: 48px;
  color: #ff4e79;
  font-family: 'CoconOT', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.mapa-titulo-box h5 {
  font-size: 20px;
  font-weight: 400;
  color: #333;
  margin-bottom: 40px;
}

/* TARJETAS DE MIEMBROS DEL EQUIPO */

  .equipo-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .equipo-foto {
    border-radius: 12px;
    object-fit: cover;
    width: 100%;
    height: auto;
  }

  .equipo-nombre {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff5a7a;
  }

  .equipo-cargo {
    font-weight: 500;
    font-size: 1rem;
    color: #555;
  }

  .equipo-redes a {
    font-size: 1.5rem;
    color: #ff5a7a;
    text-decoration: none;
  }

  .equipo-bio-corta {
    font-size: 0.95rem;
    color: #333;
  }

  .equipo-bio-completa p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
  text-align: center;
}

  .equipo-btn-vermas {
    background: #ff5a7a;
    color: #fff;
    padding: 6px 32px;
    border-radius: 9px;
    border: none;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
  }

  .equipo-section {
  background-color: #ffeceb; /* el mismo rosita claro que ya venís usando */
}


/* DONAR ARBOLES */

.frase-impacto-colaborar {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 500;
  color: #333;
  margin-top: -20px; /* lo acercamos al h3 */
  padding: 0 20px; /* mismo padding horizontal que frase-impacto */
}

.titulo-box.h3-ajustado h3 {
  padding-bottom: 20px; /* en vez de 50px */
}



.donar-arboles {
  background-color: #fff;
}

.titulo-donar {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 700;
  color: #ff5a7a;
}

.subtitulo-donar {
  font-size: 1.8rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

.card-arbol {
  background: #fff;
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.card-arbol:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.img-arbol-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.img-arbol {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.nombre-arbol {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ff5a7a;
  margin-bottom: 8px;
}

.descripcion-arbol {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 16px;
  min-height: 60px;
}

.btn-arbol-wrapper {
  position: relative;
  display: inline-block;
}

.btn-arbol {
  display: inline-block;
  background: #ff5a7a;
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 400;
  transition: 0.3s;
}

.btn-arbol:hover {
  background: #ff3f63;
  color: #fff;
}

/* HOJA CAYENDO: */
.btn-arbol:hover::after {
  content: "🍃";
  position: absolute;
  font-size: 14px;
  right: -10px;
  top: 0;
  animation: leaf-fall 0.8s forwards ease-out;
}

/* CARDS BOTONES COLABORAR PLATA */
.colaborar-diseno {
  background-color: #ffecec;
  padding: 80px 0;
}

.titulo-colaborar {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff5a7a;
  text-align: center;
}

.descripcion-colaborar {
  font-size: 22px;
  color: #000000;
  line-height: 1.6;
  text-shadow: none;
  margin-bottom: 40px;
  text-align: center;
  margin-top: 20px;
}

.card-colaborar {
  background: #fff;
  border-radius: 16px;
  padding: 24px 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 350px;
  width: 100%;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.card-colaborar:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tipo-donacion {
  font-size: 1rem;
  font-weight: 600;
  color: #999;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.precio-colaborar,
.precio-variable {
  font-size: 2rem;
  font-weight: bold;
  color: #009688;
  margin-bottom: 16px;
  white-space: nowrap;
}

.btn-colaborar {
  background: #ff5a7a;
  color: #fff;
  padding: 10px 24px;
  font-size: 16px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 400;
  display: inline-block;
  transition: 0.3s;
  position: relative;
}

.btn-colaborar:hover {
  background: #ff3f63;
  color: #fff;
}

.btn-colaborar:hover::after {
  content: "🍃";
  position: absolute;
  font-size: 14px;
  right: -10px;
  top: 0;
  animation: leaf-fall 0.8s forwards ease-out;
}

.subtitulo-colaborar {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 80px;
  margin-bottom: 40px;
  color: #444;
}
.agradecimiento {
  margin-top: 60px;
  text-align: center;
}

/*FAQ SESION */
.faq {
  padding: 60px 0;
}

.faq h3 {
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 10px;
}

.faq p {
  color: #666;
  font-size: 18px;
}

.faq-item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  cursor: pointer;
}

.faq-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.faq-toggle:hover h4 {
  color: #e91e63;
}

.faq-toggle h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-toggle i {
  color: #e91e63;
  font-size: 24px;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding-left: 32px;
}

.faq-content.active {
  max-height: 500px;
  margin-top: 10px;
}

.faq-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

/* Corregir el desborde del html en celular */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}
