/* ===== VARIABLES ===== */
:root {
  --bg-dark: #0b0b0d;
  --bg-header: rgba(12, 12, 15, 0.72);
  --text-light: #f3efe9;
  --text-muted: #cfc8bf;
  --accent: #b48a34;      /* dorado */
  --accent-light: #d7b56c;
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== FUENTES ===== */


/* ===== BASE ===== */
html, body {
  
  background: var(--bg-dark);
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== TITULOS ===== */


h1 ,h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--accent);
  margin: 0;
}

p{
  font-family: "Nunito", sans-serif;
}

a{
  text-decoration: none;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: rgba(9, 9, 10, 0.6);
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-family: "Inter", sans-serif;;
}

.social-links img {
  width: 22px;
  height: 22px;
  transition: transform .25s ease, filter .25s ease;
  filter: grayscale(.9) brightness(.95);
}
.social-links a:hover img {
  transform: scale(1.15);
  filter: grayscale(0) brightness(1.1);
}

/* ===== HEADER / NAVBAR ===== */
header {
  background: var(--bg-header);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  position: sticky;
  top: 0;
  z-index: 120;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}
.logo img {
  width: 90px;
  height: auto;
  background-color: white; /* mantiene el fondo blanco */
  border-radius: 8px; /* bordes suaves */
  padding: 5px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4); /* halo de luz */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



/* NAV LINKS */
nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 1000;
  letter-spacing: .2px;
  transition: color .18s ease;
  font-family: "Inter", sans-serif;
}
nav a:hover {
  color: var(--accent-light);
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 1.9rem;
  color: var(--text-light);
  cursor: pointer;
}
/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url(imagenes/fondojaime.webp);
   background-repeat: no-repeat;  /* no repetir la imagen */
  background-size: cover;        /* que ocupe toda la pantalla */
  background-position: center;   /* centrada */
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* ligeramente más oscuro */
  z-index: 0; /* 👈 IMPORTANTE: debajo del contenido */
}
/* VIDEO */
video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(60%) contrast(105%) saturate(95%);
  transform-origin: center;
}

.logo-jaime {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 460px;
  height: auto;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 3;
  isolation: isolate;
  filter: brightness(1.2) contrast(1.1)
          drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
}
/* Tablets y pantallas medianas */
@media (max-width: 992px) {
  .logo-jaime {
    max-width: 340px;
  }
}

/* Celulares */
@media (max-width: 600px) {
  .logo-jaime {
    max-width: 260px; /* más chico para no ocupar toda la pantalla */
  }
}


/* OVERLAY */
.overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.75) 100%);
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 820px;
  padding: 18px;
}

/* ===== TÍTULO TIPO LOGO ===== */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:wght@600&family=Montserrat:wght@700&display=swap');

.hero-content .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.05;
  margin-bottom: 24px;
}

/* Contenedor Don + Jaime en una línea */
.title .linea-principal {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
}



.eventotexto {
  font-family: "Nunito", sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 5px;
  margin-top: -45px;
  margin-left: 120px;
  color: white;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6); /* brillo blanco suave */

}

/* ===== SUBTITULO ===== */
.subtitle {
  font-family: "Nunito", sans-serif;
  color: var(--text-muted);
  font-weight: 400;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  margin-top: 12px;
  margin-bottom: 18px;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  color: white;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6); /* brillo blanco suave */
}

/* ===== BOTÓN CTA ===== */
.cta {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  color: #060607;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  box-shadow: 0 8px 28px rgba(180, 138, 52, 0.12), inset 0 -2px 0 rgba(0, 0, 0, 0.12);
  transition: transform .22s ease, box-shadow .22s ease;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}

.cta:focus {
  outline: 3px solid rgba(180, 138, 52, 0.16);
  outline-offset: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  header {
    padding: 12px 18px;
  }

  .top-bar {
    padding: 6px 12px;
    font-size: 13px;
  }

  .hero-content .title {
    margin-bottom: 18px;
  }

  .jaime {
    font-size: clamp(3rem, 9vw, 4.6rem);
  }
}

@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: rgba(8, 8, 10, 0.95);
    width: 220px;
    padding: 16px;
    flex-direction: column;
    gap: 12px;
  }

  nav.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  

  .eventotexto {
    font-size: 1rem;
    letter-spacing: 3px;
  }

  .subtitle {
    font-size: .98rem;
  }
}




/* ======== SECCIÓN EVENTOS ======== */
.eventos {
  background-color: #0a0a0a;
  padding: 100px 40px;
  text-align: center;
  color: #f3f3f3;
}

.eventos-header {
  margin-bottom: 70px;
}

.eventos-header h1 {
  font-family: 'Cormorant Garamond', serif;
  color: #b48a34;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.1;
  
  margin-bottom: 0.6rem;
  transition: all 0.4s ease;
}

.eventos-header h1:hover {
  
  text-shadow: 0 0 35px rgba(255, 215, 100, 0.4);
}

.eventos-header h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #b48a34;
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1.2px;
}

.eventos-header p {
  font-family: "Nunito", sans-serif;
  color: #d6d6d6;
  font-size: 1.1rem;
}

/* ======== GRID ======== */
.eventos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
}

/* ======== TARJETAS ======== */
.evento-card {
  background: #111;
  border: 1px solid rgba(199, 164, 73, 0.3);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  cursor: pointer;
}

.evento-card:hover {
  transform: translateY(-6px);
  border-color: #c7a449;
  box-shadow: 0 0 20px rgba(199, 164, 73, 0.3);
}

/* ======== MEDIA ======== */
.evento-media {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.evento-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: transform 0.3s ease;
}



.evento-media:hover video {
  transform: scale(1.05);
}

/* ======== TEXTOS ======== */
.evento-card h3 {
  font-family: 'Cormorant Garamond', serif;
  color: #c7a449;
  font-size: 1.3rem;
  margin: 20px 0 10px;
}

.evento-card p {
  font-family: "Nunito", sans-serif;
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
  padding: 0 15px 25px;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .eventos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .eventos-grid {
    grid-template-columns: 1fr;
  }

  .evento-media {
    height: 200px;
  }

  .eventos-header h2 {
    font-size: 2rem;
  }
}


@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* ======== SECCIÓN PRINCIPAL ======== */
/* ===== SECCIÓN ASESOR DE VENTA ===== */
.puntosVenta-section {
  background-color: #000;
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.puntosVenta-titulo {
  font-size: 2.2rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

/* ===== GRID ===== */
.puntosVenta-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* ===== TARJETAS ===== */
.puntoCard {
  position: relative;
  width: 260px;
  background-color: #111;
  border: 1px solid #d4af37;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.puntoCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.puntoCard img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.puntoCard:hover img {
  transform: scale(1.05);
}

/* ===== INFO ===== */
.puntoCard-info {
  background-color: #111;
  padding: 20px 10px;
}

.puntoCard-nombre {
  font-size: 1.1rem;
  color: #d4af37;
  font-weight: 700;
  margin-bottom: 5px;
}

.puntoCard-ubicacion {
  font-size: 0.95rem;
  color: #ccc;
}

/* ===== OVERLAY (REDES) ===== */
.puntoCard-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.puntoCard:hover .puntoCard-overlay {
  opacity: 1;
}

.puntoCard-redes a {
  color: #d4af37;
  margin: 0 10px;
  font-size: 1.4rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.puntoCard-redes a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .puntosVenta-grid {
    gap: 20px;
  }

  .puntoCard {
    width: 80%;
    max-width: 320px;
  }

  .puntoCard img {
    height: 300px;
  }
}


.puntoCard-redes a {
  color: #d4af37;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.puntoCard-redes a:hover {
  color: #fff;
  transform: scale(1.2);
}



.servicios {
  background: linear-gradient(180deg, #000 0%, #111 100%);
  color: #d4af37;
  text-align: center;
  padding: 90px 20px;
}



.titulo {
  font-size: 2.8rem;
  
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
}
.titulo::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background-color: #d4af37;
  margin: 15px auto 0;
  border-radius: 3px;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto 60px;
}

.servicio {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 20px;
  padding: 40px 25px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 0.8s forwards;
}
.servicio:hover {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-8px);
}

.icono-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, #d4af37 0%, #9a7b24 90%);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  animation: brillo 3s infinite ease-in-out;
}
.icono-wrap i {
  font-size: 1.8rem;
  color: #000;
}

.servicio h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.servicio p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Botón */
.boton-servicios {
  display: inline-block;
  background-color: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}
.boton-servicios:hover {
  background-color: #d4af37;
  color: #000;
  box-shadow: 0 0 10px #d4af37;
}

/* Animaciones */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes brillo {
  0%, 100% { box-shadow: 0 0 10px rgba(212,175,55,0.6); }
  50% { box-shadow: 0 0 25px rgba(212,175,55,0.9); }
}

/* Móviles */
@media (max-width: 600px) {
  .titulo { font-size: 2.1rem; }
  .servicio { padding: 30px 18px; }
}
/* ---------- Lightbox ---------- */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  border: 2px solid #c6a76f;
  border-radius: 10px;
}

.lightbox-text {
  margin-top: 15px;
  color: #c6a76f;
  font-size: 1rem;
}

.cerrar {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 2rem;
  color: #c6a76f;
  cursor: pointer;
  transition: color 0.3s;
}

.cerrar:hover {
  color: #fff;
}
/* Contact / Reservation form */
.contact-form {
  padding: 60px 20px;
  background: var(--primary); /* color oscuro de fondo */
  color: var(--text-light);
  text-align: center;
  font-family: "Nunito", sans-serif;
}

.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--accent);
}

.contact-form form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  outline: none;
  transition: box-shadow 0.3s, background 0.3s;
  background: #222; /* fondo de campo oscuro */
  color: var(--text-light);
  font-family: "Nunito", sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 8px var(--accent);
  background: #333;
  font-family: "Nunito", sans-serif;
}

.contact-form select {
  /* Para que el selector también se vea bien */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: "Nunito", sans-serif;
}

.contact-form button {
  padding: 14px;
  background: var(--accent);
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  font-family: "Nunito", sans-serif;
}

.contact-form button:hover {
  background: #b68a4f;
  transform: scale(1.02);
}

/* Footer */
footer {
  background: var(--primary);
  color: var(--text-light);
  padding: 50px 20px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col {
  flex: 1 1 250px;
  margin: 15px;
}

.footer-col h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  padding-bottom: 4px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin: 10px 0;
}

.footer-col ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
}

.social-icons img {
  width: 24px;
  height: 24px;
  
}

.social-icons a:hover img {
  transform: scale(1.2);
}

.footer-bottom {
  margin-top: 25px;
  text-align: center;
  font-size: 0.9rem;
  border-top: 1px solid var(--accent);
  padding-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-col {
    margin: 20px 0;
  }

  .contact-form form {
    gap: 12px;
  }
}

/* ===== SECCIÓN GENERAL ===== */
.trayectoria {
  display: flex;
  gap: 60px;
  padding: 100px 60px;
  background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
  color: #f5f5f5;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

/* Fondo decorativo sutil */
.trayectoria::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 80%);
  z-index: 0;
}

/* ===== TÍTULOS ===== */
.titulo-seccion {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: #d4af37;
  position: relative;
  margin-bottom: 25px;
  z-index: 1;
}

.linea-dorada {
  display: block;
  width: 70px;
  height: 3px;
  background-color: #d4af37;
  margin-top: 10px;
  border-radius: 3px;
}

/* ===== HISTORIA ===== */
.historia {
  flex: 1 1 400px;
  min-width: 320px;
  max-width: 500px;
  z-index: 1;
}

.historia p {
  line-height: 1.9;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #ddd;
  text-align: justify;
}

/* ===== GALERÍA ===== */
.galeria {
  flex: 2 1 600px;
  z-index: 1;
}

.galeria h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* ===== VISOR DE GALERÍA ===== */
.galeria-visor {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.9);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.galeria-visor-imagen {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  object-fit: contain;
}

.galeria-boton-cerrar {
  position: absolute;
  top: 25px;
  right: 40px;
  color: #d4af37;
  font-size: 40px;
  cursor: pointer;
  transition: 0.3s;
}

.galeria-boton-cerrar:hover {
  color: white;
}

.galeria-controles {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 30px;
}

.galeria-controles span {
  color: #d4af37;
  font-size: 50px;
  cursor: pointer;
  user-select: none;
  transition: 0.3s;
}

.galeria-controles span:hover {
  color: white;
}

.galeria-visor.show {
  display: flex;
  animation: galeriaFadeIn 0.3s ease;
}

@keyframes galeriaFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== GRID DE IMÁGENES ===== */
.galeria-grid {
  column-count: 3;
  column-gap: 15px;
}

.galeria-grid img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 12px;
  display: block;
  transition: all 0.4s ease;
  filter: brightness(0.85);
  cursor: pointer;
}

.galeria-grid img:hover {
  transform: scale(1.04);
  filter: brightness(1.1);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

/* ===== IMÁGENES OCULTAS Y BOTÓN VER MÁS ===== */
.oculta {
  display: none !important;
}
.galeria-grid-oculta {
  display: none;
}


.galeria-boton {
  margin-top: 20px;
  padding: 10px 25px;
  border: 1px solid #d4af37;
  background: transparent;
  color: #d4af37;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
  display: inline-block;
}

.galeria-boton:hover {
  background-color: #d4af37;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .trayectoria {
    flex-direction: column;
    padding: 60px 20px;
    gap: 40px;
  }

  .galeria-grid {
    column-count: 2;
  }

  .titulo-seccion {
    text-align: center;
  }

  .linea-dorada {
    margin: 10px auto;
  }
}

@media (max-width: 600px) {
  .galeria-grid {
    column-count: 1;
  }

  .galeria-boton {
    width: 100%;
  }
}

  .historia p {
    font-size: 1rem;
  }

.subtitulo-bodas {
  font-size: 1.3rem;
  font-weight: 400;
  color: #ffffff; /* dorado */
  margin-top: 5px;
  margin-bottom: 20px;
  font-family: 'Cormorant Garamond', serif;
  text-transform: none;
text-align: center;
text-wrap: balance;
}
.evento-footer {
  text-align: center;
  margin-top: 20px;
}

.hashtag {
  display: block;
  text-align: center;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 30px;
}

.btnevento {
  display: inline-block;
  background-color: transparent;
  color: #d4af37;
  border: 1px solid #d4af37;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  text-align: center;
}

.btnevento:hover {
  background-color: #d4af37;
  color: #000;
  box-shadow: 0 0 10px #d4af37;
}

.coordinacion
  {
  width: 100%;
  max-width: 900px; /* Tamaño máximo en pantallas grandes */
  height: auto;
  border-radius: 12px; /* Opcional: bordes redondeados */
  display: block;
  margin: 20px auto;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}


.google-reviews {
  
  padding: 80px 20px;
  text-align: center;
  
}

.reviews-container {
  max-width: 800px;
  margin: auto;
  position: relative;
}

.google-reviews h2 {
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #d4af37;
}

.google-reviews .subtitle {
  color: #ffffff;
  margin-bottom: 40px;
}

.review {
  display: none;
  transition: opacity 0.5s ease;
}

.review.active {
  display: block;
  opacity: 1;
}

blockquote {
  font-size: 1.1em;
  
  color: #dddddd;
  line-height: 1.6;
  margin-bottom: 15px;
}

.stars {
  color: #d4af37; /* Dorado */
  font-size: 1.3em;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

cite {
  display: block;
  color: #cbcbcb;
  font-weight: 600;
}

.slider-controls {
  margin-top: 20px;
}

.slider-controls button {
  background: none;
  border: 2px solid #d4af37;
  color: #d4af37;
  font-size: 1.5em;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-controls button:hover {
  background: #d4af37;
  color: #fff;
}

.btn-google {
  display: inline-block;
  margin-top: 40px;
  background: #d4af37;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.btn-google:hover {
  background: #b38e2f;
}

/* 📱 Responsive */
@media (max-width: 600px) {
  blockquote {
    font-size: 1em;
  }
  .btn-google {
    width: 100%;
  }
}


/* Ajuste solo para la galería de la historia */
.galeria-grid.especial {
  display: flex;
  gap: 20px;
  
  margin-top: 20px;
}

.galeria-grid.especial img {
  width: 450px;   /* ajustá según prefieras */
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  transition: transform 0.3s ease;
}



/* Responsivo para móviles */
@media (max-width: 768px) {
  .galeria-grid.especial {
    flex-direction: column;
  }

  .galeria-grid.especial img {
    width: 90%;
  }
}
