/* ========================================
   LandingMaqueta — Mar del Plata
   Paleta: azul mar, arena, coral del puerto
   ======================================== */

:root {
  --navy: #0e3549;
  --navy-deep: #092738;
  --cream: #fbf7ef;
  --sand: #f2ead9;
  --coral: #e8613c;        /* decorativo / texto grande sobre navy */
  --coral-text: #ad4018;   /* texto coral sobre claro y fondo de botones (WCAG AA+) */
  --coral-dark: #94370f;
  --text: #21313c;
  --muted: #56687a;
  --line: rgba(14, 53, 73, 0.12);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; }

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

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }

section { position: relative; }

/* ========================================
   NAVBAR — claro, texto azul
   ======================================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.35s ease;
}

.navbar.scrolled {
  background: rgba(251, 247, 239, 0.94);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(14, 53, 73, 0.08);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.55rem;
  color: var(--navy);
  text-decoration: none;
}

.logo span { color: var(--coral-text); font-style: italic; }

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.25s;
}

.nav-links a:hover { opacity: 1; }

.nav-cta {
  background: var(--coral-text);
  color: #fff !important;
  padding: 11px 26px;
  border-radius: 100px;
  font-weight: 600 !important;
  opacity: 1 !important;
  transition: background 0.25s, transform 0.25s;
}

.nav-cta:hover { background: var(--coral-dark); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
}

/* ========================================
   HERO — claro, aire de mañana en la costa
   ======================================== */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(251,247,239,0.82) 0%, rgba(251,247,239,0.55) 45%, var(--cream) 98%),
    url('https://images.unsplash.com/photo-1521017432531-fbd92d768814?q=80&w=1920') center/cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 90px;
}

.hero-badge {
  display: inline-block;
  background: var(--sand);
  border: 1px solid var(--line);
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 4.8rem);
  color: var(--navy);
  line-height: 1.04;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--coral-text);
}

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 42px;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Onda divisoria */
.wave {
  display: block;
  width: 100%;
  height: 70px;
  position: absolute;
  left: 0;
  z-index: 3;
}
.wave-bottom { bottom: -1px; }
.wave-top { top: -1px; }

/* ========================================
   BOTONES
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 97, 60, 0.32);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(14, 53, 73, 0.3);
}

.btn-outline:hover {
  border-color: var(--navy);
  background: rgba(14, 53, 73, 0.05);
}

.btn-light {
  background: var(--cream);
  color: var(--navy);
}

.btn-light:hover { background: #fff; transform: translateY(-2px); }

/* ========================================
   LA BANDA — features editoriales sin íconos
   ======================================== */
.banda {
  background: var(--cream);
  padding: 90px 0 70px;
}

.banda-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.banda-item {
  padding: 34px 26px 10px;
  border-right: 1px solid var(--line);
}

.banda-item:last-child { border-right: none; }

.banda-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.banda-item p {
  font-size: 0.87rem;
  color: var(--muted);
  font-weight: 400;
}

/* ========================================
   DESTACADOS — adelanto de la carta
   ======================================== */
.destacados { padding: 40px 0 110px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral-text);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  line-height: 1.12;
}

.link-carta {
  color: var(--coral-text);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s;
  white-space: nowrap;
}

.link-carta:hover { border-color: var(--coral-text); }

.destacados-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.destacado-card {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destacado-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(14, 53, 73, 0.08);
}

.destacado-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.destacado-card p {
  font-size: 0.85rem;
  color: var(--muted);
}

.destacado-precio {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem;
  color: var(--coral-text);
  white-space: nowrap;
}

/* ========================================
   CONTACTO — bloque azul mar
   ======================================== */
.contacto {
  background: var(--navy);
  padding: 140px 0 100px;
  text-align: center;
}

.contacto .section-title { color: var(--cream); }

.contacto-info {
  color: rgba(251, 247, 239, 0.65);
  max-width: 520px;
  margin: 18px auto 36px;
  font-size: 1.02rem;
}

.contacto-horarios {
  display: inline-block;
  color: rgba(251, 247, 239, 0.75);
  font-size: 0.85rem;
  margin-top: 22px;
  letter-spacing: 0.4px;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--navy-deep);
  padding: 34px 0;
  text-align: center;
}

footer p {
  color: rgba(251, 247, 239, 0.55);
  font-size: 0.82rem;
}

footer a {
  color: rgba(251, 247, 239, 0.7);
  text-decoration: none;
}

footer a:hover { color: var(--cream); }

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s;
}

.whatsapp-float:hover { transform: scale(1.08); }

.whatsapp-float svg,
.btn svg { width: 22px; height: 22px; fill: currentColor; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
  .banda-grid { grid-template-columns: repeat(2, 1fr); }
  .banda-item:nth-child(2) { border-right: none; }
  .banda-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); padding-bottom: 28px; }
}

@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 26px 28px 32px;
    gap: 18px;
    box-shadow: 0 18px 30px rgba(14, 53, 73, 0.1);
  }

  .nav-links.active { display: flex; }
  .menu-toggle { display: block; }

  .destacados-grid { grid-template-columns: 1fr; }
  .banda-grid { grid-template-columns: 1fr; }
  .banda-item { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .banda-item:last-child { border-bottom: none !important; }

  .hero { min-height: 88vh; }
  .hero-content { padding-top: 110px; }
}
