* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/*-----FONTS-----*/
@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
    url('../fonts/Inter-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-Light';
  src: url('../fonts/Inter-Light.woff2') format('woff2'),
    url('../fonts/Inter-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-Bold';
  src: url('../fonts/Inter-Bold.woff2') format('woff2'),
    url('../fonts/Inter-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Inter-ExtraLight';
  src: url('../fonts/Inter-ExtraLight.woff2') format('woff2'),
    url('../fonts/Inter-ExtraLight.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'LFTEticaSheriff-Regular';
  src: url('../fonts/LFTEticaSheriff-Regular.woff2') format('woff2'),
    url('../fonts/LFTEticaSheriff-Regular.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}


@font-face {
  font-family: 'LFTEticaSheriff-SemiBd';
  src: url('../fonts/LFTEticaSheriff-SemiBd.woff2') format('woff2'),
    url('../fonts/LFTEticaSheriff-SemiBd.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'LFTEticaSheriff-Bold';
  src: url('../fonts/LFTEticaSheriff-Bold.woff2') format('woff2'),
    url('../fonts/LFTEticaSheriff-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

:root {
  --verde: #1F9562;
  --verde2: #024C36;
  --dorado: #EFB810;
  --celeste: #C6E5F3;
  --crema: #FFF7E6;
  --gris: #8E8E93;
 /*  --max-width: 1200px; */
  --max-width: 1000px;

  /* Fuentes */
  --font-title: 'LFTEticaSheriff-Bold', serif;
  --font-subtitle1: 'LFTEticaSheriff-SemiBd', serif;
  --font-subtitle2: 'LFTEticaSheriff-Regular', serif;

  --font-paragraph: 'Inter', sans-serif;

  /* Tamaños de fuente */
  --font-size-title: 60px;
  --font-size-subtitle: 35px;
  --font-size-paragraph: 20px;
}


body {
  font-family: 'Inter', sans-serif;
}

/*SELECCIÓN DE TEXTO*/
/* Cambiar color de selección de texto */
::selection {
  background: var(--verde);
  color: white;
}

/* Para compatibilidad con Firefox */
::-moz-selection {
  background: var(--verde);
  color: white;
}

/**************************
       BOTONES
***************************/
.florida-btn-container {
  font-family: 'inter';
  display: flex;
  /* Usamos Flexbox */
  justify-content: center;
  /* Centra los botones horizontalmente */
  gap: 20px;
  /* Añadimos espacio entre los botones */
  margin-top: 40px;
  /* Espacio superior */
}

.florida-btn-rojo {
  display: inline-flex;
  /* Cambio de inline-block a inline-flex para asegurar que se ajuste bien */
  padding: 13px 20px;
  background-color: #C32A26;
  color: white;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  border: none;
  max-width: 100%;
  width: auto;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.florida-btn-rojo:hover {
  background-color: #EFA220;
}

.florida-btn-dorado {
  font-family: 'Inter';
  display: inline-flex;
  padding: 13px 20px;
  background-color: var(--dorado);
  color: white;
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  border: none;
  border-radius: 50px;
  max-width: 100%;
  width: auto;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.florida-btn-dorado:hover {
  background-color: var(--verde);
}


/* Medios de consulta para hacer el botón responsive */
@media (max-width: 768px) {

  .florida-btn-rojo,
  .florida-btn-dorado {
    font-size: 14px;
    /* Reduce el tamaño del texto en pantallas pequeñas */
    padding: 10px 20px;
    /* Ajusta el padding */
  }
}

/**************************
     MENÚ
***************************/
header {
  font-family: 'LFTEticaSheriff-SemiBd';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: var(--verde);
  color: white;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
}

header.scroll {
  background-color: white;
  color: #0F3CEB;
  opacity: 85%;
}

header.scroll .logo img {
  content: url('../img/iconos/logo-florida-verde-fecha.svg');
  /* Cambiar logo a azul */
}

header .header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 23px 0 23px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* transform: translateY(25%);   lo coloqué yo - no había*/
}

.logo img {
  height: 50px;
  transition: filter 0.3s ease;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

nav ul li {
  margin: 0 15px;
  position: relative;
}

nav ul li a {
  font-size: 18px;
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
  padding: 5px 0;
}

nav ul li a:hover,
nav ul li.active a {
  color: var(--dorado);
  /* Verde Pajisa */
}

nav ul li:hover::after,
nav ul li.active::after {
  content: "";
  position: absolute;
  bottom: -29px;
  /*Distancia de línea*/
  left: 0;
  width: 100%;
  height: 6px;
  /*Grosor de línea*/
  background-color: var(--dorado);
  /*rayita menú*/
}

header.scroll nav ul li a {
  color: var(--verde);
  /* Azul cuando el fondo sea blanco */
}

header.scroll nav ul li a:hover {
  color: var(--dorado);
  /* color del texto */
}

.social-icons img {
  width: 25px;
  height: 25px;
  margin-left: 10px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Menú hamburguesa */
.hamburger {
  display: none;
  font-size: 35px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 1200;
}

.menu-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  background-color: var(--verde2);
  color: white;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  padding-top: 20px;
  transition: left 0.3s ease;
  z-index: 1100;
}

.menu-mobile.active {
  left: 0;
}

.menu-mobile ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-mobile ul li {
  margin: 15px 0;
}

.menu-mobile ul li a {
  text-decoration: none;
  color: white;
  padding: 10px 20px;
  display: block;
  transition: color 0.3s ease;
}

.menu-mobile ul li a:hover,
.menu-mobile ul li.active a {
  color: var(--dorado);
}

.social-icons-mobile img {
  color: #fff;
  width: 50px;
  height: 50px;
  margin: 0 5px;
  /*distancia entre iconos*/
  transition: transform 0.3s ease, filter 0.3s ease;
  padding-left: 10px;
}

.social-icons-mobile img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

@media (max-width: 768px) {
  .menu {
    display: none;
  }

  .hamburger {
    display: block;
    padding: 0px;
  }

  header.scroll .hamburger {
    color: var(--verde);
  }

  .menu-mobile {
    display: block;
  }

  .logo img {
    height: 50px;
  }

  header .header-container {
    padding: 23px;
  }
  .logo-movil {
    padding: 10px;
    width: 150px;
    margin-top: 20px;
    margin-left: 10px;
  }
}

/**************************
  SLIDER BANNER
***************************/
/* Contenedor del slider */
.slider-container {
  font-family: "Inter-Bold";
  position: relative;
  width: 100%;
  max-width: 1920px;
  overflow: hidden;
}

/* Slider */
.slider {
  display: flex;
  transition: transform 1s ease-in-out;
}

/* Diapositiva */
.slide {
  min-width: 100%;
  aspect-ratio: 16/9;
  height: 750px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}


/* Contenido de la diapositiva */
.slide-content {
  /*background-color: rgba(67, 95, 58, 0.8);*/
  color: #fff;
  padding: 20px;
  text-align: center;
  /* Alinea el texto a la izquierda */
  max-width: 80%;
  border-radius: 5px;
  position: absolute;
  /*left: 40px;  Alinea el contenido a la izquierda */
  bottom: 50px;
  /* Coloca el contenido cerca de la parte inferior */
}

/* Título de la diapositiva */
.slide-content h2 {
  font-family: "Montserrat-Bold";
  font-size: 2em;
  margin: 0 0 10px 0;
  /* Espacio abajo */
}

/* Subtítulo de la diapositiva */
.slide-content p {
  font-size: 1.2em;
  margin: 0 0 20px 0;
  /* Espacio abajo */
}

/* Estilo del botón */
.btn {
  font-family: 'inter';
  display: inline-block;
  padding: 10px 20px;
  background-color: #EFA220;
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.btn:hover {
  background-color: #C32A26;
  color: white;
  /*border: 1px solid white; */
}

/* Puntos de navegación */
.navigation-dots {
  text-align: center;
  position: absolute;
  bottom: 20px;
  width: 100%;
}

.dot {
  display: inline-block;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: var(--dorado);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: var(--verde);
}

/* Botones de navegación */
.nav-button-slider {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  transition: background-color 1s ease;
  z-index: 10;
  /* Asegura que el botón esté encima del slider */
}

.nav-button-slider img {
  width: 45px;
  height: 45px;
}

.nav-button-slider.left {
  left: 120px;
}

.nav-button-slider.right {
  right: 120px;
}
@media (max-width: 1280px) {
  .slide {
    height: 600px;
  }
}
/* Responsivo */
@media (max-width: 768px) {
  .slide {
    height: 620px;
    background-position: 50% center;
  }

  .slide-content {
    /* background-color: rgba(67, 95, 58, 0.8);*/
    color: #fff;
    padding: 20px;
    text-align: left;
    /* Alinea el texto a la izquierda */
    max-width: 80%;
    border-radius: 5px;
    position: absolute;
    /* left: 40px;  Alinea el contenido a la izquierda */
    bottom: 50px;
    /* Coloca el contenido cerca de la parte inferior */
  }

  .slide-content h2 {
    font-family: "LTMuseum-Medium";
    font-size: 1.5em;
    line-height: 1;
  }

  .slide-content p {
    font-size: 0.9em;
  }

  .btn {
    font-size: 14px;
  }

  .nav-button-slider {
    padding: 8px;
  }

  .nav-button-slider img {
    width: 0px;
    height: 0px;
  }

  .nav-button-slider img {
    width: 40px;
    height: 40px;
  }

  .nav-button-slider.left {
    left: 15px;
  }

  .nav-button-slider.right {
    right: 15px;
  }

}

/* Ajuste de altura en móvil */
@media (max-width: 768px) {
  .slide {
    height: 620px;
  }
}

/**************************
 PRODUCTOS CARRUSEL HOME
***************************/
.container-carrucel {
  background-color: white;
  padding-top: 70px;
  padding-bottom: 50px;
}

.title_carrucel {
  font-family: var(--font-title);
  font-size: 60px;
  color: var(--verde);
  text-align: center;
}

.parrafo_carrucel {
  font-family: 'HeinzLabel-Regular';
  text-align: center;
  color: #7b3f28;
  font-size: 25px;
  margin-top: 15px;
  margin-bottom: 50px;
}

.slider-wrapper {
  overflow: hidden;
  /* max-width: 1200px; */
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  cursor: grab;
}

.card-list {
  display: flex;
  transition: transform 0.5s ease;
}

.card-item {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  box-sizing: border-box;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #0037A4;
}

.card-item p {
  font-family: 'LFTEticaSheriff-SemiBd';
  color: var(--verde);
  font-size: 23px;
  /* margin-top: 2px; */
  margin: 2px;
  /* Añadir algo de espacio entre la imagen y el texto */
}
.card-item .strong {
  font-family: LFTEticaSheriff-Bold;
  font-weight: bold !important;
}
.card-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--dorado);
  border-radius: 50%;
  cursor: pointer;
}

.pagination-bullet.active {
  background-color: var(--verde);
}

.nav-button-productos {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.nav-button-productos.prev {
  left: 10px;
}

.nav-button-productos.next {
  right: 10px;
}

.nav-button-productos img {
  width: 45px;
  height: 45px;
}

@media (max-width: 768px) {
  .nav-button-productos img {
    width: 40px;
    height: 40px;
  }

  .nav-button-productos.prev {
    left: -150px;
  }

  .nav-button-productos.next {
    right: -150px;
  }
}

@media screen and (max-width: 1024px) {
  .card-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media screen and (max-width: 620px) {
  .card-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.product-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  .container-carrucel {
    /* padding: 20px;*/
  }

  .title_carrucel {
    font-size: 35px;
    padding: 20px;
  }

  .parrafo_carrucel {
    font-size: 20px;
    margin-bottom: 20px;
  }
}


/**************************
        FOOTER
***************************/
.footer {
  position: relative;
  width: 100%;
  color: white;
  font-family: sans-serif;
  background-color: var(--verde);
  /*  background: url('../img/pattern/contenedor-footer.svg') no-repeat; */
  background-size: cover;
  padding-top: 30px;
  z-index: 1;
}

.footer-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  padding: 20px 16px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.footer-column img {
  max-width: 160px;
  margin-bottom: 10px;
}

.footer-column h2 {
  font-family: 'LFTEticaSheriff-SemiBd';
  color: var(--dorado);
  /* margin-bottom: 10px; */
  margin: 0 0 10px 0px;
  font-size: 30px;
}

.footer-column p,
.footer-column a {
  font-size: 14px;
  line-height: 1.5;
}

.parrafo-razon {
  font-family: 'Inter';
  color: var(--dorado);
  font-size: 14px;

}

.menu-footer ul {
  list-style: none;
  padding: 0;
}

.menu-footer li {
  margin-bottom: 5px;
  transition: transform 0.3s;
}

.menu-footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.menu-footer a:hover {
  color: var(--dorado);
}

.menu-footer li:hover {
  transform: translateX(8px);
}

.social-iconos {
  display: flex;
  gap: 10px;
  margin: 10px 0;
}

.social-iconos a img {
  width: 35px;
  transition: transform 0.3s, filter 0.3s;
}

.social-iconos a:hover img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(84%) saturate(383%) hue-rotate(11deg);
  transform: scale(1.2);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 10px 0;
}

.links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}

.links a:hover {
  color: var(--dorado);
  transform: translateX(8px);
}

.reclamaciones img {
  width: 160px;
  margin-top: 10px;
}

.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid white;
  padding-top: 10px;
  font-size: 13px;
}

.footer-bottom a {
  text-decoration: none;
  color: var(--dorado);
}

.footer-bottom a:hover {
  color: var(--dorado);
}

.phone-number {
  font-family: var(--font-subtitle1);
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.footer-column.contact .phone-number {
  font-size: 14px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.footer-column.contact .phone-number:hover {
  text-decoration: none;
  color: var(--dorado);
}

.footer-image-svg {
  width: 100%;
  display: block;
  margin-top: -1px;
  /* para evitar espacios indeseados */
  line-height: 0;
}

.footer-image-svg img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column {
    margin: 10px 0;
  }

  .social-iconos {
    justify-content: center;
  }

  .links {
    align-items: center;
  }

  .footer-bottom {
    font-size: 14px;
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  .footer-column p,
  .footer-column a {
  font-size: 15px;
  }
}

/**************************
     RECETAS-HOME
***************************/
.recetas-home {
  padding: 40px 20px;
  background-color: var(--verde);
  background-image: url('../img/pattern/pattern-florida.svg');
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  text-align: center;

}

.titulo-recetas {
  font-family: var(--font-title);
  color: white;
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 40px;
  transition: transform 0.6s ease;
}

/* .contenedor-recetas {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  justify-items: center;
} */
 .contenedor-recetas {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.contenedor-recetas .receta-categoria {
  flex-basis: calc(33.333% - 10px);
  max-width: calc(33.333% - 10px);
}

/* Para forzar que los últimos 2 elementos se centren */
.contenedor-recetas .receta-categoria:nth-child(4),
.contenedor-recetas .receta-categoria:nth-child(5) {
  flex-basis: calc(33.333% - 10px);
}

.receta-categoria {
  font-family: var(--font-title);
  text-decoration: none;
  color: white;
  text-align: center;
  transition: transform 0.3s ease;
}

.circulo {
  width: 270px;
  height: 270px;
  border: 7px solid var(--dorado);
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
}

.circulo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.5s ease;
  will-change: transform;
}

.rotate-down {
  transform: rotate(25deg);
}

.rotate-up {
  transform: rotate(-25deg);
}

.receta-categoria span {
  font-family: var(--font-subtitle1);
  display: block;
  color: white;
  font-size: 30px;
}
.verde .receta-categoria span {
  color: var(--verde);

}

.receta-categoria:hover {
  animation: pulse 0.6s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

@media (max-width: 768px) {
  .contenedor-recetas {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .circulo {
    width: 100px;
    height: 100px;
  }

  .receta-categoria span {
    font-size: 0.85rem;
  }

  .titulo-recetas {
    font-size: 35px;
  }

  .circulo {
    border: 4px solid var(--dorado);
  }
}

/**************************
       RECLAMACIONES
***************************/
.libro-reclamaciones {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 130px 0px 40px 0px;
  color: #333;
}

.titulo-reclamo {
  font-family: var(--font-title);
  color: var(--verde);
  font-size: 60px;
}

.subtitulo-reclamo {
  font-family: var(--font-subtitle1);
  color: var(--verde);
  margin-top: 30px;
  font-size: 25px;
  border-bottom: 2px solid var(--verde);
  padding-bottom: 5px;
}

p {
  margin: 15px 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 15px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.form-row input,
.form-row select {
  flex: 1;
  min-width: 250px;
}

.form-full {
  margin-top: 15px;
}

input,
select,
textarea {
  font-family: var(--font-subtitle2);
  color: var(--verde);
  width: 100%;
  padding: 10px;
  border: 2px solid var(--dorado);
  border-radius: 5px;
  font-size: 14px;
  resize: vertical;
}

textarea {
  min-height: 80px;
}

.btn-enviar {
  margin-top: 20px;
  background-color: var(--verde);
  color: white;
  border: none;
  padding: 12px 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-enviar:hover {
  background-color: var(--dorado);
}

.nota {
  font-size: 13px;
  color: #555;
  margin-top: 20px;
}

/* 1. Eliminar contorno negro por defecto y agregar dorado */
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--dorado);
  /* box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3); opcional efecto suave */
}

/* 2. Estilizar <select> con ícono verde */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='14' height='10' viewBox='0 0 14 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23008844' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 35px;
}

@media (max-width: 480px) {
  .titulo-reclamo {
    font-size: 30px;
  }

  .subtitulo-reclamo {
    font-size: 20px;
  }

  .libro-reclamaciones {
    padding: 100px 20px 40px 20px;
  }

}

/**************************
  FORMULARIO SUSCRIPCIÓN
***************************/
.subscription-background {
  font-family: 'HeinzLabel-Regular';
  background-color: var(--dorado);
  padding: 50px 20px;
}

.subscription-formulario {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  /* Centra el formulario */
  /* background: #fff;  Fondo blanco para el formulario */
  /* padding: 20px; */
}

.subscription-formulario .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.subscription-formulario .text {
  text-align: left;
}

.subscription-formulario h2 {
  font-family: var(--font-title);
  font-size: 32px;
  color: #d32f2f;
  margin-bottom: 10px;
}

.subscription-formulario p {
  font-family: 'Inter';
  color: white;
  padding-right: 45px;
}

.subscription-formulario input[type="text"],
.subscription-formulario input[type="email"] {
  font-family: var(--font-subtitle2);
  color: var(--verde);
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  font-size: 16px;
}

.subscription-formulario .checkbox-container label {
  font-family: 'Inter';
  font-size: 14px;
  color: white;
  display: block;
  text-align: left;
}

.subscription-formulario .checkbox-container label a {
  text-decoration: none;
  color: #C32A26;
}

.subscription-formulario .checkbox-container label a:hover {
  color: var(--verde);
}

.subscription-formulario button {
  background-color: #c32a26;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
}

.subscription-formulario button:hover {
  background-color: var(--verde);
  color: white;
  transition: 0.3s;
}

/* Responsivo para pantallas pequeñas */
@media (max-width: 768px) {
  .subscription-formulario .content {
    grid-template-columns: 1fr;
    /* Una sola columna */
  }

  .subscription-formulario h2 {
    font-size: 30px;
  }

  .subscription-formulario .text,
  .subscription-formulario .formulario {
    text-align: center;
  }
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #c32a26;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.notification.show {
  opacity: 1;
}

.hidden {
  display: none;
}

/**************************
  PROMOCIONES
***************************/
.promociones-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 130px 20px 40px 20px;
}

.promociones-title {
  font-family: var(--font-title);
  text-align: center;
  font-size: 60px;
  color: var(--verde);
  margin-bottom: 2rem;
}

.promociones-container-wrapper {
  display: flex;
  justify-content: center;
}

.promociones-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 columnas en escritorio */
  gap: 1.5rem;
  width: 100%;
}

.promo-card {
  border: 1.5px solid var(--verde);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s ease;
  width: 100%;
  /* necesario en grid */
}

.promo-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.promo-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.promo-info {
  padding: 1rem;
}

.promo-info h3 {
  font-family: var(--font-title);
  text-align: center;
  font-size: 18px;
  color: var(--verde);
  margin-bottom: 0.5rem;
}

.promo-info p {
  font-family: 'Inter';
  text-align: center;
  font-size: 0.875rem;
  color: var(--dorado);
}

/* Menos de 1200px → 3 columnas */
@media (max-width: 1199px) {
  .promociones-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Menos de 900px → 2 columnas */
@media (max-width: 899px) {
  .promociones-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Menos de 600px → 1 columna */
@media (max-width: 599px) {
  .promociones-container {
    grid-template-columns: 1fr;
  }

  .promociones-title {
    font-size: 35px;
  }
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 0.5rem;
}

.pagination button {
  font-family: var(--font-subtitle1);
  background-color: var(--dorado);
  color: var(--verde);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 17px;
  font-weight: bold;
  cursor: pointer;
}

.pagination button.active {
  background-color: var(--verde);
  color: #fff;
}

.ver-promocion-link {
  font-family: 'Inter';
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 0.5rem;
  color: var(--verde);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.ver-promocion-link .flecha {
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.ver-promocion-link:hover {
  padding-left: 5px;
}

.ver-promocion-link:hover .flecha {
  transform: translateX(5px);
}

.promo-image-wrapper {
  display: block;
  overflow: hidden;
}

.promo-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.promo-image-wrapper:hover img {
  transform: scale(1.08);
}

/*OLAS VERDE */
.ola-superior-wrapper,
.ola-inferior-wrapper {
  width: 100%;
  overflow: hidden;
  line-height: 0;  
}

.ola-img {
  display: block;
  width: 100%;
  height: auto;
}

.ola-recetas-img {
  display: block;
  width: 100%;
  height: auto;
  background-color: var(--crema);
}

.ola-preguntas-img {
  display: block;
  width: 100%;
  height: auto;
  background-color: #fff;
}

/*OLAS CREMA */
.ola-superior-crema,
.ola-inferior-crema {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.ola-crema-img {
  display: block;
  width: 100%;
  height: auto;
}

/*SOSTENIBILIDAD HOME*/
.sostenibilidad-home {
  background-color: var(--crema);
  padding: 60px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}

.contenedor-sostenibilidad {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.sostenibilidad-fotos {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  max-width: 30%;
}

.sostenibilidad-contenido {
  flex: 1;
  max-width: 35%;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.titulo {
  font-family: var(--font-title);
  font-size: 50px;
  line-height: 1;
  color: var(--verde);
  margin-bottom: 20px;
}

.descripcion {
  font-family: var(--font-subtitle2);
  color: var(--verde2);
  font-size: 20px;
  margin-bottom: 30px;
}

.boton-sostenibilidad {
  font-family: 'Inter';
  background-color: var(--dorado);
  color: white;
  font-size: 18px;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 25px;
  display: inline-block;
  transition: all 0.3s ease;
}

.boton-sostenibilidad:hover {
  background-color: var(--verde);
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

/* FOTO: estado inicial oculto y fuera de pantalla */
.foto {
  width: 100%;
  border: 9px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: all 0.9s ease;
}

/* INICIAL: Izquierda superior */
.sostenibilidad-fotos.izquierda .foto:nth-child(1) {
  transform: translateX(-150px) rotate(-15deg);
}

/* INICIAL: Izquierda inferior */
.sostenibilidad-fotos.izquierda .foto:nth-child(2) {
  transform: translateX(-150px) rotate(15deg);
}

/* INICIAL: Derecha superior */
.sostenibilidad-fotos.derecha .foto:nth-child(1) {
  transform: translateX(150px) rotate(15deg);
}

/* INICIAL: Derecha inferior */
.sostenibilidad-fotos.derecha .foto:nth-child(2) {
  transform: translateX(150px) rotate(-15deg);
}

/* ACTIVE: animadas en pantalla */
.sostenibilidad-fotos.izquierda .foto:nth-child(1).active {
  opacity: 1;
  transform: translateX(0) rotate(-15deg);
}

.sostenibilidad-fotos.izquierda .foto:nth-child(2).active {
  opacity: 1;
  transform: translateX(0) rotate(15deg);
}

.sostenibilidad-fotos.derecha .foto:nth-child(1).active {
  opacity: 1;
  transform: translateX(0) rotate(15deg);
}

.sostenibilidad-fotos.derecha .foto:nth-child(2).active {
  opacity: 1;
  transform: translateX(0) rotate(-15deg);
}

/* Delay para que entren una por una */
.sostenibilidad-fotos .foto:nth-child(1) {
  transition-delay: 0.2s;
}

.sostenibilidad-fotos .foto:nth-child(2) {
  transition-delay: 0.4s;
}

/* Contenido (título, párrafo, botón) */
.sostenibilidad-contenido.active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

@media (max-width: 1024px) {
  .sostenibilidad-home {
    flex-direction: column;
    align-items: center;
  }

  .sostenibilidad-fotos,
  .sostenibilidad-contenido {
    max-width: 90%;
    flex: none;
  }

  .titulo {
    padding-top: 40px;
    font-size: 1.5em;
  }

  .foto {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .descripcion {
    font-size: 18px;

  }

  .titulo {
  font-size: 35px;
}
.sostenibilidad-fotos{
  margin-top: 40px;
}
}

/*SOCIALMEDIA HOME*/
.socialmedia-home {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 20px;
  overflow: hidden;
}

.socialmedia-text {
  margin-bottom: 30px;
  animation: fadeLeft 1s ease forwards;
}

.socialmedia-text p {
  font-family: var(--font-subtitle2);
  color: var(--verde);
  font-size: 20px;
  margin: 0;
}

.socialmedia-text h2 {
  font-family: var(--font-title);
  font-size: 50px;
  color: var(--verde);
  margin: 5px 0 0 0;
  font-weight: 800;
}

.socialmedia-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.socialmedia-card {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(50px);
  animation: riseUp 0.8s ease forwards;
  transition: transform 0.3s ease;
  display: block;
}

.socialmedia-card:nth-child(1) {
  animation-delay: 0.3s;
}

.socialmedia-card:nth-child(2) {
  animation-delay: 0.5s;
}

.socialmedia-card:nth-child(3) {
  animation-delay: 0.7s;
}

.socialmedia-card:nth-child(4) {
  animation-delay: 0.9s;
}

.socialmedia-card:hover {
  transform: scale(1.05);
}

.socialmedia-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.socialmedia-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.socialmedia-card:hover .socialmedia-image img {
  transform: scale(1.1);
}

/* Animaciones */
@keyframes riseUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive: 2 columnas en móviles */
@media (max-width: 768px) {
  .socialmedia-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .socialmedia-text h2 {
    font-size: 35px;
  }
}

.fade-in-text {
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-text.line1 {
  animation-delay: 0.2s;
}

.fade-in-text.line2 {
  animation-delay: 0.5s;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/**************************
  POLITICAS DE PRIVACIDAD
***************************/
.politicas-privacidad {
  background: #fff;
  padding: 130px 20px;
}

.contenedor-politicas {
  max-width: 1000px;
  margin: 0 auto;
  color: var(--gris);
  font-family: sans-serif;
}

.contenedor-politicas h2 {
  font-family: var(--font-title);
  color: var(--verde);
  font-size: 50px;
  margin-bottom: 40px;
  text-align: center;
}

.contenedor-politicas h3 {
  font-family: var(--font-title);
  color: var(--verde);
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.contenedor-politicas p {
  font-family: var(--font-subtitle2);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--gris);
}

.contenedor-politicas ul,
.contenedor-politicas ol {
  font-family: var(--font-subtitle2);
  font-size: 16px;
  line-height: 1.8;
  color: var(--gris);
  margin: 0 0 30px 30px;
  padding-left: 20px;
}

.contenedor-politicas ul li,
.contenedor-politicas ol li {
  margin-bottom: 12px;
}

.contenedor-politicas ul li::marker,
.contenedor-politicas ol li::marker {
  color: var(--verde);
  font-weight: bold;
}

.contenedor-politicas span {
  font-weight: bold;
  color: var(--verde);
}

/* Responsive */
@media (max-width: 600px) {
  .contenedor-politicas h2 {
    font-size: 28px;
  }

  .contenedor-politicas h3 {
    font-size: 20px;
  }

  .contenedor-politicas p,
  .contenedor-politicas ul,
  .contenedor-politicas ol,
  .contenedor-politicas li {
    font-size: 15px;
  }

  .contenedor-politicas ul,
  .contenedor-politicas ol {
    margin-left: 20px;
  }
}
