/* =====================================================
   GUÍA MATRIMONIOS JUDÍOS - ESTILOS COMPLETOS
   ===================================================== */

/* HERO */
.hero-matrimonios {
  position: relative;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 62vh;
  object-fit: cover;
  display: block;
}

/* INTRO */
.intro {
  padding: 5rem 0 4rem;
}

.intro h1 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.content-narrow {
  max-width: 850px;
  margin: 0 auto;
}

.content-narrow p {
  font-size: 1.08rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: #444;
}

.content-narrow .lead {
  font-size: 1.22rem;
  color: #222;
  font-weight: 500;
}

/* TABLA DE MOMENTOS */
.tabla-momentos {
  background: #f9f6f2;
  border-radius: 20px;
  overflow: hidden;
}

.tabla-momentos table {
  width: 100%;
  border-collapse: collapse;
}

.tabla-momentos th,
.tabla-momentos td {
  padding: 1rem 1.2rem;
  text-align: left;
  border-bottom: 1px solid #e8ddd0;
  vertical-align: top;
}

.tabla-momentos th {
  background: #e8ddd0;
  font-weight: 600;
  color: #2c1810;
}

.tabla-momentos tr:last-child td {
  border-bottom: none;
}

/* TARJETAS DE TRADICIONES */
.tradicion-card {
  background: white;
  border-radius: 16px;
  padding: 1.8rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.2s ease;
  height: 100%;
}

.tradicion-card:hover {
  border-color: #c9a87b;
  transform: translateY(-4px);
}

.tradicion-icono {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tradicion-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #2c1810;
}

.tradicion-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* TARJETAS DE MOMENTOS (BADEKEN/YIJUD) */
.momento-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}

.momento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.1);
}

.momento-header {
  background: #f5f0eb;
  padding: 1.2rem 1.5rem;
  border-bottom: 2px solid #e8ddd0;
}

.momento-header h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c1810;
}

.momento-tag {
  font-size: 0.8rem;
  color: #8b7355;
  letter-spacing: 1px;
  font-weight: 500;
  display: block;
  margin-bottom: 0.3rem;
}

.momento-body {
  padding: 1.5rem;
}

.momento-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 1rem;
}

/* TIPS DE DECORACIÓN */
.deco-tip {
  background: #f9f6f2;
  padding: 1rem;
  border-radius: 12px;
  margin-top: 1rem;
  border-left: 4px solid #c9a87b;
}

.deco-tip strong {
  color: #2c1810;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.deco-tip p {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
}

/* TARJETAS DE ELEMENTOS (FLORES) */
.elemento-card {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  transition: all 0.2s;
  height: 100%;
}

.elemento-card:hover {
  transform: translateY(-4px);
}

.elemento-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1rem;
}

.elemento-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c1810;
}

.elemento-card p {
  font-size: 0.9rem;
  color: #666;
}

/* TARJETAS DE PRECIOS */
.card-precio {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #eee;
}

.card-precio:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.card-precio.destacado {
  border: 2px solid #c9a87b;
  transform: scale(1.02);
}

.card-precio-header {
  background: #2c1810;
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
}

.card-precio-precio {
  background: #f9f6f2;
  padding: 1.2rem;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c1810;
}

.card-precio-body {
  padding: 1.5rem;
}

.card-precio-body ul {
  margin: 0;
  padding-left: 1.2rem;
}

.card-precio-body li {
  margin-bottom: 0.5rem;
  color: #555;
  font-size: 0.9rem;
}

/* GALERÍA */
.gallery-img {
  border-radius: 16px;
  transition: transform 0.3s ease;
  cursor: pointer;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.gallery-img:hover {
  transform: scale(1.02);
}

/* GUÍAS RELACIONADAS */
.guia-card {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  background: white;
  height: 100%;
}

.guia-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.guia-card img {
  height: 160px;
  object-fit: cover;
  width: 100%;
}

.guia-card-body {
  padding: 1.2rem;
}

.guia-card-body h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c1810;
}

.guia-card-body p {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.guia-card-body span {
  font-size: 0.85rem;
  color: #c9a87b;
  font-weight: 500;
}

/* ACCORDION FAQ */
.accordion-button {
  font-weight: 600;
  padding: 1.2rem;
  background: white;
}

.accordion-button:not(.collapsed) {
  background: #f9f6f2;
  color: #2c1810;
}

.accordion-body {
  padding: 1.5rem;
  background: #fefcf9;
}

/* CTA */
.cta-section {
  padding: 4rem 2rem;
  background: #2c1810;
  border-radius: 24px;
  margin: 2rem 0;
  text-align: center;
}

.cta-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: white;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.boton-cta {
  display: inline-block;
  padding: 14px 32px;
  background: #c9a87b;
  color: #2c1810;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.boton-cta:hover {
  background: #dbba96;
  transform: translateY(-2px);
  color: #2c1810;
}

/* BOTONES VOLVER */
.boton-volver {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid #ddd;
  color: #555;
  text-decoration: none;
  border-radius: 30px;
  margin: 0 0.5rem;
  transition: all 0.2s;
}

.boton-volver:hover {
  border-color: #c9a87b;
  background: #f9f6f2;
  color: #2c1810;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-img {
    height: 40vh;
  }
  
  .intro {
    padding: 2.5rem 0;
  }
  
  .intro h1 {
    font-size: 1.8rem;
  }
  
  .content-narrow p {
    font-size: 1rem;
  }
  
  .content-narrow .lead {
    font-size: 1.08rem;
  }
  
  .tabla-momentos th,
  .tabla-momentos td {
    padding: 0.8rem;
    font-size: 0.85rem;
  }
  
  .cta-section {
    padding: 2.5rem 1.5rem;
  }
  
  .cta-section h3 {
    font-size: 1.4rem;
  }
  
  .momento-header h3 {
    font-size: 1.2rem;
  }
  
  .gallery-img {
    height: 160px;
  }
  
  .card-precio.destacado {
    transform: none;
  }
}

@media (max-width: 576px) {
  .table-responsive {
    display: block;
    overflow-x: auto;
  }
  
  .hero-img {
    height: 35vh;
  }
  
  .intro h1 {
    font-size: 1.5rem;
  }
  
  .tradicion-card {
    padding: 1.2rem;
  }
  
  .tradicion-icono {
    font-size: 2rem;
  }
  
  .card-precio-precio {
    font-size: 1.2rem;
  }
}