@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

/* -- GENERAL -- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

body {
  font-family: Archivo, sans-serif;
  background-color: #FDFFF2;
  line-height: 1.6;
  overflow-x: hidden;
  display: block;
}

/* -- LOGIN -- */

.login-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  filter: brightness(0.8);
}

.bienvenido-seccion {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
}

.bienvenido-contenedor {
  text-align: center;
  font-weight: bold;
  color: #4B603F;
  background: #FDFFF2b3;
  backdrop-filter: blur(7px);
  opacity: 0.95;
  border: 2px solid #CCCCCC1A;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px #0000001A;
  width: 100%;
  max-width: 500px;
}

.bienvenido-contenedor h2 {
  font-size: 50px;
  line-height: normal;
  font-weight: bold;
  color: #4B603F;
}

.bienvenido-titulo {
  color: #FF8820;
}

.bienvenido-contenedor p {
  font-size: 20px;
  color: #a1a1a1;
  font-weight: lighter;
}

.login-seccion {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
}

.login-contenedor {
  background: #FDFFF2b3;
  backdrop-filter: blur(7px);
  opacity: 0.95;
  border: 2px solid #CCCCCC1A;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 15px #0000001A;
  width: 100%;
  max-width: 500px;
}

.login-contenedor h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #4B603F;
  font-size: 24px;
}

.login-form {
  display: flex;
  flex-direction: column;
}

.login-form label {
  margin-bottom: 5px;
  color: #4B603F;
  font-size: 14px;
}

.login-form input {
  padding: 12px;
  border: 1px solid #CCCCCC;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 16px;
}

.login-form input:focus {
  outline: none;
  border-color: #4B603F;
  box-shadow: 0 0 0 2px #0000001A;
}

.login-form h4 {
  font-size: 15px;
  color: #5e5e5e;
  margin-bottom: 15px;
}

.login-form h4:hover {
  color: #405830;
  cursor: pointer;
  text-decoration: underline;
}

.login-btn {
  padding: 12px;
  background-color: #4B603F;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.login-btn:hover {
  background-color: #FF8820;
}

.pass-olvidaste {
  margin-bottom: 15px;
  color: #4B603F;
  font-size: 14px;
  font-weight: 600;
}

.pass-olvidaste:hover {
  color: #FF8820;
}

.registro {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #4B603F;
}

.registro a {
  color: #4B603F;
  text-decoration: none;
  font-weight: bold;
}

.registro a:hover {
  text-decoration: underline;
  color: #FF8820;
}

/* HEADER MOBILE */

.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  background-color: #FDFFF2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1000;
}

.logo-home {
  visibility: hidden;
}

.logo {
  padding-top: 10px;
}

.logo img {
  height: 25px;
}

.receta-dia {
  background-color: #CFDDB0;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

.receta-dia-home {
  position: fixed;
  background-color: #CFDDB0;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

.receta-dia:hover, .receta-dia-home:hover {
  background-color: #FF8820;
}

.perfil {
  display: flex;
  align-items: center;
  gap: 8px;
}

.foto-perfil {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #CFDDB0;
}

.nombre-usuario {
  font-size: 14px;
  font-weight: 500;
  color: #405830;
}

/* -- NAVBAR -- */

.nav-bar {
  position: fixed;
  right: 2.5%;
  bottom: 1%;
  width: 95%;
  align-content: center;
  background-color: #405830cc;
  backdrop-filter: blur(3px);
  border-radius: 20px;
  padding-block: 5px;
  z-index: 100;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.2));
}

.nav-bar-logo {
  display: none;
}

.nav-bar ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px;
}

.nav-bar ul li :hover {
  cursor: pointer;
  scale: 1.1;
  transition: scale 0.3s ease-in-out;
  background-color: #2c411f;
  border-radius: 10px;
}

.nav-bar li {
  text-align: center;
  flex: 1;
}

.nav-bar img {
  width: 68px;
  height: 68px;
}

.desktop {
  display: none;
}

.nav-bar .websolo {
  display: none;
}

/* -- HOME -- */

.home .bajada {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 85px;    
}

.fotobajada {
    width: 300px
}

.linea {
    width: 100%;
    height: 5px;
    background-color: #4f7558;
    margin: 20px 0;
}

/* TITULO PRINCIPAL */

.hero {
  background-image: url("../imagenes/fondo-home.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 70vh;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #00000073;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FDFFF2;
  line-height: normal;
}

.hero p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #FDFFF2;
}

.hero-button {
  background-color: #4B603F;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.hero-button:hover {
  background-color: #FF8820;
  transform: scale(1.05);
  transition: transform 0.3s ease;
  transition: all 0.3s ease-in-out;
}

.search-bar {
  margin: 50px
}

.search-bar input {
  width: 100%;
  padding: 20px;
  border-radius: 100px;
  border: 1px solid #CCCCCC;
  font-size: 1rem;
  box-shadow: 0 2px 4px #CCCCCC1A;
  transition: border-color 0.3s ease;
}

.cta-producer {
  background: #CFDDB0;
  color: #1b5e20;
  text-align: center;
  padding: 2rem;
}

.cta-producer a {
  border-radius: 20px;
  padding: 8px 12px;
  background-color: #4B603F;
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  color: #FDFFF2;
  transform: all;
  transition: all 0.3s ease-in-out;
}

.cta-producer a:hover {
  background-color: #FF8820;
  text-decoration: none;
  color: #FDFFF2;
  scale: 1.05;
  transition: scale 0.3s ease-in-out; 
}

/* CARROUSEL RECOMENDACIONES */

.carrusel-recomendaciones {
  padding: 1rem 1rem;
}

.carrusel-recomendaciones h2 {
  padding-top: 1rem;
  font-size: 1.4rem;
  color: #4B603F;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* CARD RECOMENDACIONES */

.card {
  flex: 0 0 auto;
  width: 220px;
  min-height: 150px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  padding: 1rem;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #82A046;
}

.card p {
  font-size: 0.9rem;
  color: #82A046;
}

.card-imagen {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  background: #f5f7ef;
}

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

/* SCROLL RECOMENDACIONES */

.carousel-container::-webkit-scrollbar {
  height: 8px;
}

.carousel-container::-webkit-scrollbar-thumb {
  background: #4B603F;
  border-radius: 12px;
}

.carousel-container::-webkit-scrollbar-track {
  background: transparent;
}

/* SLIDER FOTOS */

.slider {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  transition: opacity 1s ease-in-out;
  padding: 20px;
  box-sizing: border-box;
}

.slide img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.texto-slide {
  max-width: 600px;
  color: #405830;
}

.texto-slide h3 {
  font-size: 20px;
  margin-bottom: 10px;
  text-decoration: underline;
}

.texto-slide p {
  font-size: 15px;
  color: #444;
}

/* ANIMACIÓN */

@keyframes fadeSlider {
  0%    { opacity: 1; }
  18%   { opacity: 1; }
  20%   { opacity: 0; }
  98%   { opacity: 0; }
  100%  { opacity: 1; }
}

.slide:nth-child(1) {
  animation: fadeSlider 25s infinite;
}

.slide:nth-child(2) {
  animation: fadeSlider 25s infinite;
  animation-delay: 5s;
}

.slide:nth-child(3) {
  animation: fadeSlider 25s infinite;
  animation-delay: 10s;
}

.slide:nth-child(4) {
  animation: fadeSlider 25s infinite;
  animation-delay: 15s;
}

.slide:nth-child(5) {
  animation: fadeSlider 25s infinite;
  animation-delay: 20s;
}

/* QUIENES SOMOS */

.quienes-somos {
  max-width: 700px;
  width: calc(100% - 40px);
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #FDFFF2;
  border-radius: 10px;
  border: 2px solid #CCCCCC;
  color: #82A046;
  line-height: 1.6;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

.quienes-somos h2 {
  font-size: 28px;
  margin-bottom: 1rem;
  color: #4B603F;
}

.quienes-somos p {
  margin-bottom: 20px;
  font-size: 16px;
}

.quienes-somos strong {
  color: #4B603F;
  font-weight: 600;
  font-size: 20px;
}

/* NEWSLETTER */
.newsletter {
  max-width: 600px;
  margin: 40px auto;
  padding: 10px 20px;
  text-align: center;
}

.newsletter h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #4B603F;
}

.newsletter p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #82A046;
}

.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.newsletter label {
  font-size: 16px;
  color: #4B603F;
  text-align: left;
  width: 100%;
  max-width: 400px;
  font-weight: 900;
}

.newsletter input[type="email"] {
  padding: 10px 15px;
  font-size: 14px;
  border: 1px solid #CCCCCC;
  border-radius: 8px;
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
}

.newsletter button {
  padding: 10px 20px;
  background-color: #4B603F;
  color: #FDFFF2;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.newsletter button:hover {
  background-color: #FF8820;
}

/* TESTIMONIOS */

.testimonios-scroll {
  padding: 40px 20px;
  margin-top: 20px;
  background-color: #FDFFF2;
  max-width: 900px;
  margin: 0 auto;

}

.testimonios-scroll h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #405830;
  text-align: center;
}

.scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.testimonio {
  position: relative;
  flex: 0 0 auto;
  width: 220px;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #CCCCCC;
  cursor: pointer;
}

.testimonio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonio .nombre {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(64, 88, 48, 0.8);
  color: #FDFFF2;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  transition: transform 0.4s ease;
  z-index: 2;
}

.testimonio .overlay {
  position: absolute;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(253, 255, 242, 0.95);
  color: #405830;
  padding: 20px 15px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: bottom 0.4s ease;
  z-index: 1;
}

.testimonio:hover .overlay {
  bottom: 0;
}

.testimonio:hover .nombre {
  transform: translateY(-100%);
}

.overlay .frase {
  font-style: italic;
  font-size: 14px;
  margin-bottom: 10px;
}

.overlay .ubicacion {
  font-weight: bold;
  font-size: 13px;
}

/* ESTADISTICAS */

.estadisticas {
  background-color: #FDFFF2;
  padding: 60px 20px;
  text-align: center;
}

.estadisticas h2 {
  color: #4B603F;
  font-size: 28px;
  margin-bottom: 40px;
}

.estadisticas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.item {
  background-color: #CFDDB0;
  border-radius: 16px;
  padding: 30px 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.numero {
  font-size: 32px;
  font-weight: bold;
  color: #4B603F;
  margin-bottom: 10px;
}

.item p {
  font-size: 14px;
  color: #4B603F;
}

.item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin-bottom: 10px;
}

/* VIDEO */

.video-section {
  background-color: #FDFFF2;
  padding: 0px 20px;
  display: block;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #4B603F;
}

.video-container {
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 0 auto;
}

.video-section p {
  padding-bottom: 50px;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}

video {
    width: 100%;
}

/* ---- INFORMACION ---- */

.seccion-noticias {
  padding-top: 90px;
  padding-bottom: 20px;
  padding-inline: 20px;
  background-color: #FDFFF2;
  color: #4B603F;
}

.seccion-noticias h2 {
  font-size: 28px;
  text-align: center;
  margin-bottom: 30px;
}

/* SEARCH FILTROS */

.buscador-filtros {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-inline: auto;
}

.buscador {
  padding: 10px 15px;
  border-radius: 20px;
  border: 1px solid #CCCCCC;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

.separador {
  height: 2px;
  background-color: #CFDDB0;
  margin: 10px 0;
}

.filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filtro {
  padding: 6px 14px;
  border: 1px solid #4B603F;
  background-color: transparent;
  border-radius: 16px;
  font-size: 14px;
  color: #405830;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filtro:hover,
.filtro.activo {
  background-color: #FF8820;
  color: #FDFFF2;
}

/* TIMELINE */

.timeline-section {
  background-color: #FDFFF2;
  padding: 30px 20px;
  font-family: 'Archivo', sans-serif;
  color: #333;
}

.timeline-section h2 {
  text-align: center;
  font-size: 22px;
  color: #405830;
  margin-bottom: 30px;
}

.timeline-section h2 span {
  color: #FF8820;
}

.timeline-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.timeline-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.timeline-content h3 {
  font-size: 18px;
  color: #507D5D;
  margin-bottom: 5px;
}

.timeline-content p {
  font-size: 15px;
  line-height: 1.5;
  color: #555;
}

/* ---- SECCION INFORMACION ---- */

.noticias-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.noticia {
  background-color: #CFDDB0;
  border: 2px solid #CCCCCC1A;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease;
}

.noticia:hover {
  transform: translateY(-4px);
}

/* IMAGEN */

.noticia-img img {
  width: 100%;
  height: auto;
  display: block;
}

.noticia-contenido {
  padding: 15px;
}

.noticia h3 {
  font-size: 18px;
  padding: 20px;
  margin-bottom: 8px;
  color: #4B603F;
}

.meta {
  font-size: 13px;
  color: #4B603F;
}

.reacciones {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
  font-size: 12px;
}

.reacciones span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f5f7ef6e;
  border-radius: 16px;
  padding: 4px 10px;
  color: #4B603F;
  font-weight: 500;
  transition: background 0.2s;
}

.reacciones img {
  width: 15px;
  height: 15px;
  opacity: 0.85;
} 

.reacciones span:hover {
  background: #e6e9db;
  cursor: pointer;
}

/* HOVER */

.noticia-hover {
  position: absolute;
  inset: 0;
  background-color: #4B603Fcc;
  backdrop-filter: blur(3px);
  color: #FDFFF2;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.noticia:hover .noticia-hover {
  opacity: 1;
}

.noticia-hover p {
  font-size: 14px;
  margin-bottom: 16px;
}

.btn-leer {
  background-color: #FDFFF2;
  color: #4B603F;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-leer:hover {
  color: #FDFFF2;
  background-color: #FF8820;
}


.btn-cargar-mas {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 30px auto;
  padding: 12px;
  background-color: #4B603F;
  color: #FDFFF2;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}

.btn-cargar-mas:hover {
  background-color: #FF8820;
  transition: background-color 0.3s ease;
}

/* GLOSARIO */

.faq-glosario {
  padding: 20px;
  max-width: 600px;
  margin: auto;
}

.faq-glosario h2 {
  font-size: 24px;
  color: #405830;
  text-align: center;
  margin-bottom: 20px;
}

.faq-glosario p {
  font-size: 14px;
  color: #4B603F;
  text-align: center;
  margin-bottom: 20px;
}

.span-glosario {
  font-weight: bold;
  color: #507d5d
}

.faq-item {
  margin-bottom: 10px;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-question {
  display: block;
  font-weight: bold;
  font-size: 18px;
  color: #507D5D;
  padding: 10px;
  background-color: #E7F0D5;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background-color: #dce7c2;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 10px;
  color: #4B603F;
  font-size: 16px;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
  max-height: 200px;
  padding: 10px;
}

/* COMITENTE */

.comitente-section {
  padding: 20px;
  color: #333;
}

.comitente-header h2 {
  font-size: 26px;
  color: #405830;
  text-align: center;
  margin-bottom: 5px;
}

.comitente-header p {
  text-align: center;
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.comitente-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.comitente-text h3 {
  font-size: 18px;
  color: #507D5D;
  margin-bottom: 5px;
}

.comitente-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

.comitente-media {
  text-align: center;
}

.comitente-media img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.caption {
  font-size: 13px;
  font-style: italic;
  color: #666;
  margin-top: 5px;
}

/* --- CALENDARIO ---- */

.contenedor-calendario {
  background-color: #FDFFF2;
  padding-top: 90px;
  padding-inline: 20px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  align-items: center;
  margin: auto;
  }

.navegacion-calendario {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.contenedor-calendario h2 {
  text-align: center;
  margin: 0;
  color: #4B603F;
  font-size: 24px;
  font-weight: bold;
}

.btn-navegacion {
  background-color: #4B603F;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(75, 96, 63, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-navegacion:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(75, 96, 63, 0.4);
}

.btn-navegacion:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.calendario-mes {
  transition: opacity 0.3s ease;
}

ol {
  list-style-type: none; 
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  padding: 0;
  margin: 0;
  border-collapse: collapse;
}

ol li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  margin: 0 auto;
  border-radius: 50%;
  font-weight: 500;
  transition: all 0.3s ease;
}

.primer-diajulio {
  grid-column: 2;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 50%;
}

.primer-diaagosto {
  grid-column: 5;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 50%;
}

.primer-diaseptiembre {
  grid-column: 1;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 50%;
}


  .dia-semana {
  background-color: #4B603F;
  color: #FDFFF2; 
  font-weight: bolder;
  text-align: center;
  padding: 10px 0;
  border-radius: 0;
  height: auto;
  width: auto;
  display: block;
  margin: 0;
}

.fecha-destacada {
  background-color: #FF8820;
  color: #FDFFF2;
  font-weight: bolder;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* información del mes */

.info-mes {
  margin-top: 40px;
  padding: 20px;
  border-radius: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.temporada-seccion {
  margin-bottom: 40px;
}

.temporada-seccion h3 {
  color: #4B603F;
  margin-bottom: 20px;
  text-align: center;
}

.temporada-lista {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.temporada-item {
  background: #4B603F;
  color: #FDFFF2;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.temporada-item:hover {
  background: #FF8820;
  transition: all 0.3s ease;
}

.eventos-seccion h3 {
  color: #4B603F;
  margin-bottom: 25px;
  text-align: center;
}

.eventos-lista {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 100px;
}

.evento-card {
  background: linear-gradient(135deg, #FDFFF2, #ffffff);
  border: 2px solid #4b603f65;
  border-radius: 15px;
  padding: 20px;
  transition: all 0.3s ease;
}

.evento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: #FF8820;
}

.evento-fecha {
  color: #4B603F;
  margin-top: 10px;
  font-style: italic;
  margin-bottom: 10px;
}

.evento-card h4 {
  color: #4B603F;
  margin-bottom: 10px;
}

.evento-lugar {
  color: #666;
  margin-bottom: 5px;
  
}

.evento-hora {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.evento-descripcion {
  color: #555;
  margin-bottom: 20px;
}

.btn-inscribirse {
  background:#4B603F;
  color: #FDFFF2;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-inscribirse:hover {
  background: #FF8820;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 136, 32, 0.4);
}

/* -- GLOSARIO -- */

.glosario {
  padding-bottom: 150px;
  padding-inline: 20px;
  background-color: #FDFFF2;
  color: #4B603F;
}

.glosario h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 24px;
}

.termino {
  border-bottom: 1px solid #CFDDB0;
}

.titulo-glosario {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 12px;
  font-size: 17px;
  font-weight: 600;
  color: #2E4123;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.titulo-glosario::after {
  content: "▾";
  font-size: 16px;
  transition: transform 0.3s ease;
}

.termino.open .titulo-glosario::after {
  transform: rotate(180deg);
}

.definicion {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 12px;
}

.termino.open .definicion {
  max-height: 200px;
  padding-bottom: 16px;
}

/* -- MAPA -- */

.container.map-page {
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100vh;
}

.container.map-page h1 {
  padding: 18px;
  text-align: center;
  color: #4B603F;
  border-bottom: 2px solid #CCCCCC;
}

.map-content {
  flex-grow: 1; 
  position: relative;
    overflow: hidden; 
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.map-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* SEARCH BAR */

.search-mapa {
  position: absolute;
  width: 96%;
  top: 18%;
  left: 2%;
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  border: 2px solid #CCCCCC;
  border-radius: 16px;
  padding: 0px 20px;
  height: 50px;
  gap: 10px;
  z-index: 100;
}

.search-mapa .icon-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-mapa .icon-button img {
  width: 20px;
  height: 20px;
  opacity: 0.8;
  fill: #CCCCCC;
}

.search-mapa .search-input {
  box-shadow: none;
  flex-grow: 1;
  border: none;
  background: none;
  padding: 0 5px;
}

.search-mapa .search-input::placeholder {
  color: #B4B4B4;
  font-size: 16px;
  font-weight: 500;
}

.search-mapa .search-input:focus {
  outline: none;
  color: #4B603F;
}

/* FILTROS */

.filter-overlay {
  position: absolute;
  top: 70px;
  left: 12px;
  width: calc(100% - 40px);
  max-width: 250px;
  background-color: #4B603F;
  border-radius: 15px;
  padding: 15px 0;
  box-shadow: 0 4px 10px #0000001a;
  z-index: 200;
  transform: translateY(-5%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.filter-overlay.show-filters {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.filter-list {
  list-style: none;
  color: #FDFFF2;
}

.filter-list li {
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.filter-list li:hover {
  background-color: #CCCCCC1A;
}

.filter-list .filter-title {
  font-weight: bold;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  font-size: 1.2em;
  padding-bottom: 10px;
  border-bottom: 1px solid #CCCCCC1A;
}

.filter-list .filter-title img {
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

/* PINES */

.map-pin-container {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 12;
  cursor: pointer;
}

.map-pin-container .map-pin-icon {
  width: 40px;
  height: auto;
  display: block;
  background-color: #4B603F;
  border: 6px solid #4B603F;
  border-radius: 30px;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.map-pin-container.pin-active .map-pin-icon {
  background-color: #FF8820;
  border-color: #FF8820;
}

/* CARDS */

.pin-card {
  position: absolute;
  width: calc(100% - 80px);
  max-width: 300px;
  background-color: #4B603F;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: #FDFFF2;
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.pin-card.show-pin-card {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 13;
}

.pin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pin-header h2 {
  font-size: 1.4em;
  margin: 0;
  font-weight: bold;
}

.bookmark-icon {
  width: 24px;
  height: 24px;
}

.pin-type, .pin-price {
  font-size: 0.9em;
  opacity: 0.8;
  margin-bottom: 5px;
}

.pin-description {
  font-size: 0.85em;
  line-height: 1.4;
  margin-top: 15px;
}

.pin-actions {
  text-align: right;
  margin-top: 15px;
}

.chat-icon {
  width: 24px;
  height: 24px;
  filter: invert(100%);
  cursor: pointer;
}

/* -- CONTROLADOR -- */

/* PINES */

#pin1 { top: 15%; left: 68%; }
#pin2 { top: 30%; left: 33%; }
#pin3 { top: 64%; left: 22%; }
#pin4 { top: 71%; left: 72%; }

/* CARDS */

#card1 { top: 17.5%; left: 6%; }
#card2 { top: 32%; left: 36%; }
#card3 { top: 27%; left: 25%; }
#card4 { top: 35%; left: 8%; }

/* ---- NOTICIAS AMPLIADAS ---- */

.nota-completa {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FDFFF2;
  color: #4B603F;
  margin-top: 50px;
}

.nota-header {
  font-size: 15px;
  color: #4B603F;
  font-weight: 100;
  margin-top: 20px;
  font-style: italic;
  text-decoration: underline;
}

.nota-completa h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.subtitulo {
  font-size: 18px;
  color: #4B603F;
  margin-bottom: 10px;
  font-style: italic;
}

.meta-nota {
  font-size: 14px;
  color: #82A046;
  margin-bottom: 30px;
}

.contenido-nota p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contenido-nota img {
  width: 100%;
  margin: 20px 0;
  border-radius: 8px;
}

.resaltado {
  font-weight: bolder;
}

.interaccion-nota {
  margin-top: 32px;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 8px;
}

.interaccion-nota p {
  border: 1px solid #e6e9db;
  border-radius: 16px;
  padding: 4px 10px;
}

.interaccion-nota img {
  
  width: 18px;
  height: 18px;
  margin-right: 5px;
  vertical-align: middle;
}


.botones-reaccion {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.botones-reaccion button {
  background-color: #60473f;
  color: #FDFFF2;
  border: none;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.botones-reaccion button:hover {
  background-color: #FF8820;
  color: #FDFFF2;
  transition: background-color 0.3s ease;
}

/* COMENTARIOS */

.comentarios {
  margin-top: 40px;
  margin-bottom: 140px;
}

.comentarios h3 {
  color: #4B603F;
  font-size: 20px;
  margin-bottom: 20px;
}

.comentario {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.comentario p {
  color: #82A046;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.texto-comentario {
  background-color: #FDFFF2;
  padding: 10px 15px;
  border-radius: 12px;
  flex: 1;
}

.texto-comentario p {
  margin: 5px 0 0;
}

/* CAJA COMENTARIOS */

.caja-comentar {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.caja-comentar textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #CCCCCC;
  border-radius: 12px;
  resize: none;
  min-height: 80px;
  font-family: inherit;
}

.caja-comentar .btn-enviar {
  align-self: flex-end;
  background-color: #4B603F;
  color: #FDFFF2;
  border: none;
  padding: 8px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.caja-comentar .btn-enviar:hover {
  background-color: #FF8820;
}

/* ---- PERFIL DEL USUARIO ---- */

.perfil-usuario {
  padding: 20px;
  max-width: 600px;
  margin: 80px 0 0;
  font-family: Archivo, sans-serif;
  background-color: #FDFFF2;
}

.perfil-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.perfil-foto {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #CFDDB0;
  margin-bottom: 10px;
}

.perfil-header h2 {
  font-size: 22px;
  margin: 0;
  font-weight: bold;
  color: #4B603F;
}

.carrusel-favoritos {
  padding: 0px 20px 0;
}

.carrusel-favoritos h2 {
  padding-top: 20px;
  font-size: 21px;
  color: #4B603F;
}

.carousel-container {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 20px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.separador {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px;
}

.perfil-datos {
  margin-top: 10px;
  padding: 20px;
  background-color: #4B603F;
  border: 2px solid #CCCCCC;
  border-radius: 12px;
  margin-bottom: 0;
}

.perfil-datos p {
  font-size: 15px;
  margin-bottom: 0px;
  color: #FDFFF2;
}

.perfil-seccion {
  padding-block: 20px 120px;
  padding-inline: 10px;

}

.perfil-seccion h3 {
  font-size: 16px;
  color: #507D5D;
  margin-bottom: 8px;
  padding-inline: 10px;
}

.perfil-seccion p,
.perfil-seccion ul {
  font-size: 14px;
  color: #82A046;
  margin: 0 0 10px 0;
  padding-left: 16px;
}

.eventos-importantes p {
  background-color: #4B603F;
  color: #FDFFF2;
  margin-inline: 10px;
  padding: 10px 20px;
  border-radius: 16px;
}

/* ---- FORM PARA LOS PRODUCTORES ---- */

.formulario-productor {
  padding: 30px 20px;
  color: #405830;
  margin-top: 90px;
}

.formulario-productor h2 {
  font-size: 22px;
  margin-bottom: 8px;
  text-align: center;
}

.formulario-productor p {
  font-size: 14px;
  text-align: center;
  margin-bottom: 25px;
  color: #5e5e5e;
}

.img-hover-info {
  position: relative;
  width: 100%;
  max-width: 550px;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  margin: 0 auto;
  margin-bottom: 30px;
}

.img-hover-info img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.img-hover-info:hover img {
  transform: scale(1.05); 
}

.hover-text {
  position: absolute;
  inset: 0;
  background-color: #405830cc;
  backdrop-filter: blur(3px);
  color: #fff;
  padding: 20px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 16px;
  transition: opacity 0.4s ease;
}

.img-hover-info:hover .hover-text {
  opacity: 1;
}

.hover-text strong {
font-size: 25px;
color: #FF8820;
}

.hover-text em {
  color: #CFDDB0;
  font-style: italic;
  font-size: 15px;
  display: block;
  margin-top: 6px;
}

.form-productor {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.form-productor label {
  font-size: 14px;
  font-weight: bold;
}

.form-productor input,
.form-productor textarea {
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 14px;
  background-color: #FDFFF2;
  resize: none;
}

.form-productor input:focus,
.form-productor textarea:focus {
  outline: none;
  border-color: #CFDDB0;
  box-shadow: 0 0 0 2px rgba(171, 192, 130, 0.3);
}

.btn-enviar {
  background-color: #405830;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.btn-enviar:hover {
  background-color: #2f4024;
}

/* alert del formulario enviado */

.formulario-enviado-contenedor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.formulario-enviado-contenedor.mostrar {
  opacity: 1;
  visibility: visible;
}

.formulario-enviado {
  background-color: #FDFFF2;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  margin: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.formulario-enviado-contenedor.mostrar .formulario-enviado {
  transform: scale(1);
}

.formulario-enviado h2 {
  color: #4B603F;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
}

.formulario-enviado p {
  color: #666;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.btn-cerrar-alert {
  background-color: #405830;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-cerrar-alert:hover {
  background-color: #2f4024;
}

/* ---- RECETA ---- */

.receta-seccion {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: #FDFFF2;
  margin-top: 90px;
}

/* Header de la receta */
.receta-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.receta-titulo h2 {
  color: #4B603F;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.3;
}

.receta-subtitulo {
  color: #888;
  font-size: 14px;
  font-weight: 500;
}

/* Botón de favoritos */
.btn-favorito {
  background: #FF8820;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-favorito:hover {
  background: #e67a1a;
  transform: translateY(-2px);
}

.icono-favorito {
  font-size: 18px;
}

/* Imagen principal */
.receta-imagen-principal {
  margin-bottom: 30px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.receta-imagen-principal img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Información rápida */
.receta-info-rapida {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 30px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  gap: 15px;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-item .icono {
  font-size: 24px;
  margin-bottom: 5px;
}

.info-item .texto {
  color: #4B603F;
  font-size: 12px;
  font-weight: 600;
}

/* Descripción */
.receta-descripcion {
  margin-bottom: 40px;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.receta-descripcion h2 {
  color: #4B603F;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold;
}

.receta-descripcion p {
  color: #666;
  line-height: 1.6;
  font-size: 16px;
}

/* Ingredientes */
.receta-ingredientes {
  margin-bottom: 40px;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.receta-ingredientes h2 {
  color: #4B603F;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: bold;
}

.ingredientes-lista {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ingrediente {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.ingrediente .cantidad {
  color: #FF8820;
  font-weight: 600;
  font-size: 14px;
  min-width: 80px;
}

.ingrediente .nombre {
  color: #4B603F;
  font-size: 16px;

  margin-left: 15px;
}

/* Pasos de preparación */
.receta-pasos {
  margin-bottom: 40px;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.receta-pasos h2 {
  color: #4B603F;
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: bold;
}

.pasos-lista {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.paso {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.paso-numero {
  background: #4B603F;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  flex-shrink: 0;
}

.paso-contenido {
  flex: 1;
}

.paso-contenido h3 {
  color: #503f60;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.paso-contenido p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.paso-imagen {
  width: 100%;
  max-width: 700px;
  height: 200px;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Consejos del chef */
.receta-consejos {
  margin-bottom: 40px;
  background: #f8f9fa;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #FF8820;
}

.receta-consejos h2 {
  color: #4B603F;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold;
}

.receta-consejos ul {
  list-style: none;
  padding: 0;
}

.receta-consejos li {
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.fecha-comentario {
  font-size: 12px;
  color: #888;
  margin-bottom: 10px;
}

.reacciones-comentario {
  display: flex;
  gap: 10px;
  margin-top: 10px;

}

.texto-comentario {
  color: #4B603F;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 25px;
}

.btn-reaccion {
  background-color: #4b603f09;
  padding: 10px;
  border-radius: 10px;
  color: #b6c467;
  font-size: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-reaccion:hover {
  background-color: #4b603f09;
  color: #b6c467;
  transform: translateY(-2px);
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* -- FOOTER -- */

.footer {
  background-color: #4B603F;
  color: #FDFFF2;
  padding: 40px 20px 20px 20px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 16px;
  color: #CFDDB0;
  margin-bottom: 5px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li a {
  text-decoration: none;
  color: #CFDDB0;
  font-size: 14px;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

.footer-texto {
  font-size: 14px;
  color: #CFDDB0;
  max-width: 250px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}

.redes a {
  display: inline-block;
  margin-right: 10px;
}

.redes img {
  width: 24px;
  height: 24px;
  transition: opacity 0.2s;
}

.redes img:hover {
  opacity: 0.7;
  filter: brightness(1) invert(0);
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  color: #DDE7CF;
  margin-top: 30px;
  border-top: 1px solid #CCCCCC1A;
  padding-top: 15px;
  margin-bottom: 130px;
}

/* -- JORNADA -- */

.jornada {
  padding: 30px 20px;
  text-align: center;
  color: #2b2b2b;
  margin-top: 100px;
}

.jornada h2 {
  font-size: 28px;
  margin-bottom: 24px;
  color: #4B603F;
}

.jornada-card {
  background-color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 12px;
  border: 2px solid #d0d0d0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.jornada-imagen img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.jornada-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #4B603F;
}

.jornada-info {
  font-size: 15px;
  color: #3a3a3a;
  margin-bottom: 16px;
  line-height: 1.5;
}

.jornada-descripcion {
  font-size: 16px;
  line-height: 1.5;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.jornada-enlaces {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.jornada-enlaces li {
  margin-bottom: 6px;
}

.jornada-enlaces a {
  color: #4B603F;
  text-decoration: none;
  font-size: 14px;
}

.jornada-enlaces a:hover {
  text-decoration: underline;
}

.jornada-boton {
  display: inline-block;
  background-color: #4B603F;
  color: #fff;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.jornada-boton:hover {
  background-color: #1a6e37;
}







@media screen and (min-width: 768px) {

  /* -- HEADER -- */

  .mobile-header {
    display: none;
  }

  /* -- NAVBAR -- */ 
  
  .nav-bar {
    top: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    background-color: #FDFFF2;
    padding: 10px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #4f7558;
  }

  .nav-bar-logo{
    display: block;
    cursor: pointer;
    margin-top: 10px;
    transform: all;
    transition: all 0.3s ease-in-out;
  }

  .nav-bar-logo .logo {
    width: 150px;
    height: auto;
  }

  .nav-bar ul {
    justify-content: center;
    gap: 40px;
    padding: 0;
    width: auto;
  }

  .nav-bar li {
    flex: none;
  }

  .nav-bar img {
    width: 32px;
    height: 32px;
  }

  .desktop {
    display: inline-block;
    font-size: 15px;
    color: #5e5e5e;
    padding: 5px 10px;
    transform: all;;
    transition: all 0.3s ease-in-out;
  }

  .desktop:hover {
    scale: 1.1;
    transition: scale 0.3s ease-in-out;
    color: #fff;
    border-radius: 10px;
  }

  .mobilesolo {
    display: none;
  }

  .home .bajada {
    margin-top: 130px;
  }

  .nav-bar .websolo {
  display: list-item;
  }

  .nav-bar .websolo img {
    width: 38px;
    height: 38px;
    border-radius: 20px;
    border: 2px solid #4B603F;
  }

  .nav-bar .websolo:hover {
  border-radius: 20px;
  }

  /* -- HOME -- */



  .hero {
    min-height: 85vh;
    padding: 80px 0;
  }
  .hero-content {
    max-width: 900px;
    margin: 0 auto;
  }
  .hero h1 {
    font-size: 64px;
    margin-bottom: 30px;
  }
  .hero p {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .hero-button {
    font-size: 22px;
    padding: 18px 48px;
    border-radius: 30px;
  }


.carrusel-recomendaciones {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.carrusel-recomendaciones h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}

.carrusel-recomendaciones .card {
  width: 50%;
  max-width: 900px;
  margin: 0 auto;
}




.slider {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.slide {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  text-align: left;
  gap: 15px;
}

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

.texto-slide {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: left;
  gap: 15px;
}

.texto-slide h3 {
  font-size: 24px;
  text-align: center;
}

.texto-slide p {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: center;
}


  /* -- ACTIVIDADES -- */

  .actividades h2 {
    font-size: 30px;
  }

  .actividad {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .actividad-info {
    max-width: 70%;
  }

  .actividad-acciones {
    flex-direction: column;
    align-items: flex-end;
  }

  /* -- CALENDARIO --*/

  .contenedor-calendario {
    margin-top: 120px;
  }

  .info-mes {
    margin-top: 30px;
    padding: 15px;
  }
  
  .temporada-seccion h3,
  .eventos-seccion h3 {
    font-size: 18px;
  }
  
  .temporada-lista {
    gap: 10px;
  }
  
  .temporada-item {
    padding: 8px 15px;
    font-size: 13px;
  }
  
  .evento-card {
    padding: 15px;
  }
  
  .evento-card h4 {
    font-size: 16px;
  }
  
  .evento-descripcion {
    font-size: 13px;
  }
  
  .btn-inscribirse {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* -- GLOSARIO -- */

  .calendario h2 {
    font-size: 30px;
  }

  .producto {
    font-size: 18px;
  }

  .filtros-calendario button {
    font-size: 16px;
  }

  .glosario h2 {
    font-size: 30px;
  }

  .titulo-glosario {
    font-size: 20px;
  }

  /* -- NOTICIAS -- */

  .comitente-section {
    width: 50%;
    margin: auto;
  }

  .timeline-section {
    margin-top: 100px;
    width: 50%;
    margin: auto;
  }
  
  /* -- RECETA -- */

  .receta-seccion {
    padding: 15px;
  }
  
  .receta-header {
    flex-direction: column;
    align-items: stretch;
  }
  
  .receta-titulo h2 {
    font-size: 24px;
  }
  
  .btn-favorito {
    align-self: center;
  }
  
  .receta-info-rapida {
    justify-content: space-between;
  }
  
  .info-item {
    min-width: 60px;
  }
  
  .paso {
    flex-direction: column;
    gap: 15px;
  }
  
  .paso-numero {
    align-self: center;
  }
  
  .receta-titulo h2 {
    font-size: 20px;
  }
  
  .receta-info-rapida {
    flex-direction: column;
    align-items: center;
  }
  
  .ingrediente {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .ingrediente .cantidad {
    min-width: auto;
  }
  
  .ingrediente .nombre {
    margin-left: 0;
  }

  /* -- MAPA -- */

  .container.map-page h1 {
    margin: 0;
    padding: 0;
    visibility: hidden;
  }

  .search-mapa {
    padding: 20px;
    top: 14%;
    width: 50%;
    left: 26%;
  }

  .filter-overlay {
    left: 26%;
  }

  /* -- CONTROLADOR -- */

  /* PIN */

  #pin1 { top: 25%; left: 70%; }
  #pin2 { top: 45%; left: 33%; }
  #pin3 { top: 83%; left: 22%; }
  #pin4 { top: 70%; left: 80%; }

  /* CARD */

  #card1 { top: 27%; left: 52%; }
  #card2 { top: 46%; left: 34%; }
  #card3 { top: 51%; left: 23%; }
  #card4 { top: 38%; left: 61.5%; }

  /* -- PERFIL -- */

  .perfil-usuario {
    max-width: 800px;
    margin: 80px auto 0;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 0 12px #CCCCCC1A;
  }

  .perfil-seccion {
    max-width: 800px;
    margin: 10px auto 0;
    padding-inline: 40px 0;
  }

  .perfil-header h2 {
    font-size: 28px;
  }

  .perfil-seccion h3 {
    font-size: 18px;
  }

  .carrusel-favoritos {
    max-width: 800px;
    margin: 0px auto 0;
    padding-inline: 40px;
  }

  /* -- FORM PRODUCTORES -- */
 
  .formulario-productor {
    margin-top: 100px;
    padding: 30px 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background-color: #cfddb050;
    border-radius: 16px;
    box-shadow: 0 0 12px #cccccc1a;
    border: 3px solid #cccccc1a;
    margin-bottom: 100px;
  }

  .formulario-productor h2 {
    font-size: 26px;
  }

  .formulario-productor p {
    font-size: 16px;
  }

  .form-productor {
    padding: 0 40px;
  }

  /* -- FOOTER -- */

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-col {
    width: 30%;
  }

  .footer-col ul li a {
    font-size: 15px;
  }
}
