:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #707070;
  --maxw: 1100px;
  font-family: 'Lato', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Reset imágenes */
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

/* Contenedor */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px;
}

/* ===================== */
/* HEADER */
/* ===================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #eee;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
}

/* Navegación */
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a {
  color: var(--muted);
}

.main-nav a:hover {
  color: var(--text);
}

/* Botón reservar */
.cta {
  background: var(--text);
  color: #fff !important;
  padding: 9px 16px;
  border-radius: 999px;
}

/* Botón menú móvil — oculto para evitar cuadradito */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
}

/* ===================== */
/* HERO */
/* ===================== */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 30px 0 40px;
}

.hero-left h1 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-left p {
  color: var(--muted);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #ccc;
  font-weight: 600;
  background: #fff;
}

.btn.primary {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

/* ===================== */
/* SLIDER */
/* ===================== */

.slider {
  width: 100%;
  height: 360px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  background: #000;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* ===================== */
/* SERVICIOS */
/* ===================== */

.servicios {
  text-align: center;
  padding: 20px 0 60px;
}

.servicios h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
}

.servicios .intro {
  max-width: 700px;
  margin: 0 auto 34px;
  color: var(--muted);
}

.servicios-fila {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: center;
  margin-bottom: 34px;
}

.servicio {
  flex: 1 1 320px;
  background: #fafafa;
  padding: 30px 26px;
  border-radius: 18px;
  border: 1px solid #ececec;
  text-align: center;
  transition: .25s ease;
}

.servicio h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 10px;
}

.servicio p {
  color: #555;
  line-height: 1.6;
}

.servicio:hover {
  background: #fff;
  border-color: #ccc;
  transform: translateY(-4px);
  box-shadow: 0 13px 30px rgba(0,0,0,0.06);
}

/* Separador */
.servicios-divider {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin: 34px 0 20px;
}

/* ===================== */
/* CONTACTO */
/* ===================== */

.contacto-directo-titulo {
  font-family: 'Playfair Display', serif;
  font-size: 33px;
  text-align: center;
  margin-bottom: 0;
}

.contacto-directo-sub {
  text-align: center;
  font-size: 23px;
  color: var(--muted);
  margin: 4px 0;
}

.contacto-section {
  padding: 20px 0 40px;
}

/* CAMBIO 1: una sola columna */
.contacto-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr; 
  gap: 40px;
  align-items: flex-start;
}

/* Fotos */
.contacto-fotos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.foto-contacto {
  width: 520px;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
}

/* ===================== */
/* FOOTER */
/* ===================== */

.footer {
  text-align: center;
  padding: 30px 0 40px;
  border-top: 1px solid #eee;
  margin-top: 40px;
}

.footer-copy {
  font-size: 14px;
  color: #888;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
}

.footer-links a {
  color: #888;
}

.footer-links a:hover {
  color: #111;
}

.footer-links span {
  color: #c0c0c0;
}

/* ===================== */
/* WHATSAPP */
/* ===================== */

.whatsapp-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 50;
}

.whatsapp-btn img {
  width: 30px;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .contacto-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .slider {
    height: 220px;
  }
}
