/* CONTACT BLOG */
  .contact-block {
    background-color: rgba(60, 45, 30, 0.65);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #a67c52;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }

  .contact-block:hover {
    transform: translateY(-5px);
  }

  .map-frame iframe {
    border-radius: 0;
  }
/* CONTACT BLOG */

  .galeria-poetica {
    /*background: url('../images/portada.jpg') center center / cover no-repeat;*/
  }

  .gallery-thumb {
    height: 240px;
    position: relative;
    transition: transform 0.3s ease;
  }

  .gallery-thumb img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 0.75rem;
  }

  .gallery-thumb:hover {
    transform: scale(1.02);
  }

.poetic-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 250, 245, 0.85);
  padding: 0.5rem 1rem;
  font-family: 'Merriweather', serif;
  font-size: 0.9rem;
  color: #5e3c2b;
  border-bottom-left-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem;
}


      /* Contenedor de cada miniatura */
#libro-platillos .col {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Imagen miniatura */
.galeria-img-mini {
  width: 100%;
  height: 220px; /* puedes ajustar entre 200–250px según el ritmo visual */
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 0 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

/* Hover suave */
.galeria-img-mini:hover {
  transform: scale(1.02);
}


.texto-descriptivo {
  font-family: 'Merriweather', serif;
  font-size: 1rem;
  color: #4a3b2c;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.fondo-papel {
  background: url('../images/texturas/papel-artesanal.jpg') repeat;
  background-size: cover;
}

.titulo-modal {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: #7a4e2d;
}

.sombra-suave {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}


      /***/

    .slide-content h2,
  .slide-content p,
  .slide-content a {
    color: #fff !important;
  }
  .swiper-slide {
    position: relative;
  }

  .swiper-slide img {
    object-fit: cover;
  }

  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0.7));
    z-index: 1;
  }

  .slide-content {
    z-index: 2;
    text-shadow: 0 2px 6px rgba(0,0,0,0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
  }

  .swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
  }

  .btn-orange {
    background-color: #f57c00;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
  }

  .btn-orange:hover {
    background-color: #ef6c00;
    box-shadow: 0 0 10px rgba(255,140,0,0.6);
    transform: scale(1.05);
  }

  .custom-nav {
    color: #f57c00;
    --swiper-navigation-size: 30px;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-weight: bold;
  }

  /* 🧵 Estilo base para las tarjetas del blog */
.blog-card {
  background-color: rgba(30, 30, 30, 0.8); /* fondo oscuro semi-transparente */
  color: #fff;
  transition: all 0.4s ease;
  border-radius: 8px;
  overflow: hidden;
}

/* 🖱️ Hover suave */
.blog-card:hover {
  background-color: rgba(255, 140, 0, 0.9); /* naranja cálido al pasar el mouse */
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.3);
}

/* 📝 Texto dentro de la tarjeta */
.blog-card h5,
.blog-card span,
.blog-card .small {
  color: #fff !important;
}


/*CSS Para Card de experencias */
 /* Rosa mexicano */
.text-pink {
  color: #e83e8c;
}
.bg-pink {
  background-color: #e83e8c;
}
.border-pink {
  border-color: #e83e8c !important;
}

/* Sombra para texto */
.text-shadow-sm {
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.text-shadow-lg {
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* Imagen con efecto hover */
.img-hover {
  transition: transform 0.5s ease, filter 0.5s ease;
}
.img-hover:hover {
  transform: scale(1.05);
  filter: brightness(1.1) saturate(1.2);
}

/* Textura maya */
.card-texture {
  background-blend-mode: overlay;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Fondos temáticos */
.bg-gastronomia {
  background: linear-gradient(135deg, #d9480f, #f8cbb0);
  background-image: url('../images/textures/bordado-gastro.png');
}
.bg-ritual {
  background: linear-gradient(135deg, #6f42c1, #d6c1f0);
  background-image: url('../images/textures/piedra-ritual.png');
}
.bg-naturaleza {
  background: linear-gradient(135deg, #198754, #b2e3c0);
  background-image: url('../images/textures/hoja-naturaleza.png');
}

/* Botones bordados */
.btn-gastronomia {
  background-color: #fff;
  color: #d9480f;
  border: 2px dashed #d9480f;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-gastronomia:hover {
  background-color: #d9480f;
  color: #fff;
  box-shadow: 0 0 15px rgba(217, 72, 15, 0.4);
}

.btn-ritual {
  background-color: #fff;
  color: #6f42c1;
  border: 2px dashed #6f42c1;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-ritual:hover {
  background-color: #6f42c1;
  color: #fff;
  box-shadow: 0 0 15px rgba(111, 66, 193, 0.4);
}

.btn-naturaleza {
  background-color: #fff;
  color: #198754;
  border: 2px dashed #198754;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn-naturaleza:hover {
  background-color: #198754;
  color: #fff;
  box-shadow: 0 0 15px rgba(25, 135, 84, 0.4);
}

@media (max-width: 768px) {
  .blog-section {
    background-size: contain;
    background-position: top center;
    background-color: rgba(255, 255, 255, 0.8);
  }

    .btn-reserva {
    transition: all 0.3s ease;
    box-shadow: 0 0 0 transparent;
  }
  .btn-reserva:hover {
    background-color: #ffcc00;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
  }

  

