.hero-matrimonios {
  width: 100%;
  height: 55vh;
  overflow: hidden;
  position: relative;
}


.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(85%);
}

.content {
  padding: 2.5rem 1rem;
}

.content .container {
  max-width: 850px;
  margin: 0 auto;
}

.content h1 {
  font-size: 2.2rem;
  margin-bottom: 0.8rem;
  text-align: center;
  line-height: 1.2;
}

.content h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 300;
  color: #555;
}

.content p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 1.4rem;
  color: #444;
  text-align: left; /* clave */
}

.gallery .gallery-grid {
  display: grid;
  gap: 5px;
  grid-template-columns: repeat(4, 1fr);
}

.gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

@media (max-width: 768px) {
  .gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.volver-btn {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
}

.volver-btn:hover {
  background: #333;
}

.desaparece {
  display: none;
}
.extras {
  padding: 2.5rem 1rem;
  background-color: #f7f7f7;
}

.extras .container {
  max-width: 1100px;
  margin: 0 auto;
}

.extra-card {
  text-align: center;
}

.extra-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 6px;
}

.extra-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.extra-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.cta-matrimonios {
  padding: 3rem 1rem;
  background-color: #111;
  color: #fff;
}

.cta-matrimonios h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.cta-matrimonios p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #ccc;
}

.cta-matrimonios .botonx {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-matrimonios .botonx:hover {
  background: #ddd;
}
.venue-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.venue-card:hover{
    transform:translateY(-5px);
}

.venue-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.venue-card h3{
    font-size:1.1rem;
    margin-bottom:10px;
}