
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #111;
  color: #f5f5f5;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* Layout */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(17, 17, 17, 0.9);
  backdrop-filter: blur(10px);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-left img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.nav-title {
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover {
  background: #ffe45b;
  color: #111;
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("img/portada.png") center/cover no-repeat;
  transform: scale(1.03);
  filter: saturate(1.2);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  padding: 4rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 228, 91, 0.15);
  border: 1px solid rgba(255, 228, 91, 0.6);
  font-size: 0.8rem;
  color: #ffe45b;
  margin-bottom: 0.75rem;
}

.badge span.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #18ff6d;
  box-shadow: 0 0 0 4px rgba(24,255,109,0.3);
}

.hero h1 {
  font-size: clamp(2.3rem, 3vw + 1.5rem, 3.3rem);
  margin-bottom: 0.8rem;
  text-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

.hero h1 span.highlight {
  color: #ffe45b;
}

.hero p.lead {
  font-size: 1rem;
  max-width: 32rem;
  color: #f0f0f0;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.65rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ff5722, #ff9800);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.6);
}

.btn-outline {
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(0,0,0,0.6);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: #f0f0f0;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(0,0,0,0.4);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-card {
  background: rgba(0,0,0,0.7);
  border-radius: 20px;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 16px 40px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
}

.hero-card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.hero-card p {
  font-size: 0.9rem;
  color: #e0e0e0;
  margin-bottom: 0.9rem;
}

.hero-card ul {
  list-style: none;
  font-size: 0.85rem;
  margin-bottom: 1.1rem;
}

.hero-card ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.hero-card ul li span.bullet {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ffe45b;
}

.hero-card .opening {
  font-size: 0.85rem;
  background: rgba(0,0,0,0.7);
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  border: 1px dashed rgba(255,255,255,0.2);
}

/* Sections */

section {
  padding: 3rem 1.2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.25rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: #cfd8dc;
  margin-bottom: 1.7rem;
}

/* About / Experience */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
  gap: 2rem;
  align-items: flex-start;
}

.about-grid p {
  font-size: 0.95rem;
  color: #eceff1;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.8rem;
  margin-top: 1.3rem;
}

.pill {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.7rem 0.75rem;
  font-size: 0.85rem;
  background: radial-gradient(circle at top left, rgba(255,228,91,0.12), rgba(0,0,0,0.9));
}

/* Specials */

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.3rem;
}

.card {
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(255, 87, 34, 0.2), rgba(18, 18, 18, 0.95));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 1rem;
  box-shadow: 0 18px 38px rgba(0,0,0,0.7);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.card p {
  font-size: 0.85rem;
  color: #eceff1;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffe45b;
  margin-top: 0.25rem;
}

.card small {
  font-size: 0.75rem;
  color: #b0bec5;
}

/* Gallery */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-item::after {
  content: "Ver más";
  position: absolute;
  inset: auto 0 0 0;
  height: 32%;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #fff;
  font-size: 0.75rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0.35rem;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
  filter: brightness(1.1);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.9);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Video & Social */

.media-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.5fr);
  gap: 1.5rem;
}

.media-embed {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  background: #000;
  min-height: 230px;
}

.media-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.social-wrapper {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.75rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
}

.social-fb {
  background: #1877f2;
  color: #fff;
}

.social-ig {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf, #4f5bd5);
  color: #fff;
}

.social-link img {
  width: 18px;
  height: 18px;
}

/* Contact & Map */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.4fr);
  gap: 1.5rem;
}

form {
  display: grid;
  gap: 0.7rem;
}

label {
  font-size: 0.8rem;
  color: #cfd8dc;
}

input,
textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.9rem;
}

input::placeholder,
textarea::placeholder {
  color: #90a4ae;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.map-embed {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  min-height: 260px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Floating buttons */

.floating-whatsapp {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 2200;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  font-size: 1.7rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
}

/* Footer */

footer {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.5rem 1.2rem 2rem;
  margin-top: 1rem;
  background: #050608;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: #b0bec5;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

footer a {
  color: #ffe45b;
}

/* Responsive */

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-card {
    order: -1;
  }
  .about-grid,
  .media-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .hero {
    min-height: 80vh;
  }
  .hero-content {
    padding-top: 4.5rem;
  }
  section {
    padding-inline: 1rem;
  }
  .hero-meta {
    flex-direction: column;
  }
}
