* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/*-----FONTS-----*/
/* Definir la fuente Inter-Regular */
@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;
  }
  
  /* Definir la fuente Inter-Bold */
  @font-face {
    font-family: 'Inter';
    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: 'LTMuseum-Medium';
    src: url('../fonts/LTMuseum-Medium.woff2') format('woff2'),
         url('../fonts/LTMuseum-Medium.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
  }

  @font-face {
    font-family: 'Montserrat-Regular';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
         url('../fonts/Montserrat-Regular.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
  }

  @font-face {
    font-family: 'Montserrat-Bold';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
         url('../fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
  }

  body {
    font-family: 'Inter', sans-serif;
  }

/**************************
     MENÚ
***************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: #121F0A; /* Azul Pajisa */
  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: #003DA5;
}

header.scroll .logo img {
  content: url('../img/iconos/logo.png'); /* Cambiar logo a azul */
}

header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  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 {
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
  padding: 5px 0;
}

nav ul li a:hover,
nav ul li.active a {
  color: #36A400; /* Verde Pajisa */
}

nav ul li:hover::after,
nav ul li.active::after {
  content: "";
  position: absolute;
  bottom: -35px;  /*Distancia de línea*/
  left: 0;
  width: 100%;
  height: 6px;  /*Grosor de línea*/
  background-color: #36A400;
}

header.scroll nav ul li a {
  color: #435F3A; /* Azul cuando el fondo sea blanco */
}

.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: #36A400;
  cursor: pointer;
  z-index: 1200;
}

.menu-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: -100%;
  width: 250px;
  height: 100%;
  background-color: #435F3A;
  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: #36A400;
}

.social-icons-mobile img {
  width: 25px;
  height: 25px;
  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;
  }

  .menu-mobile {
    display: block;
  }
}

/**************************
     BANNER ESTÁTICO
***************************/
.banner-productos {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.banner-productos img {
  width: 100%;
  height: auto;
  max-width: 1920px;
  max-height: 300px;
  display: block;
}

/* Fondo transparente sobre la imagen */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(67, 95, 58, 0.9); /* Verde transparente */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
}

/* Estilos del título */
.banner-overlay h1 {
 /* font-size: 2.5rem; */
  font-weight: bold;
  margin: 0;
  position: relative;
  transform: translateY(30px); /* Baja el título 30px */
}

/* Breadcrumb dentro del overlay */
.breadcrumb-container {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 10px; /* Ajusta la distancia desde la parte inferior */
  padding: 0 10px; /* Espaciado interno en pantallas pequeñas */
  box-sizing: border-box;
}

.breadcrumb {
  font-size: 16px;
  font-family: Arial, sans-serif;
  white-space: nowrap; /* Evita que el texto salte de línea */
  overflow: hidden; /* Esconde el texto que se sale */
  text-overflow: ellipsis; /* Agrega "..." si el texto es muy largo */
}

.breadcrumb a {
  text-decoration: none;
  color: white; /* Texto blanco para visibilidad */
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #36A400; /* Azul al pasar el cursor */
}

.breadcrumb a.active {
  color: #36A400; /* Azul oscuro para el activo */
  font-weight: bold;
  pointer-events: none; /* Desactiva el clic para el enlace activo */
}

/* Responsividad */
@media (max-width: 768px) {
  .banner-productos {
    height: 80vw; /* Hacer cuadrado en móviles */
  }

  .banner-productos img {
    object-fit: cover; /* Ajustar la imagen */
    height: 100%;
  }

  .banner-overlay h1 {
    font-size: 1.8rem; /* Reducir tamaño del título */
    transform: translateY(20px); /* Baja el título menos en móviles */
  }

  .breadcrumb-container {
    bottom: 5px; /* Menor espacio en pantallas pequeñas */
    width: 90%; /* Ajustar el ancho para no salirse */
  }

  .breadcrumb {
    font-size: 16px; /* Reducir tamaño del breadcrumb */
  }
}


/**************************
  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 0.7s ease-in-out;
}

/* Diapositiva */
.slide {
    min-width: 100%;
    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: 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 */
}

/* 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: #36A400;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
}

.btn:hover {
  background-color: #435F3A;
  color: 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: #36A400;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #435F3A;
}

/* 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;
}

/* Responsivo */
@media (max-width: 768px) {
    .slide {
        height: 600px;
        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: 10px;
    }
    
    .nav-button-slider.right {
        right: 10px;
    }
}

/* Ajuste de altura en móvil */
@media (max-width: 768px) {
  .slide {
      height: 630px;
  }
}

/**************************
        FOOTER
***************************/
#custom-footer {
    background-color:#121F0A;
    color: #fff;
    padding: 40px 0;
    font-size: 14px;
    padding-bottom: 10px;
  }
  
  /*.custom-footer h1, h2, h3, h4, h5, h6 {
    color: #2095AE;
    margin: 0;
    line-height: 1.45;
    font-weight: 600;
  } */
  
  .custom-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .custom-container h3 {
    font-family: "Montserrat-Bold";
    color: white;
    font-size: 32px;
  }

  .footer-section {
    flex: 1;
    min-width: 250px;
    margin: 20px 20px 20px;
  }
  .footer-section p {
   color: white;
  }

  .footer-section a{
    text-decoration: none;
    color: #fff; 1 
  }

  #contact-info a{
    font-size: 20px;
  }

  .footer-section a:hover{
    color: #36A400;
  }
  
  #company-info .logo img {
    width: 70px;
    height: auto;
  }
  
  #company-info p {
    color: white;
    margin: 10px 0;
  }
  
  .social-icons a {
    display: inline-block;
    margin: 10px 10px 0 0;
    transition: transform 0.3s, filter 0.3s;
  }
  
  .social-icons img {
    width: 35px;
    height: 35px;
  }
  
  .social-icons a:hover {
    transform: scale(1.2);
    filter: brightness(1.5);
  }
  
  #contact-info h3, #newsletter h3 {
    font-family: "Montserrat-Bold";
    font-size: 32px;
    margin-bottom: 10px;
  }
  
  #newsletter form {
    display: flex;
    flex-direction: column;
  }
  
  #newsletter input[type="email"] {
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    border-radius: 4px;
  }
  
  #newsletter button {
    padding: 10px;
    background-color: #f5a623;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto; 
    border-top: 1px solid white;
    padding-top: 20px;
    flex-wrap: wrap; /* Permite reorganizar elementos si no caben */
    text-align: center; /* Asegura el centrado en pantallas pequeñas */
    max-width: 1200px; /* Define un ancho máximo */
    width: 100%; /* Asegura que ocupe todo el ancho disponible hasta 1200px */
}

.footer-bottom span {
    color: white;
}

.footer-bottom a {
    text-decoration: none;
    color: #DCECD6;
}

.footer-bottom a:hover {
    color: #95be81;
}

/* Estilo para pantallas pequeñas */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column; /* Coloca los elementos uno debajo del otro */
    }

    .footer-bottom span,
    .footer-bottom a {
        margin-bottom: 10px; /* Añade espacio entre elementos */
    }
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  text-decoration: none;
  color: #fff; 1 
}

.footer-section ul li a:hover {
  color: #95be81; /* Cambia el color a amarillo al pasar el mouse */
}

/*CATEGORIAS*/
.container-carrucel {
    background-color: white;
    padding-top: 50px;
    padding-bottom: 50px;
}

.title_carrucel {
    font-family: "Montserrat-Bold";
    font-size: 45px;
    font-weight: bold;
    color: #121F0A;
    text-align: center;
}

.parrafo_carrucel {
    font-size: 23px;
    color: #435F3A;
    text-align: center;
    margin-bottom: 65px;
}

.slider-wrapper {
    overflow: hidden;
    max-width: 1200px;
    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: "LTMuseum-Medium";
  font-size: 35px;
  margin-top: 10px; /* Añadir algo de espacio entre la imagen y el texto */
}

.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: #435F3A;
    border-radius: 50%;
    cursor: pointer;
}

.pagination-bullet.active {
    background-color: #36A400;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.nav-button.prev {
    left: 10px;
}

.nav-button.next {
    right: 10px;
}

.nav-button img {
    width: 45px;
    height: 45px;
}

@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%;
    }
}

@media (max-width: 768px) {
  .title_carrucel {
    font-size: 35px;
  }
  .parrafo_carrucel {
    font-size: 20px;
    margin: 10px 10px 30px 10px;
  }

  .nav-button.prev {
    left: -15px;
}

.nav-button.next {
    right: -15px;
}

.nav-button img {
    width: 40px;
    height: 40px;
}
}

.product-link {
    text-decoration: none; /* Elimina el subrayado de los enlaces */
    color: inherit; /* Hereda el color del texto, para no cambiar el color del nombre */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centra el texto debajo de la imagen */
    justify-content: center;
    text-align: center; /* Asegura que el texto esté centrado */
}

/*----SLIDER CATEGORÍAS*/
.new-container-carrucel {
  background-color: #DCECD6;
  padding-top: 50px;
  padding-bottom: 50px;
}

.new-title_carrucel {
  font-family: 'Montserrat-Bold';
  font-size: 40px;
  color: #121F0A;
  text-align: center;
}

.new-parrafo_carrucel {
  text-align: center;
  color: #435F3A;
  font-size: 23px;
  margin-top: 15px;
  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: center;
  font-weight: bold;
  color: #C32A26;
}

.new-card-item p {
  color: #C32A26;
  font-size: 22px;
  margin-top: 10px;
}

.new-image-container {
  position: relative;
  width: 350px;
  height: 500px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #36A400;
}

.new-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-category-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #C32A26;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  font-family: "LTMuseum-Medium";
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.new-category-button:hover {
  background-color: #EFA220;
}

.new-overlay {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: rgba(54, 164, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: bottom 0.3s ease;
}

.new-image-container:hover .new-overlay {
  bottom: 0;
}

.new-recipe-name {
  color: white;
  font-size: 25px;
}

.new-pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.new-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #36A400;
  border-radius: 50%;
  cursor: pointer;
}

.new-pagination-bullet.active {
  background-color: #435F3A;
}

.new-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-100%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.new-nav-button.new-prev {
  left: -30px;
}

.new-nav-button.new-next {
  right: -30px;
}

.new-nav-button img {
  width: 45px;
  height: 45px;
}

@media screen and (max-width: 1024px) {
  .new-card-item {
      flex: 0 0 50%;
      max-width: 50%;
  }
}

@media screen and (max-width: 620px) {
  .new-card-item {
      flex: 0 0 100%;
      max-width: 100%;
  }
  .new-image-container {
      width: 300px;
      height: 400px;
  }
}

@media (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;
}

.new-nav-button img {
  width: 40px;
  height: 40px;
}
.new-nav-button.new-prev {
  left: -35px;
}

.new-nav-button.new-next {
  right: -35px;
}

}

/*PRODUCTO DETALLE ELEGIDO*/
.card-wrapper{
  max-width: 1200px;
  margin: 0 auto;
}
img{
  width: 100%;
  display: block;
}
.img-display{
  overflow: hidden;
  border: 1px solid #435F3A;
  border-radius: 10px;
}
.img-showcase{
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
}
.img-showcase img{
  min-width: 100%;
}
.img-select{
  display: flex;
}
.img-item{
  margin: 0.3rem;
  border: 1px solid #36A400;
  border-radius: 10px;
}
.img-item:nth-child(1),
.img-item:nth-child(2),
.img-item:nth-child(3){
  margin-right: 0;
  overflow: hidden;  /*border radius yo*/
}
.img-item:hover{
  opacity: 0.8;
}
.product-content{
  padding: 2rem 1rem;
}
.product-title{
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 700;
  position: relative;
  color: #435F3A;
  margin: 1rem 0;
}

.producto-link{
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 0.5rem;
  background: #36A400;
  color: #fff;
  padding: 0 0.3rem;
  transition: all 0.5s ease;
}
.producto-link:hover{
  opacity: 0.9;
}
.product-rating{
  color: #ffc107;
}
.product-rating span{
  font-weight: 600;
  color: #252525;
}
.product-price{
  margin: 1rem 0;
  font-size: 1rem;
  font-weight: 700;
}
.product-price span{
  font-weight: 400;
}
.last-price span{
  color: #f64749;
  text-decoration: line-through;
}
.new-price span{
  color: #256eff;
}
.product-detail h2{
  text-transform: capitalize;
  color: #12263a;
  padding-bottom: 0.6rem;
}
.product-detail p{
  font-family: "inter";
  font-size: 0.9rem;
  padding: 0.3rem;
  opacity: 0.8;
}
.product-detail ul{
  margin: 1rem 0;
  font-size: 0.9rem;
}
.product-detail ul li{
  margin: 0;
  list-style: none;
  background: url(../img/iconos/vineta.svg) left center no-repeat;
  background-size: 10px;
  padding-left: 1.7rem;
  margin: 0.4rem 0;
  font-weight: 600;
  opacity: 0.9;
}
.product-detail ul li span{
  font-weight: 400;
}
.purchase-info{
  margin: 1.5rem 0;
}
.purchase-info input,
.purchase-info .btn{
  border: 1.5px solid #ddd;
  border-radius: 25px;
  text-align: center;
  padding: 0.45rem 0.8rem;
  outline: 0;
  margin-right: 0.2rem;
  margin-bottom: 1rem;
}
.purchase-info input{
  width: 60px;
}
.purchase-info .btn{
  cursor: pointer;
  color: #fff;
}
.purchase-info .btn:first-of-type{
  background: #256eff;
}
.purchase-info .btn:last-of-type{
  background: #f64749;
}
.purchase-info .btn:hover{
  opacity: 0.9;
}
.social-links{
  display: flex;
  align-items: center;
}
.social-links a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #000;
  border: 1px solid #000;
  margin: 0 0.2rem;
  border-radius: 50%;
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.5s ease;
}
.social-links a:hover{
  background: #000;
  border-color: transparent;
  color: #fff;
}

@media screen and (min-width: 992px){
  .card{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap: 1.5rem;
      padding-top: 80px;
      padding-bottom: 50px;
  }
  .card-wrapper{
    /*  height: 100vh; */
      display: flex;
      justify-content: center;
      align-items: center;
  }
  .product-imgs{
      display: flex;
      flex-direction: column;
      justify-content: center;
  }
  .product-content{
      padding-top: 0;
  }
}

@media screen and (max-width: 768px){
  .product-imgs{
    padding-top: 50px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

 /*PRODUCTO DETALLE*/
 .product-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 40px;
}

/* .img-card{
    width: 40%;
} */

.img-card img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 4px;
  height: 520px;
  object-fit: cover;
}

.small-Card {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 15px;
  gap: 12px;
}

.small-Card img {
  width: 104px;
  height: 104px;
  border-radius: 4px;
  cursor: pointer;
}

.small-Card img:active {
  border: 1px solid #17696a;
}

.sm-card {
  border: 2px solid darkred;
}

.product-info{
  width: 60%;
}
.product-info h3 {
  font-size: 32px;
  font-family: Lato;
  font-weight: 600;
  line-height: 130%;
}

.product-info h5 {
  font-size: 24px;
  font-family: Lato;
  font-weight: 500;
  line-height: 130%;
  color: #ff4242;
  margin: 6px 0;
}

.product-info del {
  color: #a9a9a9;
}

.product-info p {
  color: #424551;
  margin: 15px 0;
  width: 70%;
}

.sizes p {
  font-size: 22px;
  color: black;
}

.size-option {
  width: 200px;
  height: 30px;
  margin-bottom: 15px;
  padding: 5px;
}

.quantity input {
  width: 51px;
  height: 33px;
  margin-bottom: 15px;
  padding: 6px;
}

button {
  background: #0037A4;
  /*border-radius: 4px;*/
  padding: 10px 37px;
  border: none;
  color: white;
  font-weight: 600;
}

button:hover {
 /* background: #ff4242; */
  transition: ease-in 0.4s;
}

.delivery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  color: #787a80;
  font-size: 12px;
  font-family: Lato;
  line-height: 150%;
  letter-spacing: 1px;
}

hr {
  color: #787a80;
  width: 58%;
  opacity: 0.67;
}

.pagination {
    color: #787a80;
    margin: 15px 0;
    cursor: pointer;
}

@media screen and (max-width: 576px) {
  .product-container{
    flex-direction: column;
  }
  .small-Card img{
    width: 80px;
  }
  .product-info{
    width: 100%;
  }
  echo "# product-details-page-html-css-js" >> README.md
  .product-info p{
    width: 100%;
  }

  .delivery{
    width: 100%;
  }

  hr{
    width: 100%;
  }
}

@media (max-width: 768px) {
  .breadcrumb-container {
    padding-bottom: 20px;
  }
}

/*ACCORDION*/
#faq-section {
  font-family: "inter";
  background-color: none; /* Fondo color crema */
 /* width: 100%;*/
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 50px;
}

#faq-section h2 {
  color: #435F3A;
}

@media (max-width: 768px) {
  #faq-section {
    width: 100%; /* Ocupa el 100% en pantallas pequeñas */
    padding: 20px;
  }
}

.accordion .accordion-item {
  border-bottom: 2px solid #36A400;
}

.accordion .accordion-item button[aria-expanded=true] {
  border-bottom: 1px solid #435F3A;
}

.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  color: #435F3A;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}

.accordion button:hover, .accordion button:focus {
  cursor: pointer;
  color: #36A400;
}

.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  color: #03b5d2;
  border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
  font-family: 'inter';
  padding: 1em 1.5em 1em 0;
}

.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}

.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}

.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}

.accordion button[aria-expanded=true] {
  color: #36A400;
}

.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}

.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: none; /* Deja que se expanda según el contenido */
  transition: all 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  will-change: opacity, max-height;
}

.accordion .accordion-content p {
  font-size: 1rem;
  font-weight: 300;
  margin: 2em 0;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 0 auto;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

 
/*GALERIA*/
/* Wrapper principal */
.wrapper-principal {
  padding: 20px;
  position: relative; /* Para mantener el botón flotante dentro del wrapper */
}

/* Botón de acordeón flotante sobre la galería y alineado a la izquierda */
.contenedor-acordeon-flotante {
  position: fixed; /* Flotante, sigue en la pantalla al hacer scroll */
  top: 20px; /* Espacio superior */
  left: 20px; /* Alineado a la izquierda */
  z-index: 1000; /* Superposición */
  width: 250px; /* Tamaño del contenedor */
}

.boton-acordeon-flotante {
  margin-top: 120px;
  padding: 10px 20px;
  background-color: #36A400;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 30px;
  transition: background-color 0.3s;
  width: 100%;
}

.boton-acordeon-flotante:hover {
  background-color: #435F3A;
}

.contenido-acordeon-flotante {
  display: none;
  flex-direction: column;
  background-color: white;
/*  padding: 10px; */
  margin-top: 10px;
}

.boton-acordeon-flotante.active + .contenido-acordeon-flotante {
  display: flex; /* Mostrar el contenido del acordeón */
}

.boton-filtro-personalizado {
  padding: 10px;
  background-color: #36A400;
  color: white;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.boton-filtro-personalizado:hover {
  background-color: #0056b3;
}

/* Galería de imágenes */
.contenedor-galeria-personalizado {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center; /* Centra los elementos dentro de cada celda */
}

.item-galeria-personalizado {
  border: 1px solid #435F3A;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  background-color: #435F3A;
}

/* Imágenes en la galería */
.item-galeria-personalizado img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.item-galeria-personalizado:hover img {
  transform: scale(1.1); /* Efecto zoom */
}

/* Texto debajo de la imagen */
.info-imagen-personalizado {
  text-align: center;
  padding: 10px;
  /* background-color: white; */
  width: 100%;
  margin-top: 10px; /* Para que el texto quede debajo de la imagen */
  z-index: 1;
}

.info-imagen-personalizado h3, .info-imagen-personalizado p {
  margin: 5px 0;
}

/* Enlaces en nombre y categoría */
.info-imagen-personalizado a {
  font-weight: bold;
  color: white;
  text-decoration: none;
  line-height: initial;
}

.info-imagen-personalizado a:hover {
  text-decoration: underline;
}

/* Responsive: Ajuste de columnas */
@media (max-width: 1200px) {
  .contenedor-galeria-personalizado {
      grid-template-columns: repeat(3, 1fr); /* 3 columnas en pantallas medianas */
  }
}

@media (max-width: 900px) {
  .contenedor-galeria-personalizado {
      grid-template-columns: repeat(2, 1fr); /* 2 columnas en pantallas pequeñas */
  }
}

@media (max-width: 600px) {
  .contenedor-galeria-personalizado {
      grid-template-columns: 1fr; /* 1 columna en pantallas móviles */
  }

  /* Ajuste del botón de acordeón en móviles */
  .contenedor-acordeon-flotante {
      width: 150px; /* Más pequeño en pantallas móviles */
  }

  .boton-acordeon-flotante {
      font-size: 16px;
  }
}

/*GALERIA2*/
/* Contenedor principal */
.mi-container {
  padding: 20px;
}

.mi-wrapper-principal {
  max-width: 1300px;
  margin: 0 auto;
}

/* Botones de filtro */
.mi-contenedor-botones-filtro {
  display: flex;
  flex-wrap: wrap; /* Permite que los botones pasen a otra fila si es necesario */
  justify-content: center; /* Asegura que estén centrados */
  gap: 15px;
  margin-top: 50px;
  margin-bottom: 50px;
  max-width: 1200px; /* Limita el ancho del contenedor */
  margin-left: auto; /* Centra horizontalmente */
  margin-right: auto;
}

.mi-boton-filtro {
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  background-color: white;
  border: 1px solid #435F3A;
  color: #121F0A;
  transition: all 0.3s ease;
  border-radius: 35px;
}

.mi-boton-filtro:hover {
  background-color: #DCECD6;
}

.mi-boton-filtro.active {
  background-color: #435F3A;
  color: white;
  border: none;
  border-radius: 35px;
}

/* Galería */
.mi-contenedor-galeria {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  justify-items: center;
}

.mi-item-galeria {
  border: 1px solid #435F3A;
  border-radius: 10px;
  overflow: hidden;
}

.mi-item-galeria img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.mi-item-galeria:hover img {
  transform: scale(1.1);
}

/* Información debajo de la imagen */
.mi-info-imagen {
  text-align: center;
  padding: 20px;
  background-color: #435F3A;
 /* height: 100px; */
}

.mi-info-imagen p {
  margin: 0;
  font-weight: bold;
  color: #0037A4;
  text-decoration: none;
  text-align: center;
}

.mi-info-imagen a {
  font-size: 15px;
  margin: 0;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.mi-info-imagen a:hover {
  text-decoration: underline;
}

/* Responsivo para la galería */
@media (max-width: 1200px) {
  .mi-contenedor-galeria {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .mi-contenedor-galeria {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .mi-contenedor-galeria {
    grid-template-columns: repeat(2, 1fr);
  }
  .mi-info-imagen a {
    font-size: 10px;
    margin: 0;
    font-weight: bold;
    color: white;
    text-decoration: none;
  }
  .mi-info-imagen {
    text-align: center;
    padding: 8px;
    background-color: #435F3A;
   /* height: 100px; */
  }
  .mi-info-imagen p {
    margin: 0;
    font-weight: bold;
    line-height: 11px;
    color: #0037A4;
    text-decoration: none;
    text-align: center;
  }
}

/* Responsivo para botones de filtro */
@media (max-width: 600px) {
  .mi-contenedor-botones-filtro {
    flex-direction: column; /* Apila los botones en columna */
    gap: 10px;
    align-items: center; /* Asegura que se centren verticalmente */
    margin-top: 20px;
  }

  .mi-boton-filtro {
    width: 100%; /* Botones ocupan todo el ancho disponible */
    max-width: 300px; /* Ancho máximo por botón */
    text-align: center;
  }
}


/**************************
  FORMULARIO CONTACTANOS
***************************/
/* Sección de contacto */
#section-correo {
  padding: 50px 20px;
  background-color: #fff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.contact-details {
  flex: 1;
  max-width: 45%;
  text-align: left;
}

.contact-details h2 {
  font-family: "Montserrat-Bold";
  font-size: 28px;
  color: #121F0A;
  margin-bottom: 20px;
}

.contact-details p {
  font-size: 16px;
  color: #435F3A; 
  margin-top: 10px;
  margin-bottom: 20px;
}

.contact-details a {
  color: #36A400;
  font-size: 25px;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.ver-distribuidores-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #EFA220;
  color: #fff;
  text-decoration: none;
}

.ver-distribuidores-btn:hover {
  background-color: #C32A26;
}

.contact-form {
  flex: 1;
  max-width: 45%;
}

.contact-form h2 {
  font-size: 28px;
  color: #0037A4;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #36A400;
  font-size: 16px;
  border-radius: 5px;
}

.contact-form button {
  background-color: #36A400;
  color: #fff;
  padding: 10px 20px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 30px;
  border-radius: 50px;
}

.contact-form button:hover {
  background-color: #435F3A;
  transition: 0.3s;
}

.contact-form label {
  font-size: 14px;
  color: #555;
  display: block;
  text-align: left;
  display: inline-flex; /* Mantiene el checkbox y el texto en una sola línea */
  align-items: center; /* Alinea verticalmente el texto con el checkbox */
  gap: 8px; /* Espacio entre el checkbox y el texto */
  white-space: nowrap; /* Evita que el texto se divida en varias líneas */
}

.contact-form label a{
  text-decoration: none;
  color: #36A400;
}

.contact-form label a:hover{
  color: #DCECD6; /* Cambia el color a amarillo al pasar el mouse */
}

/* Responsivo */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-details,
  .contact-form {
    max-width: 100%;
  }
}

/* Datos de contacto */

.contact-details hr {
  border: none;
  border-top: 1px dashed #36A400;
  margin: 10px 0;
}

.contact-details a:hover{
  text-decoration: none;
}

/*NOSOTROS*/
.section-title {
  font-family: "Montserrat-Bold";
  font-size: 45px;
  margin: 0;
  color: #121F0A; /* Color del título */
  font-weight: bold;
}

.section-text {
  font-size: 18px;
  margin: 0;
  color: #435F3A;
  padding-top: 18px;
  padding-left: 120px; 
  padding-right: 120px;   /*ambos padding edite*/
}

.section-proposito,
.section-vision,
.section-mision {
/*  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1200px;*/

  display: flex;
  flex-wrap: wrap;
  width: 100%; 
}

/* Sección Propósito */
.section-proposito {
  background-color: #DCECD6;
  justify-content: center;
}

.section-proposito .content {
  max-width: 1200px;
  padding: 2rem;
  text-align: center;
  padding-bottom: 80px;
  padding-top: 60px;
}

/* Sección Visión */
.section-vision {
  flex-direction: row;
}

.section-vision .text-content {
  background-color: #435F3A;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 /* padding: 2rem;*/
  text-align: center;
}

.section-vision .image-content {
  flex: 1;
  opacity: 0;  /* Inicialmente oculta */
  transform: translateX(100%);  /* Empuja la imagen hacia la derecha fuera de la vista */
  animation: slideInFromRight 1s forwards;  /* Llama a la animación 'slideInFromRight' */
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(100%);  /* Empuja la imagen completamente fuera de la vista a la derecha */
  }
  100% {
    opacity: 1;
    transform: translateX(0);  /* Mueve la imagen a su posición original */
  }
}

.section-vision .image-content img {
  width: 100%;
  height: auto;
}

/* Sección Misión */
.section-mision {
  flex-direction: row; /* Imagen a la izquierda y texto a la derecha en PC */
}

.section-mision .text-content {
  background-color: #36A400;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 /* padding: 2rem; */
  text-align: center;
}

.section-mision .image-content {
  flex: 1;
  opacity: 0;  /* Inicialmente oculta */
  transform: translateX(-100%);  /* Empuja la imagen hacia la izquierda fuera de la vista */
  animation: slideInFromLeft 1s forwards;  /* Llama a la animación 'slideInFromLeft' */
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);  /* Empuja la imagen completamente fuera de la vista a la izquierda */
  }
  100% {
    opacity: 1;
    transform: translateX(0);  /* Mueve la imagen a su posición original */
  }
}

.section-mision .image-content img {
  width: 100%;
  height: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-vision,
  .section-mision {
    flex-direction: column;
  }

  .section-vision .image-content,
  .section-mision .image-content {
    order: -1;
  }
  .section-text,
  .text-content {
    font-size: 16px;
    padding: 10px
  }
  .section-proposito .content{
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1024px) {
  .section-text,
  .text-content {
    font-size: 16px;
    padding: 10px
  }
}

 /*MARCAS*/
    .prefix-section-marcas {
      text-align: center;
      padding: 40px 20px 30px 20px;
      padding-top: ;
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .prefix-section-marcas-title {
    font-family: "Montserrat-Bold";
    color: #121F0A;
    font-size: 45px;
    margin-bottom: 10px;
  }
  
  .prefix-section-marcas-subtitle {
    font-family: "Inter";
    color: #435F3A;
    font-size: 23px;
    margin-bottom: 50px;
  }
  
  .prefix-section-marcas-carousel {
      overflow: hidden;
      position: relative;
  }
  
  .prefix-section-marcas-track {
      display: flex;
      transition: transform 0.5s ease;
  }
  
  .prefix-section-marcas-item {
      min-width: calc(100% / 6); /* Ajusta para mostrar 6 logos */
      box-sizing: border-box;
      flex-shrink: 0; /* Evita que los elementos se encojan */
      padding: 0 1px; /* Reduce aún más el padding para juntar más los logos */
  }
  
  .prefix-section-marcas-item img {
      width: auto;
      height: 80px; /* Ajusta la altura de los logos */
      max-width: 100%; /* Asegura que las imágenes no sean más anchas que su contenedor */
      margin: 0 auto; /* Centra las imágenes dentro del item */
  }
  
  .prefix-section-marcas-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      cursor: pointer;
      z-index: 10; /* Asegura que los botones estén por encima de los logos */
  }
  
  .prefix-section-marcas-btn img {
      width: 45px; /* Ajusta el tamaño de los iconos */
      height: auto;
  }
  
  .prefix-section-marcas-btn.prev {
      left: -37px;
  }
  
  .prefix-section-marcas-btn.next {
      right: -37px;
  }
  
  .prefix-section-marcas-nav {
      display: flex;
      justify-content: center;
      margin-top: 30px;
  }
  
  .prefix-section-marcas-dot {
      height: 12px;
      width: 12px;
      margin: 0 5px;
      background-color: #36A400;
      border-radius: 50%;
      display: inline-block;
      cursor: pointer;
  }
  
  .prefix-section-marcas-dot.active {
      background-color: #435F3A;
  }
  
  @media (min-width: 600px) {
      .prefix-section-marcas-item {
          min-width: 25%; /* Ajusta para mostrar 2 logos en pantallas más grandes 33.33% estaba */
      }
  }

  @media (max-width: 768px) {
    .prefix-section-marcas-title {
      font-size: 35px;
    }
    .prefix-section-marcas-subtitle {
      font-size: 20px;
    }

    .prefix-section-marcas-btn img {
      width: 40px; /* Ajusta el tamaño de los iconos */
      height: auto;
  }
  
  .prefix-section-marcas-btn.prev {
      left: -37px;
  }
  
  .prefix-section-marcas-btn.next {
      right: -37px;
  }
  }
  
  /*BOTONES*/
  /* Contenedor de los botones con Flexbox para centrar */
  .pajisa-btn-container {
    display: flex; /* Usamos Flexbox */
    justify-content: center; /* Centra los botones horizontalmente */
    gap: 20px; /* Añadimos espacio entre los botones */
    margin-top: 20px; /* Espacio superior */
  }

  /* Botón azul con hover verde */
  .pajisa-btn-azul {
    display: inline-block;
    padding: 10px 20px;
    background-color: #435F3A;
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    border: none;
    max-width: 250px; /* Ancho máximo ajustado */
    width: auto; /* El ancho será proporcional al contenido */
    box-sizing: border-box;
    transition: background-color 0.3s ease;
    border-radius: 50px;
  }

  .pajisa-btn-azul:hover {
    background-color: #36A400;
  }

  /* Botón verde con hover azul */
  .pajisa-btn-verde {
    display: inline-block;
    padding: 10px 20px;
    background-color: #36A400;
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    border-radius: 50px;
    border: none;
    max-width: 250px; /* Ancho máximo ajustado */
    width: auto; /* El ancho será proporcional al contenido */
    box-sizing: border-box;
    transition: background-color 0.3s ease;
  }

  .pajisa-btn-verde:hover {
    background-color: #435F3A;
  }

  .pajisa-btn-verdeizq {
    margin-top: 30px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #36A400;
    color: white;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    border: none;
    max-width: 250px; /* Ancho máximo ajustado */
    width: auto; /* El ancho será proporcional al contenido */
    box-sizing: border-box;
    transition: background-color 0.3s ease;

    /* Nueva regla para posicionar a la izquierda */
    float: left; /* Hace que el botón flote a la izquierda */
    margin-left: 0; /* Opcional: ajusta la separación desde el borde izquierdo */
}

.pajisa-btn-verdeizq:hover {
    background-color: #0037A4;
}


  /* Estilos responsive */
  @media (max-width: 600px) {
    .pajisa-btn-azul, .pajisa-btn-verde {
      padding: 12px 20px;
      font-size: 14px;
    }
  } 

/*NUESTRAS MARCAS*/
.marca-section {
  background-color: #f4f4f4;
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Estilos para cada marca */
.marca-section-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.marca-section-reverse {
  flex-direction: row-reverse; /* Intercambia el orden de la imagen y texto */
}

.marca-section-contenedor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 10px 0;
  flex-wrap: wrap;
}

.marca-section-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}

.marca-section-img:hover {
  transform: scale(1.1);
}

.marca-section-texto {
  flex: 1;
  padding-left: 80px;
  padding-right: 80px;
  text-align: left;
}

.marca-section-texto h2 {
  font-family: 'Montserrat-Bold';
  color: #435F3A;
  font-size: 35px;
  margin-bottom: 10px;
}

.marca-section-linea {
  width: 250px;
  height: 3px;
  background-color: #36A400;
  margin-bottom: 20px;
}

.marca-section-texto p {
  font-size: 16px;
  color: #555;
}

.marca-section-btn {
  font-size: 14px;
  padding: 10px 20px;
  background-color: #435F3A;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.marca-section-btn:hover {
  background-color: #36A400;
}

/* Línea punteada debajo de cada marca */
.marca-section-linea-punteada {
  border-bottom: 2px dotted #36A400;
  margin-top: 30px;
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  /* Disposición para dispositivos pequeños */
  .marca-section-contenedor {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .marca-section-reverse .marca-section-contenedor {
      flex-direction: column;
  }

  .marca-section-img {
      margin-bottom: 20px;
  }

  .marca-section-texto {
      text-align: center;
      padding-left: 0;
      padding-right: 0;
  }

  .marca-section-btn {
      margin: 20px 0;
  }

  /* Líneas punteadas más pequeñas en móviles */
  .marca-section-linea-punteada {
      margin-top: 20px;
  }
}

/*PAJISA CATEGORIAS*/
/* General styles */
.pajisa-categorias {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.pajisa-categorias .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

/* Category styles */
.category {
  position: relative;
  width: 350px;
  height: 350px;
}

.link-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none; /* Remove underline for links */
  color: inherit; /* Inherit text color */
}

.image-wrapper {
  width: 100%;
  height: auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay styles */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: rgba(67, 95, 58, 0.7); /* Green transparent overlay */
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column; /* Stack title and subtitle */
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.image-wrapper:hover .overlay {
  transform: translateY(0);
}

/* Text styles inside overlay */
.overlay .text h2 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
}

.overlay .text p {
  margin: 5px 0 0;
  font-size: 16px;
}

/* Responsive styles */
@media (max-width: 992px) { /* 2 images per row */
  .pajisa-categorias .container {
    justify-content: center;
  }
  .category {
    width: 45%; /* Adjusted to fit two per row with gap */
  }
}

@media (max-width: 576px) { /* 1 image per row */
  .pajisa-categorias .container {
    flex-direction: column;
    align-items: center;
  }
  .category {
    width: 100%; /* Full width */
    max-width: 350px; /* Keep images at original size */
  }
}

/*SUSCRIBETE*/
.section-suscribete {
  background-color: #DCECD6; /* Color naranja */
  width: 100%;
  padding: 40px 0;
  text-align: center;
}

.section-suscribete .contenedor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-suscribete h2 {
  font-family: "Montserrat-Bold";
  font-size: 45px;
  color: #121F0A;
  margin-bottom: 10px;
}

.section-suscribete p {
  color: #435F3A;
  font-size: 23px;
  margin-bottom: 40px;
}

#form-suscripcion {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
 /* justify-content: space-between;  */
}

#form-suscripcion input {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #435F3A;
  border-radius: 5px;
  width: 450px;
}

#form-suscripcion button {
  padding: 10px 20px;
  font-size: 1rem;
  color: white;
  background-color: #435F3A; /* Azul */
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#form-suscripcion button:hover {
  background-color: #36A400;
  /*border: 1px solid #0037A4;*/
}

#form-suscripcion button:active {
  background-color: #0037A4; /* Azul más oscuro */
  border: 1px solid #0037A4;

}

.privacidad {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #435F3A;
}

.privacidad a {
  color: #36A400;
  text-decoration: none;
}

.privacidad a:hover {
  color: #121F0A;
}


@media (max-width: 768px) {
  #form-suscripcion {
    flex-direction: column;
    align-items: center;
  }
  #form-suscripcion input {
    width: 300px;
}
.section-suscribete h2 {
  font-size: 35px;
}
.section-suscribete p {
  font-size: 20px;
}
}

/* Estilos del modal */
.modal {
  display: none; /* Ocultar por defecto */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4); /* Fondo semi-transparente */
}

.modal-content {
  background-color: white;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  border-radius: 8px;
  width: 80%;
  max-width: 400px;
  text-align: center;
}

.modal-content .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.modal-content .close:hover,
.modal-content .close:focus {
  color: black;
  text-decoration: none;
}


/*MARCAS PROPIAS INDEX*/
.intro-pajisa {
  display: flex;
 /*  max-width: 1200px; Se establece el ancho máximo de la sección */
  margin: 0 auto; /* Centra la sección */
  width: 100%;
  height: 500px; /* Fijamos una altura para que los elementos tengan la misma altura */
}

.intro-pajisa .texto,
.intro-pajisa .imagen {
  flex: 1; /* Ambos ocuparán el mismo espacio (50% del contenedor) */
  height: 100%; /* Asegura que tengan la misma altura */
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-pajisa .texto {
  background-color: #435F3A; /* Fondo azul */
  color: white;
  text-align: center;
  padding: 60px; /* Añade padding solo en los lados para mantener el texto centrado */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centra el texto verticalmente */
}

.intro-pajisa .texto h1 {
  font-family: "Montserrat-Bold";
  font-size: 45px;
  margin-bottom: 1rem;
  color: #DCECD6; /* Verde del título */
}

.intro-pajisa .texto h2 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.intro-pajisa .texto p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  padding-left: 40px;
  padding-right: 40px;
}

.intro-pajisa .texto button {
  background-color: #36A400;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  border-radius: 50px;
}

.intro-pajisa .texto button:hover {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.intro-pajisa .imagen img {
  width: 100%; /* Ajusta la imagen al ancho del contenedor */
  height: 100%; /* La imagen ocupa todo el alto disponible */
  object-fit: cover; /* Mantiene la proporción sin distorsionar */
}

/* Responsividad: Foto arriba y texto abajo */
@media (max-width: 768px) {
  .intro-pajisa {
      flex-direction: column; /* Cambia a columna en pantallas pequeñas */
      max-width: 100%; /* El ancho de la sección será 100% */
      height: auto; /* La altura ya no será fija, se ajusta al contenido */
  }

  .intro-pajisa .texto {
      flex: 1 1 100%; /* Ambos ocupan el 100% del ancho en pantallas pequeñas */
      padding: 1rem; /* Ajusta el padding para pantallas pequeñas */
  }

  .intro-pajisa .texto {
      padding: 20px; /* Un poco más de padding para mejor estética en móviles */
  }
  .intro-pajisa .texto p {
    padding-left: 10px;
    padding-right: 10px;
}
.intro-pajisa .texto h1 {
  margin-top: 30px;
  font-size: 35px;
}
.intro-pajisa .texto button {
  margin-bottom: 30px;
}

}

/*ACCODION FILTRO*/
.acordeon-filtro {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 16px;
  padding-bottom: 50px;
  padding-top: 30px;
}

.acordeon {
  flex: 1 1 calc(50% - 16px);
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.acordeon-header {
  width: 100%;
  padding: 16px;
  text-align: left;
  font-weight: bold;
  cursor: pointer;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#acordeon-categorias .acordeon-header {
  background-color: #435F3A;
  color: #fff;
}

#acordeon-marcas .acordeon-header {
  background-color: #36A400;
  color: #fff;
}

.acordeon-header .icon {
  font-size: 1.2rem;
}

.acordeon-content {
  display: none;
  padding: 16px;
  background-color: #fff;
}

.filter-btn {
  display: inline-block;
  margin: 4px;
  padding: 8px 16px;
  background: #fff;
  border: 2px solid #36A400;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  color: #007bff;
}

.filter-btn.active {
  background: #0037A4;
  color: #fff;
  border-color: #0037A4;
}

.filter-btn:hover {
  background: #f0f8ff;
}

/* Responsive styles */
@media (max-width: 768px) {
  .acordeon {
    flex: 1 1 100%;
  }
}

/*----------- ICONO WSP -----------*/

/* Back To Top */
#to-wsp {
	display: none;
	position: fixed;
	text-align: center;
	right: 100px;
	bottom: 30px;
	color: #fff;
	cursor: pointer;
	-webkit-border-radius: 2px;
			border-radius: 2px;
	z-index: 10000;
	height: 70px;
	width: 70px;
	line-height: 40px;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transition: background-color 0.1s linear;
			transition: background-color 0.1s linear;
  }
  
  #to-wsp::after{
	display: none;
	position: relative;
	content: '';
	background-color: white;
	color:black;
  }
  
  #to-wsp:hover::after{
	display: block;
	border-radius: 6px;
	position: absolute;
	width: 250px;
	height: 40px;
	top:10px;
	left:-250px;
	content: '¡Estamos aquí para ayudarte!';
	background-color: white;
	color:black;
  }
  
  body{
	position: relative;
  }
  .modal{
	width: 100%;
	height: 100%;
	background-color: rgb(0,0,0,.5);
	display: none;
	justify-content: center;
	align-items: start;
	position: absolute;
	z-index:50100;
  }
  
  .modal-content{
	top: 40px;
  }
  
  .redes{
	font-size: 18px;
	width: 20px;
	height: 20px;
  }
  
  .elemento {
	display: none;
  }
  
  .pagina-actual {
	display: block;
  }
  
  #paginacion {
	text-align: center;
  }

  /*Animación Pulse*/

  @keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

.pulse {
	width: 60px;
	height: 60px;
	/*background-color: #3498db;
	border-radius: 50%;*/
	animation: pulse 1s infinite;
}

@media (max-width: 768px) {
    #to-wsp {
      right: 10px;
      bottom: 30px;
      color: #fff;
      cursor: pointer;
      -webkit-border-radius: 2px;
      border-radius: 2px;
      z-index: 10000;
      height: 70px;
      width: 70px;
      line-height: 40px;
      }
  }
