/* ===================================
   SECCIÓN DESCUBRE PANADERÍAS - SLIDER
   =================================== */

   /* Importar Slick CSS si no está cargado */
@import url('https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css');
@import url('https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css');




.wha-pulse::before {
    display: none;
}
 


/* Slider Wrapper - Más espacio */
.panaderias-slider-wrapper {
    position: relative;
    max-width: 1400px; 
    margin: 0 auto;
    padding: 20px 0 40px 0; /* Más padding vertical para las sombras */
}

/* Slider Container */
.panaderias-slider {
    margin: 0 20px;
    position: relative;
}

/* Slide Individual - Más padding para sombras */
.panaderia-slide {
    padding: 20px 15px; /* Aumentado el padding vertical */
    outline: none !important; 
}

.panaderia-slide:focus {
    outline: none !important;
}

/* Card de Panadería - Más ancha y espaciosa */
.panaderia-item {
    background: white;
    border-radius: 20px;
    overflow: visible; /* Cambiado de hidden a visible para las sombras */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); Sombra más pronunciada */
    box-shadow: 0px 0px 10.7px 2px #00000080;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex !important;
    flex-direction: row;
    padding: 25px; /* Más padding interno */
    gap: 25px; /* Más espacio entre imagen y contenido */
    align-items: center;
    min-height: 240px; /* Altura mínima aumentada */
    max-height: 240px;
    max-width: 550px; /* Ancho máximo por tarjeta */
    margin: 0 auto; /* Centrar tarjeta */
}

.panaderia-item:hover {
    transform: translateY(-8px); /* Más movimiento al hover */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18); /* Sombra más fuerte en hover */
}

/* Imagen de la Panadería - Más grande */
.panaderia-image {
    flex-shrink: 0;
    width: 180px; /* Aumentado */
    height: 180px; /* Aumentado */
    border-radius: 12px;
    overflow: hidden;
}

.panaderia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenido de la Panadería */
.panaderia-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px; /* Más espacio entre elementos */
}

.panaderia-content h3 {
    /* font-size: 1.4rem; */
    font-size: 21px;
    font-weight: 700;
    color: #000;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    line-height: 1.2;
}

.panaderia-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 5px 0;
}

.panaderia-direccion {
    color: #555;
    font-size: 18px;
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.panaderia-direccion i {
    font-size: 1.1rem;
    color: #d32f2f;
}

/* Botón Compartir */
.panaderia-compartir {
    margin-top: 10px;
}

.btn-compartir {
    background-color: #d32f2f;
    color: white !important;
    border: none;
    border-radius: 25px;
    padding: 10px 24px; /* Más padding */
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-compartir:hover {
    background-color: #b71c1c;
    color: white !important;
    transform: scale(1.05);
}

.btn-compartir i {
    font-size: 1.1rem;
}











/* ===================================
   SLICK SLIDER - DOTS/PAGINACIÓN CON NÚMEROS
   =================================== */

.panaderias-slider .slick-dots {
    position: relative;
    bottom: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
    list-style: none !important;
    padding: 0 !important;
    margin: 30px 0 0 0 !important;
}

.panaderias-slider .slick-dots li {
    margin: 0 !important;
    width: 38px;
    height: 38px;
    list-style: none !important;
    display: block;
}

.panaderias-slider .slick-dots li::before {
    content: none !important;
}

.panaderias-slider .slick-dots li button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #e0e0e0;
    border: 2px solid #e0e0e0;
    color: #666 !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1 !important;
}

/* IMPORTANTE: Ocultar el texto por defecto de Slick y mostrar el número */
.panaderias-slider .slick-dots li button:before {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
}

/* Estado activo */
.panaderias-slider .slick-dots li.slick-active button {
    background-color: #d32f2f !important;
    color: white !important;
    border-color: #d32f2f !important;
    transform: scale(1.15);
}

.panaderias-slider .slick-dots li button:hover {
    background-color: #d5d5d5;
    transform: scale(1.05);
}

.panaderias-slider .slick-dots li.slick-active button:hover {
    background-color: #b71c1c !important;
}

/* ===================================
   FOOTER - BOTÓN VER TODOS
   =================================== */

.panaderias-footer {
    margin-top: 25px;
    display: flex; 
    justify-content: space-between;
    padding: 0 20px;
    flex-direction: row;
    align-items: center;
}

.btn-ver-todos {
    background-color: #ffc1c1 !important;
    color: #d32f2f !important;
    padding: 12px 45px;
    border-radius: 30px;
    font-weight: 700 !important;
    font-size: 1rem;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-ver-todos:hover {
    background-color: #ffb0b0 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.3);
    color: #d32f2f !important;
    text-decoration: none !important;
}

.btn-ver-todos:focus,
.btn-ver-todos:active {
    color: #d32f2f !important;
    text-decoration: none !important;
}




/* ===================================
   Formularios
   =================================== */




   .container_formulario_ppl {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}



#formulario-tienda {
    background: white;
    color: black; 
    padding: 20px;
    /* padding: 10px 20px 20px 20px; */
    width: 95%;
    margin: auto; 
    max-width: 610px; 
    border-radius: 30px;
    font-size: 1.4rem;
    height: 1050px;
    /* height: 870px;  */
} 

#formulario-tienda input[type="text"],#formulario-tienda select,#formulario-tienda textarea,  #formulario-tienda input[type="email"] {
    width: 100%;
    background: #F0E9E4;
    color: #000;
    border: 0;
    min-height: 45px;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: 17px; 
}

#formulario-tienda .group-form {
    margin-bottom: 12px;
}
#formulario-tienda .group-form strong {
    display: block;
    margin-bottom: 5px;
    padding-left: 10px;
    font-family: Poppins;
}

#formulario-tienda label { 
    font-size: 18px;
    display: block;
    margin-bottom: 3px;
    font-family: Poppins;
    font-weight: 500; 
    padding-bottom: 5px;
}

#formulario-tienda ::placeholder {
    color: #93979A;
    opacity: 1;
}

#formulario-tienda ::-ms-input-placeholder {
    color: #93979A;
}

#formulario-tienda h3 {
    /* margin: 10px; */
    /* padding-top: 5px; */
    padding-bottom: 5px;
    font-family: Poppins;
    font-weight: 700;
    font-style: Bold;
    font-size: 30px;
    color: #CF1D1D;
}

#formulario-tienda button {
    width: 100%;
    display: block;
    text-align: center;
    padding: 8px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all .5s;
    border: 3px solid #CF1D1D;
    background-color: #fff;
    color: #CF1D1D;
    margin-top: 10px;
}

#formulario-tienda textarea {
    min-height: 85px;
    padding: 5px 15px;
    border-radius: 15px;
     resize: none;
}

label.imagen-form {
    height: 145px;
    background: #F0E9E4;
    border: 1px dashed white;
    margin-top: 10px;
    border-radius: 7px;
    padding: 0!important;
    position: relative;
    text-align: center;
}

#formulario-tienda input[type=file] {
    outline: 0;
    opacity: 0;
    pointer-events: none;
    user-select: none;
}

#formulario-tienda select option {
    background: #292c2e;
}

i.icon-imagen-form {
    width: 60px;
    height: 55px;
    background-image: url(https://www.levapan.com/wp-content/uploads/2026/02/add_photo.svg);
    display: inline-block;
    margin-top: 11px;
}

label.imagen-form strong {
    display: block;
    border-radius: 30px;
    border: 2px solid #A5A5A5;
    padding: 7px;
    max-width: 210px;
    margin: auto;
    font-size: 10px;
}

#formulario-tienda input.input-error {
    border: 1px solid red!important;
}

#formulario-tienda .span-error {
    color: red;
    font-size: 12px;
}

label.imagen-form.error-image {
    border-color: red;
}

label.imagen-form.active {
    background: #62c76647;
}

label.imagen-form strong span {
    display: inline-block;
    width: 20px;
    height: 18px;
    background-image: url(https://www.levapan.com/wp-content/uploads/2026/02/upload.svg);
    margin-left: 6px;
    position: relative;
    top: 3px;
}

label.imagen-form .span-error {
    position: absolute;
    left: 0;
    bottom: -18px;
}

.contenedor-imagenes-postulacion {
    display: flex;
    flex-flow: wrap;
    gap: 15px;
}

#respuesta-envio-formulario {
    padding: 10px;
    font-size: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#respuesta-envio-formulario img {
    width: 45px;
}

.cuadro-postulacion {
    min-height: 320px;
    width: 48.2%;
    background-color: blue;
    border-radius: 20px;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}


.cuadro-postulacion.texto-postulacion h3 {
    max-width: 250px;
    font-size: 2.4rem;
}

.cuadro-postulacion.texto-postulacion:before,.cuadro-postulacion.texto-postulacion:after {
    content: "";
    position: absolute;
    width: 45px;
    height: 45px;
    background-position: center;
    background-repeat: no-repeat;
}

.cuadro-postulacion.texto-postulacion:before {
    left: 27px;
    top: 40px;
}

.cuadro-postulacion.texto-postulacion:after {
    right: 27px;
    bottom: 40px;
}

@media(min-width: 768px) {
    .group-div2-form {
        display:flex;
        gap: 10px;
        flex-flow: wrap;
    }

    .group-div2-form .group-form {
        width: 48%;
    }
}

#formulario-tienda button:hover {
    background: #CF1D1D;
    color: #fff;
}


/* parte imgnario */


.container_formulario_ima {
    width: 45%;
    display: flex; 
    flex-direction: column;
    gap: 15px;
}  

.container_formulario_blanco {
    display: flex;
    flex-direction: row;
    /* flex-wrap: wrap; */
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
}

.container_formulario_blanco div {
    background-color: #fff;
    width: 50%;
    border-radius: 30px;
    /* height: 210px; */
    height: 170px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.container_formulario_blanco div.container_formulario_texto_3_rojo {
    background-color: #fff;
    width: 100%;
    border-radius: 30px;
    /* height: 210px; */
    height: 170px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 15px;
}
 
.container_formulario_imagen img {
    width: 100%;  
    /* height: 490px; */
    height: 670px;
    /* object-fit: cover;  */
    border-radius: 25px;
}     

.container_formulario_texto_1 p {
    font-family: Poppins;
    font-weight: 600;
    /* font-style: Bold; */
    font-size: 28px;
    line-height: 25px;
}

.container_formulario_texto_2_rojo p {
    font-family: Poppins;
    font-weight: 600;
    color: #000000;
    font-family: Poppins;
    font-size: 28px;
    line-height: 35px;
}

.span_70 {
    /* font-style: Bold; */
    font-size: 60px;
    color: #CF1D1D;
}

.span_anos {
    /* font-style: Bold; */
    font-size: 38px;
    color: #CF1D1D;
}

 

/* ========================================
   ESTILOS SOLO PARA CHECKBOXES
======================================== */

.group-form-checks {
    margin: 10px 0;
    display: flex;
    gap: 20px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
    flex: 1;
}
.checkbox-container a {
    color: black;
}

/* Ocultar checkbox nativo */
.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Cuadro personalizado del checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    border: 2px solid #CF1D1D;
    border-radius: 4px;
    background-color: white;
    transition: all 0.3s ease;
}

/* Hover en el checkbox */
.checkbox-container:hover .checkmark {
    border-color: #a01515;
}

/* Cuando está marcado */
.checkbox-container input:checked ~ .checkmark {
    background-color: #CF1D1D;
    border-color: #CF1D1D;
}

/* Checkmark (✓) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Mostrar checkmark cuando está marcado */
.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Estilo del checkmark (✓) */
.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Texto del checkbox */
.checkbox-container span:not(.checkmark) {
    color: #333;
    line-height: 1.4;
}

/* Link de política de privacidad */
.checkbox-container a {
    /* color: #CF1D1D; */
    text-decoration: underline;
}

.checkbox-container a:hover {
    color: #a01515;
}

/* Mensaje de error para checkboxes */
.error-check {
    color: #CF1D1D;
    font-size: 12px;
    display: none;
    margin-top: 5px;
}

/* Responsive - una columna en móvil */
@media (max-width: 768px) {
    .group-form-checks {
        flex-direction: column;
        gap: 15px;
    }
}







/* Contenedor de filtros */
.filtros-mapa {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Filtros de departamentos */
.filtros-departamentos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.filtro-btn {
    background: #f5f5f5;
    color: #333;
    border: 2px solid transparent;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filtro-btn:hover {
    background: #e8e8e8;
    transform: translateY(-2px);
}

.filtro-btn.active {
    background: #CF1D1D;
    color: white;
    border-color: #CF1D1D;
}

/* Buscador */
.buscador-mapa {
    display: flex;
    justify-content: center;
}

.buscador-mapa input {
    width: 100%;
    max-width: 500px;
    padding: 12px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.buscador-mapa input:focus {
    border-color: #CF1D1D;
}

/* Responsive */
@media (max-width: 768px) {
    .filtros-mapa {
        padding: 15px;
    }
    
    .filtro-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}


/* seccion explora también */

 
    .bloques-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 16px;
    }

    .bloque {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      height: 160px;
      background-image: url('https://www.levapan.com/wp-content/uploads/2026/02/img_recetas.png');
      background-size: cover;
      background-position: center;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .bloque::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.75); /* capa blanca como en tu diseño */
      transition: background 0.3s ease;
    }

    .bloque:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .bloque:hover::before {
      background: rgba(255, 255, 255, 0.6);
    }

    .bloque span {
      position: relative;
      z-index: 1;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 26px;
      font-weight: 700;
      color: #e30613; /* rojo */
      /* font-family: Arial, sans-serif; */
      letter-spacing: 0.5px;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .bloques-container {
        grid-template-columns: 1fr;
      }

      .bloque {
        height: 120px;
      }
    }



 
  
/* ========================================
   SECCIÓN LO ÚLTIMO 
   ======================================== */

section.section_lo_ultimo {
    padding: 35px 0;
    background-color: #fff;
    position: relative;
}

.container_lo_ultimo {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header_lo_ultimo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    padding: 0 22px;
}

.header_lo_ultimo h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 700;
    color: #CF1D1D;
    margin: 0;
    flex: 0 0 auto;
}

.header_lo_ultimo h2::after {
    content: '...';
}

.header_lo_ultimo .nav-arrows { 
    display: flex;
    gap: 12px;
    flex: 0 0 auto;
}

.header_lo_ultimo .nav-arrows button {
    width: 50px;
    height: 50px;  
    border-radius: 50%;
    background: #CF1D1D;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center; 
    justify-content: center;
    transition: all 0.3s ease;
    /* top: 90px;
    right: 36px; */
    top: 11%;
    /* right: 3%; */
}



button.slick-next.slick-arrow {
      right: 4%;
       /* right: 36px; */
}
button.slick-prev.slick-arrow {
    left: 86%;
}

.slick-prev:before, .slick-next:before {
    content: '';
}




/* .header_lo_ultimo .nav-arrows button:hover {
    background: #a01515;
    transform: scale(1.05);
} */

.header_lo_ultimo .nav-arrows button img {
    width: 19px;
    /* height: 15px; */
    filter: brightness(0) invert(1);
}
 
/* .header_lo_ultimo .nav-arrows button.slick-prev img { 
    transform: rotate(180deg);
    transform: rotate(88deg);
} */

/* Slider */
.slider_lo_ultimo {
    margin-bottom: 40px;
}

.slider_lo_ultimo  .slick-list.draggable {
    padding-bottom: 15px;
}
 
/* Tarjeta de post */
.post-card {
    margin: 0 15px;
    position: relative;
    background: white;
    border-radius: 20px;
    border: 1px solid #ddd;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: auto;
}

.post-card:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

/* Imagen del post */
.post-card__image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contenido del post */
.post-card__content {
    padding: 25px;
    position: relative;
}

.post-card__title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #CF1D1D;
    line-height: 1.3;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 52px;
}

.post-card__category {
    display: inline-block;
    background: #f5f5f5;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666;
}

.post-card__category-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

/* Botones al lado de la categoría */
.post-card__actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    flex-shrink: 0;
}

.post-card__btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: white;
    border: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.post-card__btn:hover {
    transform: scale(1.1);
    border-color: #CF1D1D;
}

.post-card__btn img {
    width: 16px;
    height: 16px;
}

/* Botón expandir (rojo) */
.post-card__btn--expand {
    background: #CF1D1D;
    border-color: #CF1D1D;
}

.post-card__btn--expand:hover {
    background: #a01515;
    border-color: #a01515;
}

.post-card__btn--expand img {
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.post-card.expanded .post-card__btn--expand img {
    transform: rotate(90deg);
}

/* Menú de compartir */
.share-menu {
    position: absolute;
    bottom: 48px;
    right: 0;
    background: white;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid #ddd;
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 8px;
    z-index: 100;
}

.share-menu.show {
    display: flex;
}

.share-menu button {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.share-menu button img {
    width: 18px;
    height: 18px;
}

.share-menu button:hover {
    transform: scale(1.1);
}

.share-menu button.share-x { background: #fff; }
.share-menu button.share-x img {
    height: 35px;
    width: 35px;
    border-radius: 25px;
}
/* .share-menu button.share-facebook { background: #1877F2; } */
/* .share-menu button.share-linkedin { background: #0A66C2; } */
.share-menu button.share-whatsapp { background: #25D366; }
.share-menu button.share-telegram { background: #0088cc; }

/* Contenido expandible */
.post-card__excerpt {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 0;
}

.post-card.expanded .post-card__excerpt {
    max-height: 250px;
    margin-top: 15px;
    padding-bottom: 10px;
}

.post-card__excerpt p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Contenedor del botón mostrar más */
.container-btn-mostrar-mas {
    /* background: #F0E9E4; */
    padding: 15px 0;
    text-align: center;
}

/* Botón mostrar más */
.btn-mostrar-mas {
    display: inline-block;
    /* background: #CF1D1D; */
    background: #F0E9E4;
    color: #CF1D1D;
    border: none;
    padding: 15px 50px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-mostrar-mas:hover {
    background: #a01515;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(207, 29, 29, 0.3);
    color: #fff;
}
 
/* Responsive */
@media (max-width: 768px) {
    .header_lo_ultimo h2 {
        font-size: 36px;
    }
    
    .post-card__image {
        height: 180px;
    }
    
    .post-card__title {
        font-size: 18px;
    }
    
    .post-card__content {
        padding: 20px; 
    }
} 




/* ========================================
   Preguntas Frecuentes
   ======================================== */












   


@media (min-width: 1500px)  {


 button.slick-next.slick-arrow {
      right: 14%;
}
button.slick-prev.slick-arrow {
   left: 79%;
}


/* FORMULARIO  */

.container_formulario_ima {
    width: 33%;
    display: flex; 
    flex-direction: column;
    gap: 15px;
}  
.container_formulario_imagen img {
    height: 100%;
}

   .container_formulario_ppl {
    gap: 65px;
}

/* .span_70 {
    font-size: 95px;
} */

.span_anos { 
    font-size: 42px;
}

#formulario-tienda h3 {
    padding-top: 2px;
}


#formulario-tienda {  
    height: 1050px;
} 

 

/* lo ultimo  */

section.section_lo_ultimo {
    padding: 60px 0;
}


/* PREGUNTAS FRECUENTES  */


section.section_faq {
    padding: 40px 0;
}



.faq-titlee {
    font-size: 75px!important;
}


.faq-list {
    gap: 10px;
}


.faq-question {
    padding: 15px 25px!important;
}

 

} 
  
 



 


@media (max-width: 768px) {

    section.section_titulo {
        padding: 0;
    }

 .container_titulo {
    flex-direction: column;
    gap: 30px;
}

.container_titulo div {
    width: 100%!important;
    text-align: center;
}

.container_titulo div h2 {
    font-size: 40px!important;
    line-height: 45px!important;
    padding: 0 20px;
}

.container_titulo div p {
    padding: 0 20px!important;
}

.container_negocios_consumidores {
        gap: 80px!important;
}

    .subtitle {
        font-size: 20px!important;
    } 




    /* descubre panaderias  */

section.section_descubre_panaderias {
        padding: 10px 0!important;
}
    .panaderia-item {
        padding: 15px;  
    }

.panaderia-slide {
    padding: 20px 14px;
}

 
.panaderia-content h3 {
    font-size: 20px; 
}

.panaderia-item {
    gap: 15px;
}
.panaderia-image {
    width: 160px; 
    height: 180px; 
}
  
.panaderia-direccion {
    text-align: center; 
}

/* formulaio      */ 

.container_formulario_ppl {
    flex-direction: column;
}

.container_formulario_ima {
    width: 90%;
    gap:  15px;
}


.container_formulario_blanco {
    flex-direction: column;
}

.container_formulario_blanco div {
        width: 100%;
} 

/* .container_formulario_imagen img { 
    display: none;
} */
.div_2_oculto_movil {
    display: none!important;

}
.container_formulario_imagen img {
    object-fit: contain;
}
.container_formulario_texto_1 p {
      font-size: 35px;
      line-height: 34px;
}

#formulario-tienda {
    max-width: 430px;
    /* height: 1025px; */
    height: 1240px;
}

.span_70 {
    font-size: 50px;
}
.span_anos {
    font-size: 35px;
}

.container_formulario_texto_2_rojo p {
    font-size: 35px;
    line-height: 35px; 
}

.panaderia-content {
    align-items: center;
}


/* lo ultimo  */


.slider_lo_ultimo {
 margin-bottom: 65px;
}


.header_lo_ultimo .nav-arrows button {
    width: 45px;
    height: 45px;
}


.header_lo_ultimo .nav-arrows button {
    top: 77%;
}
button.slick-prev.slick-arrow {
    left: 35%;
}

button.slick-next.slick-arrow {
    right: 38%;
}

.header_lo_ultimo .nav-arrows .slick-arrow {
display: flex !important;
}



  
 



/* preguntas frecuentes  */

section.section_faq {
padding: 10px 0!important;
}

.faq-container {
    flex-direction: column!important;
}
 
.faq-container {
    max-width: 350px; 
}
.faq-question h3 {
 text-align: left!important;
}

.faq-list,
.bloques-container {
    padding: 0 15px!important;
}
 

/* .wha-icon-wrapper {
    display: none!important;
} */


} 


 
