/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #001229; background: #fafafa; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { width: 100%; display: block; }
.logo span {
  color: var(--gold);
}


/* ===== VARIABLES ===== */
:root {
  --navy: #0d4378;
  --navy-dark: #0c2858;
  --gold: #C5A059;
  --gold-dark: #b8933f;
  --white: #ffffff;
  --light: #f8f8f8;
  --text-muted: rgba(0,18,41,0.55);
}

/* ===== UTILITIES ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.gold { color: var(--gold); }
.section { padding: 5rem 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

.animate { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  background: rgba(197,160,89,0.12);
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ===== SECTION HEADING ===== */
.section-heading { text-align: center; margin-bottom: 3.5rem; }
.section-heading h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-heading p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all 0.25s cubic-bezier(.4,0,.2,1);
  border: 2px solid transparent;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0; transition: opacity 0.2s;
}
.btn:hover::after { opacity: 1; }
.btn-gold { background: var(--gold); color: var(--navy-dark); box-shadow: 0 4px 20px rgba(197,160,89,0.3); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(197,160,89,0.45); }
.btn-outline { background: transparent; border-color: rgba(255,255,255,0.45); color: white; }
.btn-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-navy { background: var(--navy-dark); color: white; box-shadow: 0 4px 16px rgba(0,18,41,0.15); }
.btn-navy:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,18,41,0.25); }
.btn-green { background: #16a34a; color: white; box-shadow: 0 4px 16px rgba(22,163,74,0.3); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,163,74,0.45); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; margin-top: 2.5rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(0, 34, 78, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197,160,89,0.12);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.25); }
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; gap: 2rem; height: 68px;
}
.nav-logo {
  font-family: 'Fraunces', serif; font-size: 1.1rem;
  color: var(--gold); font-weight: 600; flex-shrink: 0;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-links { list-style: none; display: flex; gap: 2rem; margin: 0 auto; }
.nav-links a {
  color: rgba(255,255,255,0.7); font-size: 0.88rem;
  transition: color 0.2s; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold); color: var(--navy-dark);
  padding: 0.5rem 1.3rem; border-radius: 999px;
  font-weight: 600; font-size: 0.88rem; flex-shrink: 0;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(197,160,89,0.4); }
.nav-toggle { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; margin-left: auto; }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 650px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero-img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,18,41,0.30) 0%, rgba(0,18,41,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2; text-align: center; color: white;
  padding: 2rem; max-width: 820px;
  animation: fadeInUp 1s ease both;
 
}
.hero-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 700; line-height: 1.12; margin: 1rem 0;
}
.hero-content p {
  font-size: 1.15rem; color: rgba(255,255,255,0.85);
  max-width: 600px; margin: 0 auto; line-height: 1.75;
  
}
.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.45); font-size: 1.3rem;
  animation: bounce 2s infinite;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.scroll-hint::before { content: ''; width: 1px; height: 40px; background: rgba(255,255,255,0.3); display: block; }

/* ===== SERVICE CARDS ===== */
.services-preview { background: var(--light); }
.service-card {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  box-shadow: 0 4px 24px rgba(0,18,41,0.08);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 48px rgba(0,18,41,0.18); }
.service-card img { height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover img { transform: scale(1.08); }
.card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,18,41,0.92) 0%, rgba(0,18,41,0.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.75rem; color: white;
  transition: background 0.35s;
}
.service-card:hover .card-overlay { background: linear-gradient(to top, rgba(0,18,41,0.97) 0%, rgba(0,18,41,0.2) 60%); }
.card-overlay h3 { font-family: 'Fraunces', serif; font-size: 1.35rem; margin-bottom: 0.5rem; }
.card-overlay p { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.5; }

/* ===== CTA BANNER ===== */
.cta-banner { background: #0d3f70; padding: 6rem 1.5rem; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before, .cta-banner::after {
  content: ''; position: absolute; border-radius: 50%;
  background: rgba(197,160,89,0.06); pointer-events: none;
}
.cta-banner::before { width: 500px; height: 500px; top: -200px; right: -150px; }
.cta-banner::after { width: 400px; height: 400px; bottom: -200px; left: -100px; }
.cta-banner h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: white; margin-bottom: 1.2rem; line-height: 1.2;
  position: relative; z-index: 1;
}
.cta-banner p {
  color: rgba(255,255,255,0.58); font-size: 1.05rem;
  max-width: 560px; margin: 0 auto;
  position: relative; z-index: 1;
}

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative; height: 420px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-top: 68px;
}
.page-hero img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform: scale(1.08);
  animation: heroZoom 8s ease forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,18,41,0.40), rgba(0,18,41,0.6));
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 2; text-align: center; color: white; padding: 2rem;
  animation: fadeInUp 0.9s ease both;
}
.page-hero-content h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700; line-height: 1.15;
}
.page-hero-content p {
  color: rgba(255,255,255,0.85); font-size: 1.05rem;
  margin-top: 0.75rem; max-width: 560px;
  margin-left: auto; margin-right: auto; line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.65); padding: 5rem 1.5rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 3rem; }
.footer h3 { font-family: 'Fraunces', serif; font-size: 1.2rem; margin-bottom: 1rem; }
.footer h4 { color: rgba(255,255,255,0.9); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer p { font-size: 0.9rem; line-height: 1.9; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 3.5rem; padding: 1.5rem 0;
  text-align: center; font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: white; font-size: 1.6rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  animation: scaleIn 0.5s 1s ease both;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.6); }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(197,160,89,0.5) 10%, rgba(197,160,89,0.5) 90%, transparent);
}
.timeline-item { position: relative; margin-bottom: 3rem; }
.timeline-dot {
  position: absolute; left: -3rem; top: 0.35rem;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--light);
  box-shadow: 0 0 0 3px rgba(197,160,89,0.2);
  transition: box-shadow 0.3s;
}
.timeline-item:hover .timeline-dot { box-shadow: 0 0 0 6px rgba(197,160,89,0.2); }
.timeline-year {
  font-size: 0.78rem; font-weight: 700; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.4rem;
}
.timeline-item h3 {
  font-family: 'Fraunces', serif; font-size: 1.4rem;
  color: var(--navy-dark); margin-bottom: 0.3rem;
}
.timeline-item .location { color: var(--gold); font-size: 0.88rem; margin-bottom: 0.6rem; }
.timeline-item p { color: var(--text-muted); line-height: 1.75; font-size: 0.95rem; }

/* ===== VALUE CARDS ===== */
.value-card {
  background: white; border-radius: 20px; padding: 2.25rem;
  box-shadow: 0 2px 20px rgba(0,18,41,0.06);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,18,41,0.04);
}
.value-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,18,41,0.12); }
.value-icon { font-size: 2.2rem; margin-bottom: 1.2rem; }
.value-card h3 { font-family: 'Fraunces', serif; font-size: 1.2rem; color: var(--navy-dark); margin-bottom: 0.6rem; }
.value-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ===== STATS ===== */
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(197,160,89,0.18);
  border-radius: 20px; padding: 2.25rem; text-align: center;
  transition: background 0.3s, border-color 0.3s;
}
.stat-card:hover { background: rgba(197,160,89,0.06); border-color: rgba(197,160,89,0.35); }
.stat-card .num {
  font-family: 'Fraunces', serif; font-size: 2.8rem;
  font-weight: 700; color: var(--gold);
}
.stat-card .label { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin-top: 0.4rem; }

/* ===== FORM ===== */
.form-group { margin-bottom: 1.35rem; }
.form-group label {
  display: block; font-size: 0.84rem; font-weight: 600;
  color: var(--navy-dark); margin-bottom: 0.45rem; letter-spacing: 0.01em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.8rem 1.1rem;
  border: 1.5px solid #e5e7eb; border-radius: 12px;
  font-family: 'Inter', sans-serif; font-size: 0.94rem;
  color: var(--navy-dark); background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197,160,89,0.12);
}
.form-group textarea { height: 130px; resize: vertical; }

/* ===== CONTACT CARDS ===== */
.contact-card {
  background: white; border-radius: 20px; padding: 2.25rem;
  box-shadow: 0 2px 20px rgba(0,18,41,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(0,18,41,0.04);
}
.contact-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,18,41,0.1); }
.contact-card .icon { font-size: 2rem; margin-bottom: 1.1rem; }
.contact-card h3 { font-family: 'Fraunces', serif; font-size: 1.15rem; margin-bottom: 0.5rem; }
.contact-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.contact-card a { color: var(--gold); }

/* ===== SERVICE DETAIL ===== */
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
  margin-bottom: 5rem; padding-bottom: 5rem;
  border-bottom: 1px solid rgba(0,18,41,0.07);
}
.service-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail img {
  border-radius: 20px; height: 360px; object-fit: cover;
  box-shadow: 0 16px 48px rgba(0,18,41,0.12);
  transition: transform 0.4s, box-shadow 0.4s;
}
.service-detail img:hover { transform: scale(1.02); box-shadow: 0 24px 64px rgba(0,18,41,0.18); }
.service-detail h3 {
  font-family: 'Fraunces', serif; font-size: 2rem;
  color: var(--navy-dark); margin-bottom: 1.1rem; line-height: 1.2;
}
.service-detail p { color: var(--text-muted); line-height: 1.75; margin-bottom: 1.5rem; font-size: 0.97rem; }
.feature-list { list-style: none; margin-bottom: 2rem; }
.feature-list li {
  padding: 0.45rem 0; color: var(--text-muted);
  font-size: 0.91rem; display: flex; align-items: center; gap: 0.5rem;
  border-bottom: 1px solid rgba(0,18,41,0.05);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before { content: '✓'; color: var(--gold); font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }

/* ===== REPERTOIRE ===== */
.repertoire-card {
  background: white; border-radius: 16px; padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(0,18,41,0.06);
  border: 1px solid rgba(0,18,41,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.repertoire-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,18,41,0.1); }
.repertoire-card h4 { font-family: 'Fraunces', serif; font-size: 1.05rem; color: var(--navy-dark); margin-bottom: 0.9rem; }
.repertoire-card ul { list-style: none; }
.repertoire-card ul li { font-size: 0.87rem; color: var(--text-muted); padding: 0.25rem 0; }
.repertoire-card ul li::before { content: '♪ '; color: var(--gold); }

/* ===== HIRE PAGE ===== */
.hire-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.channel-item { display: flex; align-items: flex-start; gap: 1.1rem; margin-bottom: 1.75rem; }
.channel-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.channel-info strong { display: block; font-weight: 600; color: var(--navy-dark); margin-bottom: 0.2rem; }
.channel-info p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-card {
  background: white; border-radius: 24px; padding: 2.75rem;
  box-shadow: 0 8px 48px rgba(0,18,41,0.1);
  border: 1px solid rgba(0,18,41,0.04);
}
.form-card h3 { font-family: 'Fraunces', serif; font-size: 1.6rem; color: var(--navy-dark); margin-bottom: 1.75rem; }
.note-box {
  margin-top: 2rem; padding: 1.5rem 1.75rem;
  background: rgba(197,160,89,0.07);
  border-radius: 14px; border-left: 4px solid var(--gold);
}
.note-box strong { color: var(--navy-dark); font-size: 0.92rem; }
.note-box p { color: var(--text-muted); font-size: 0.88rem; margin-top: 0.3rem; line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .hire-grid { grid-template-columns: 1fr; gap: 3rem; }
  .service-detail { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links {
    display: none; flex-direction: column; gap: 0;
    position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
    background: rgba(0,18,41,0.98); padding: 2rem 1.5rem;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links a { display: block; padding: 1rem 0; font-size: 1.05rem; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .hero-btns { flex-direction: column; align-items: center; }
}

.repertoire-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.rep-text {
  text-align: center;
}

/* Si quieres que las listas pierdan los puntitos a la izquierda 
   para que el centrado quede estéticamente perfecto: */
.rep-text ul {
  list-style: none;
  padding: 0;
}

/*Footer logos*/

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.contact-item a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-item a.gold {
  color: var(--gold);
}

.contact-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.chip {
  background:#C5A059;
  color:#001229;
  padding:0.35rem 1.1rem;
  border-radius:999px;
  font-size:0.8rem;
  font-weight:600;
  display:inline-block;
  transition:transform 0.25s ease, box-shadow 0.25s ease;
}

.chip:hover {
  transform:translateY(-3px);
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

.emoji {
  font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}

.galeria-section {
  padding: 4rem 0;
  text-align: center;
}

.galeria-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: var(--gold);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.galeria-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}

.lightbox-img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}

.footer-bottom .creditos {
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 0.3rem;
}



.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5); /* fondo suave */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.lightbox-content {
  background: rgba(0,0,0,0.85); /* fondo pegado a la foto */
  padding: 10px;
  border-radius: 10px;
  position: relative;
}

.lightbox-img {
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.close-lightbox {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.galeria-video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeria-video:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.conocenos-cta {
  padding: 4rem 0;
  background: #f7f7f7;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.conocenos-cta h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.conocenos-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.lightbox-caption {
  margin-top: 10px;
  color: #fff;
  font-size: 1.1rem;
  text-align: center;
  font-style: italic;
  max-width: 80vw;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-item a {
  white-space: nowrap;
}

.contact-item a + a::before {
  content: "·";
  margin: 0 6px;
  color: #C5A059;
}
