* {
  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;
  --gris: #8E8E93;
  --max-width: 1200px;

  /* 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;
}

/**************************
     PRODUCTOS
***************************/
.full-bg {
  background-color: var(--verde);
  width: 100%;

  background-image: url('../img/pattern/pattern-florida.svg');
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
}

.productos-section {
  max-width: var(--max-width);
  margin: auto;
  padding: 30px 0px 20px 0px;
}

.filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: left;
  margin-bottom: 2rem;
  /* border-bottom: 2px solid var(--verde); */
}

.filtro-btn {
  font-family: 'LFTEticaSheriff-Regular';
  font-size: 25px;
  background: none;
  border: none;
  padding: 0.5rem 1rem;
  font-weight: bold;
  color: white;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.filtro-btn:hover {
  color: var(--dorado);
  border-bottom: 3px solid var(--dorado);
}

.filtro-btn.active {
  color: var(--dorado);
  border-bottom: 3px solid var(--dorado);
}

.productos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .productos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .productos-grid {
    grid-template-columns: 1fr;
  }

  .filtros {
    gap: 0rem;
  }

}

.producto {
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease;

}

.producto:hover img {
  transform: scale(1.05);
}

.producto img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.producto h4 {
  font-family: 'LFTEticaSheriff-SemiBd';
  margin: 0 0 0.5rem;
  font-size: 25px;
  color: white;
}
.producto p {
  font-family: 'LFTEticaSheriff-SemiBd';
  margin: 0 0 0.5rem;
  font-size: 20px;
  color: var(--dorado);
}

.producto a {
  font-family: 'Inter';
  display: inline-block;
  background-color: var(--dorado);
  color: #fff;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 50px;
  margin-top: 0.5rem;
  transition: background-color 0.3s;
}

.producto a:hover {
  background-color: var(--verde);
}

.producto[data-categoria] {
  display: none;
}

.producto.visible {
  display: block;
}

/*RECETAS-CARRUSEL*/
.new-container-carrucel {
  padding-top: 50px;
  padding-bottom: 50px;
}

.titulo-recetas-carrucel {
  font-family: var(--font-title);
  font-size: 60px;
  color: var(--verde);
  text-align: center;
}

.subtitulo-recetas-carrusel {
  font-family: var(--font-subtitle2);
  text-align: center;
  color: var(--dorado);
  font-size: 25px;
  margin-bottom: 50px;
}

.new-slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  cursor: grab;
}

.new-card-list {
  display: flex;
  transition: transform 0.5s ease;
}

.new-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: flex-start;
  text-align: center;
}

.new-image-container {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
}

.new-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slider-nombre {
  font-family: var(--font-subtitle1);
  font-size: 30px;
  color: var(--verde);
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
}

.new-overlay {
  display: none !important;
}



/* Botón final */
.florida-btn-container {
  text-align: center;
  margin-top: 30px;
}

.florida-btn-dorado {
  font-family: var(--font-subtitle1);
  background-color: var(--dorado);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-size: 18px;
  transition: background-color 0.3s ease;
}

.florida-btn-dorado:hover {
  background-color: #e6a600;
}

@media screen and (max-width: 1024px) {
  .new-card-item {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .new-image-container {
    width: 220px;
    height: 220px;
    margin: 0 auto 15px auto;
  }

  .new-recipe-name {
    font-size: 16px;
  }
}

@media screen and (max-width: 620px) {
  .new-card-item {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .new-image-container {
    width: 200px;
    height: 200px;
  }

  .new-recipe-name {
    font-size: 14px;
    padding: 6px 16px;
  }
  
}

@media screen and (max-width: 768px) {
  .new-container-carrucel {
    padding: 20px;
  }

  .new-title_carrucel {
    margin-top: 30px;
    font-size: 30px;
    font-weight: bold;
  }

  .new-parrafo_carrucel {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .titulo-recetas-carrucel {
  font-size: 40px;
}

}

/*PRODUCTO SUPERIOR*/
.producto-superior {
  background-color: #fff;
  position: relative;
  overflow: hidden;
  padding: 130px 0px 0px 0px;
}

.producto-superior-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.producto-superior-contenido {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.producto-superior-img {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.producto-superior-img img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: contain;
  max-height: 400px;
}

.producto-superior-texto {
  flex: 1 1 45%;
  text-align: left;
}

.producto-superior-texto h2 {
  font-family: var(--font-title);
  font-size: 60px;
  color: var(--verde);
  margin-bottom: 15px;
  line-height: 1;
}

.producto-superior-texto h3 {
  font-family: var(--font-subtitle2);
  font-size: 45px;
  color: var(--verde);
  margin-bottom: 15px;
}

.producto-superior-texto p {
  font-family: var(--font-subtitle2);
  color: var(--dorado);
  font-size: 25px;
  margin-bottom: 20px;
}

.btn-descubre {
  display: inline-block;
  background-color: var(--dorado);
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.btn-descubre:hover {
  background-color: var(--verde);
}

/* Ola inferior ocupa todo el ancho */
.ola-inferior {
  width: 100%;
  overflow: hidden;
}

.ola-inferior img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .producto-superior-contenido {
    flex-direction: column;
    text-align: center;
  }

  .producto-superior-texto {
    text-align: center;
  }

  .producto-superior-img img {
    max-width: 300px;
  }

  .producto-superior-texto h2 {
    font-size: 40px;
  }

  .producto-superior-texto h3 {
  font-size: 35px;
}

  .producto-superior-texto p {
    font-size: 25px;
  }
}

html {
  scroll-behavior: smooth;
}

/*INGREDIENTES*/
/* Olas */
.ola-superior-wrapper,
.ola-inferior-wrapper {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.ola-img {
  display: block;
  width: 100%;
  height: auto;
}

/* Sección principal */
.productos-ingredientes {
  background-color: var(--verde);
  padding: 60px 20px;
  margin: 0;

  /* background-image: url(../img/pattern/pattern-florida.svg);
  background-size: 419px 335px;
  background-repeat: repeat; */
  background-image: url('../img/pattern/pattern-florida.svg');
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
}

.ingredientes-contenido {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.ingredientes-texto {
  flex: 1;
  color: white;
}

.ingredientes-texto h3 {
  font-family: var(--font-subtitle1);
  color: var(--dorado);
  font-size: 35px;
  margin-bottom: 10px;
}

.ingredientes-texto p {
  font-family: var(--font-subtitle2);
  font-size: 25px;
  color: white;
  margin-bottom: 20px;
}

.btn-ver-recetas {
  background-color: #f5b400;
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.btn-ver-recetas:hover {
  background-color: #147e63;
}

.ingredientes-imagen {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ingredientes-imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  border: 5px solid var(--dorado);
}

/* Responsive */
@media (max-width: 768px) {
  .ingredientes-contenido {
    flex-direction: column;
    text-align: center;
  }

  .ingredientes-texto h3 {
    font-size: 22px;
  }

  .ingredientes-texto p {
    font-size: 18px;
  }
}
