/* ===== Variables y reset ===== */
:root {
  --navy: #0a1f2e;
  --navy-oscuro: #061420;
  --coral: #ff6f59;
  --turquesa: #2ec4b6;
  --crema: #f4efe6;
  --texto-claro: #f4efe6;
  --texto-suave: #cdd8de;
  --fuente-titulo: 'Playfair Display', serif;
  --fuente-cuerpo: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--fuente-cuerpo);
  background: var(--navy-oscuro);
  color: var(--texto-claro);
  overflow-x: hidden;
}

.contenedor {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

a { text-decoration: none; color: inherit; }

/* ===== Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 20, 32, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(46, 196, 182, 0.15);
}

.nav-contenido {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--fuente-titulo);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--crema);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--texto-suave);
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--turquesa); }

.btn-cta {
  background: var(--coral);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  transition: transform 0.25s, box-shadow 0.25s;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 111, 89, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--crema);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,20,32,0.55) 0%, rgba(6,20,32,0.85) 100%);
}

.hero-contenido {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 0 24px;
  animation: aparecer 1s ease forwards;
}

@keyframes aparecer {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.chip-rating {
  display: inline-block;
  background: rgba(46, 196, 182, 0.15);
  border: 1px solid var(--turquesa);
  color: var(--turquesa);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--fuente-titulo);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  color: var(--crema);
  line-height: 1;
}

.hero-tagline {
  margin-top: 16px;
  font-size: 1.25rem;
  color: var(--texto-suave);
}

.hero-botones {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primario, .btn-secundario {
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: 700;
  transition: transform 0.25s, box-shadow 0.25s;
}

.btn-primario {
  background: var(--coral);
  color: #fff;
}

.btn-primario:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(255, 111, 89, 0.45);
}

.btn-secundario {
  border: 1.5px solid var(--turquesa);
  color: var(--turquesa);
}

.btn-secundario:hover {
  background: var(--turquesa);
  color: var(--navy-oscuro);
  transform: translateY(-3px);
}
