
:root {
  --navy:    #0a0e1a;
  --navy2:   #111827;
  --navy3:   #1c2a3a;
  --gold:    #f5a623;
  --gold2:   #ffc653;
  --white:   #ffffff;
  --light:   #f0f4f8;
  --gray:    #8a9ab0;
  --border:  rgba(245,166,35,0.2);
  --radius:  12px;
  --shadow:  0 8px 32px rgba(0,0,0,0.18);
  --trans:   0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--white);
  color: var(--navy2);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 99px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: transparent;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
}
.navbar.scrolled {
  background: rgba(10,14,26,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
  padding: 0.8rem 3rem;
  backdrop-filter: blur(10px);
}
.nav-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 2px;
}
.nav-brand span { color: var(--gold); }
.nav-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity var(--trans);
}
.nav-logo:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  transition: color var(--trans);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--trans);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.8);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,14,26,0.85) 0%, rgba(10,14,26,0.5) 60%, rgba(245,166,35,0.12) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 4px;
  margin-bottom: 1rem;
}
.hero-title span {
  color: var(--gold);
  font-size: 0.58em;
  display: block;
  letter-spacing: 6px;
}
.hero-slogan {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.6;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint span {
  display: block;
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 99px;
  position: relative;
}
.hero-scroll-hint span::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 99px;
  animation: scrollDot 1.5s infinite;
}
@keyframes scrollDot {
  0%   { top: 6px; opacity: 1; }
  100% { top: 18px; opacity: 0; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 0.9rem 2.2rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.45);
}
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

/* ── SECTIONS ── */
.section { padding: 6rem 0; }
.section-dark {
  background: var(--navy2);
  color: var(--white);
}
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-header { margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  color: var(--gold);
  border: 1px solid rgba(245,166,35,0.35);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 99px;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 3px;
  line-height: 1;
}
.section-dark .section-title { color: var(--white); }

/* ── SOBRE NOSOTROS ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(245,166,35,0.4);
  white-space: nowrap;
}
.about-text h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: var(--navy);
}
.about-text p {
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
}
.stat p { font-size: 0.82rem; color: var(--gray); font-weight: 500; }

/* ── SERVICIOS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background var(--trans), border-color var(--trans), transform var(--trans);
}
.service-card:hover {
  background: rgba(245,166,35,0.1);
  border-color: var(--gold);
  transform: translateY(-6px);
}
.service-icon {
  width: 64px; height: 64px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.6rem;
  color: var(--gold);
  transition: background var(--trans);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--navy);
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── PRECIOS ── */
.table-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.price-table thead tr { background: var(--navy); }
.price-table th {
  padding: 1.1rem 1.8rem;
  text-align: left;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 2px;
  color: var(--gold);
}
.price-table tbody tr {
  border-bottom: 1px solid #e8edf3;
  transition: background var(--trans);
}
.price-table tbody tr:last-child { border-bottom: none; }
.price-table tbody tr:hover { background: #f8fafc; }
.price-table td {
  padding: 1.1rem 1.8rem;
  font-size: 0.95rem;
  color: var(--navy2);
}
.price-badge {
  background: rgba(245,166,35,0.12);
  color: #c07a10;
  border: 1px solid rgba(245,166,35,0.35);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.3rem 0.9rem;
  border-radius: 99px;
}
.price-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ── GALERÍA ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,14,26,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
  font-size: 1.5rem;
  color: var(--gold);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── VIDEO ── */
.video-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/9;
  background: var(--navy);
}
.video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ── UBICACIÓN ── */
.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
}
.location-info {
  background: var(--light);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.info-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.info-item h4 {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.4rem;
}
.info-item p { font-size: 0.95rem; color: var(--navy2); line-height: 1.6; }

/* ── CONTACTO ── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-side h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.contact-info-side p { color: #4a5568; line-height: 1.7; margin-bottom: 2rem; }
.contact-socials { display: flex; gap: 0.8rem; }
.social-link {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  transition: transform var(--trans), opacity var(--trans);
}
.social-link:hover { transform: translateY(-3px); opacity: 0.85; }
.fb { background: #1877f2; }
.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.wa { background: #25d366; }

.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid #d1dbe8;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--navy2);
  background: var(--light);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
  background: var(--white);
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 0;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}
.footer-brand span { color: var(--gold); }
.footer-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0.8rem;
  filter: brightness(0) invert(1); /* lo vuelve blanco sobre fondo oscuro */
}
.footer-col p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.5rem; }
.footer-col p i { color: var(--gold); margin-right: 0.5rem; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.9rem; transition: color var(--trans); }
.footer-col ul a:hover { color: var(--gold); }
.footer-socials { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: background var(--trans), color var(--trans);
}
.footer-socials a:hover { background: var(--gold); color: var(--navy); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 1.4rem 2rem;
  font-size: 0.82rem;
}
/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .navbar { padding: 1rem 2rem; }
  .navbar.scrolled { padding: 0.7rem 2rem; }

  .nav-links { gap: 1.5rem; }
  .nav-links a { font-size: 0.82rem; }

  .about-grid { gap: 2.5rem; }

  .contact-wrap { gap: 2.5rem; }

  .footer-inner { 
    grid-template-columns: 1fr 1fr; 
    gap: 2rem; 
  }

  .footer-inner .footer-col:last-child { 
    grid-column: 1 / -1; 
  }
}

/* ── MÓVIL ── */
@media (max-width: 768px) {

  /* NAVBAR */
  .navbar {
    padding: 1rem 1.5rem;
  }

  .navbar.scrolled {
    padding: 0.7rem 1.5rem;
  }

  .nav-logo {
    height: 40px;
  }

  /* BOTÓN HAMBURGUESA */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
  }

  .nav-toggle.active {
    position: fixed;
    top: 1.2rem;
    right: 1.5rem;
  }

  /* MENÚ MÓVIL */
  .nav-links {
    display: none;

    position: fixed;
    top: 0;
    right: 0;

    width: 75%;
    height: 100vh;

    background: rgba(10,14,26,0.98);
    backdrop-filter: blur(10px);

    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding-top: 6rem;
    gap: 1.5rem;

    z-index: 999;

    overflow-y: auto;

    box-shadow: -5px 0 20px rgba(0,0,0,0.4);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    list-style: none;
  }

  .nav-links a {
    display: block;
    width: 100%;

    padding: 0.9rem 1rem;

    font-size: 1.1rem;
    letter-spacing: 1px;

    color: var(--white);

    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold);
    background: rgba(255,255,255,0.03);
  }

  /* HERO */
  .hero-title {
    font-size: clamp(2.8rem, 14vw, 5rem);
  }

  .hero-slogan {
    font-size: 1rem;
  }

  /* ABOUT */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-img {
    height: 280px;
  }

  .about-badge {
    right: 1rem;
    bottom: -1rem;
    font-size: 0.82rem;
    padding: 0.7rem 1.2rem;
  }

  .about-stats {
    gap: 1.2rem;
    flex-wrap: wrap;
  }

  /* SERVICIOS */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* GALERÍA */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* UBICACIÓN */
  .location-grid {
    grid-template-columns: 1fr;
  }

  .map-wrap {
    height: 300px;
  }

  /* CONTACTO */
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* FOOTER */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }
}

/* ── MÓVILES PEQUEÑOS ── */
@media (max-width: 480px) {

  .section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.2rem;
  }

  .hero-title {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .hero-tag {
    font-size: 0.7rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .price-table th,
  .price-table td {
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
  }

  .section-title {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .about-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat span {
    font-size: 2rem;
  }

  .map-wrap {
    height: 250px;
  }

  .location-info {
    padding: 1.5rem;
  }

  .btn-primary {
    padding: 0.8rem 1.6rem;
    font-size: 0.88rem;
  }

  /* MENÚ MÁS CÓMODO EN CELULARES PEQUEÑOS */
  .nav-links {
    width: 85%;
    padding-top: 5.5rem;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.8rem;
  }
}
