/* ================================================
   RAÍCES — Apartamentos Canillas de Aceituno
   Paleta cálida mediterránea · Playfair + Lato
================================================ */

/* ===== VARIABLES ===== */
:root {
  --terracotta:      #C4714A;
  --terracotta-dark: #9E5535;
  --terracotta-light:#F0D5C3;
  --olive:           #7A9E6C;
  --olive-dark:      #5A7A50;
  --olive-light:     #D4E6CC;
  --cream:           #FDF8F0;
  --cream-dark:      #F0E6D4;
  --sand:            #D4A96A;
  --brown:           #3D2214;
  --brown-mid:       #6B4530;
  --text:            #4A3728;
  --text-light:      #7A6558;
  --white:           #FFFFFF;
  --sky:             #8AB4C8;

  --shadow-sm:  0 2px 8px rgba(61,34,20,0.08);
  --shadow:     0 8px 24px rgba(61,34,20,0.12);
  --shadow-lg:  0 20px 48px rgba(61,34,20,0.18);
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Lato', -apple-system, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}

.eyebrow-light { color: var(--terracotta-light); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,113,74,0.35);
}

.btn-hero {
  background: var(--terracotta);
  color: var(--white);
  padding: 16px 36px;
  font-size: 1rem;
  border-color: var(--terracotta);
}
.btn-hero:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,113,74,0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  padding: 14px 32px;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.header.scrolled {
  background: rgba(253,248,240,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(61,34,20,0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 32px;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-name,
.logo > :first-child,
.logo {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.35s;
  letter-spacing: -0.02em;
}

.logo-de {
  font-weight: 400;
  opacity: 0.75;
  transition: opacity 0.35s;
}

.header.scrolled .logo { color: var(--brown); }
.header.scrolled .logo-name { color: var(--brown); }
.header.scrolled .logo-de { opacity: 0.6; }

.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.35s;
}
.header.scrolled .logo-sub { color: var(--text-light); }

.nav-links {
  display: flex;
  gap: 36px;
  margin: 0 auto;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.header.scrolled .nav-links a { color: var(--text-light); }
.header.scrolled .nav-links a:hover { color: var(--terracotta); }

.nav-cta { display: inline-flex; }

/* Selector de idioma custom */
.lang-selector {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.2s, border-color 0.2s;
}
.lang-btn:hover { background: rgba(255,255,255,0.15); }
.header.scrolled .lang-btn {
  border-color: rgba(0,0,0,0.15);
  color: var(--text-light);
}

.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  min-width: 140px;
  z-index: 200;
}
.lang-menu.open { display: block; }
.lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 16px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--text-light);
  cursor: pointer;
}
.lang-menu button:hover { background: var(--cream); }

/* Oculta el banner de Google Translate */
.goog-te-banner-frame { display: none !important; }
body { top: 0 !important; }
.header:not(.scrolled) .nav-cta {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.header:not(.scrolled) .nav-cta:hover {
  background: rgba(255,255,255,0.25);
  border-color: var(--white);
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.3s;
}
.header.scrolled .mobile-menu-btn span { background: var(--brown); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: var(--cream);
  box-shadow: 0 8px 24px rgba(61,34,20,0.12);
  padding: 24px 28px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 16px; }
.mobile-menu a { color: var(--brown); font-weight: 700; font-size: 1.05rem; }
.mobile-menu .btn { width: 100%; margin-top: 8px; justify-content: center; }
.mobile-link { display: block; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(30,15,5,0.65) 0%,
    rgba(80,35,10,0.55) 50%,
    rgba(196,113,74,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 48px;
  max-width: 780px;
}

.hero-booking-bar {
  position: relative;
  z-index: 2;
  padding: 0 0 48px;
}

.hero-booking-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0px 24px 54px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.hero-property-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px 24px 14px;
  border-bottom: 1px solid #f0ede8;
  flex-wrap: wrap;
}

.hero-property-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brown);
  white-space: nowrap;
}

.hero-property-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: #6b6b6b;
}

.hero-property-meta strong {
  color: var(--brown);
}

.opening-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: 50px;
  margin-bottom: 32px;
}

.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--terracotta-light);
}

.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 20px;
  right: 40px;
  left: auto;
  transform: none;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollDown 2s ease infinite;
}

@keyframes scrollDown {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.4; }
}

/* ===== PUEBLO (ABOUT) ===== */
.pueblo {
  padding: 120px 0 80px;
  background: var(--cream);
}

.pueblo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.pueblo-text .eyebrow { display: block; }

.pueblo-text h2 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 24px;
}

.pueblo-text p {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 1rem;
}

.pueblo-text p strong { color: var(--brown-mid); }

.pueblo-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-dark);
}

.stat { display: flex; flex-direction: column; }
.stat strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--terracotta);
  line-height: 1;
}
.stat span {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 4px;
}

.pueblo-image {
  position: relative;
}

.pueblo-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.pueblo-image-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(253,248,240,0.9);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--brown-mid);
  font-weight: 700;
}

/* Highlights */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.highlight-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.highlight-card:hover {
  border-color: var(--terracotta-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.highlight-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.highlight-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== APARTMENTS ===== */
.apartamentos {
  padding: 100px 0;
  background: var(--cream-dark);
}

.apt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}

.apt-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s;
}

.apt-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.apt-img-wrap {
  overflow: hidden;
  height: 220px;
}

.apt-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.apt-card:hover .apt-img-wrap img {
  transform: scale(1.05);
}

.apt-card-body {
  padding: 28px;
}

.apt-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 10px;
}

.apt-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* Amenities */
.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text);
  border: 1px solid var(--cream-dark);
}

.amenity span {
  color: var(--olive);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== EXPERIENCES ===== */
.experiencias {
  padding: 100px 0;
  background: var(--cream);
}

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

.exp-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s;
}

.exp-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.exp-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.exp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.exp-card:hover .exp-img-wrap img { transform: scale(1.06); }

.exp-overlay {
  position: absolute;
  top: 16px; left: 16px;
}

.exp-tag {
  display: inline-block;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.exp-body {
  padding: 28px;
}

.exp-body h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--brown);
  margin-bottom: 12px;
}

.exp-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.exp-detail {
  font-size: 0.8rem;
  color: var(--olive-dark);
  font-weight: 700;
}

/* ===== GALLERY ===== */
.galeria {
  padding: 100px 0 0;
  background: var(--cream-dark);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 6px;
  margin-top: 0;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.galeria-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.galeria-tall img { height: 450px; }
.galeria-wide img { height: 300px; }

.galeria-item:hover img { transform: scale(1.06); }

.galeria-hover {
  position: absolute;
  inset: 0;
  background: rgba(61,34,20,0.5);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s;
}

.galeria-item:hover .galeria-hover { opacity: 1; }

/* Gallery layout tweaks */
.galeria-tall { grid-row: span 1; }

/* ===== LOCATION ===== */
.ubicacion {
  padding: 100px 0;
  background: var(--cream);
}

.ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ubicacion-text .eyebrow { display: block; }

.ubicacion-text h2 {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 20px;
}

.ubicacion-text p {
  color: var(--text-light);
  margin-bottom: 32px;
}

.distancias {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dist-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
}

.dist-icon { font-size: 1.5rem; }

.dist-item div {
  display: flex;
  flex-direction: column;
}

.dist-item strong {
  color: var(--brown);
  font-size: 0.95rem;
}

.dist-item span {
  color: var(--text-light);
  font-size: 0.82rem;
  margin-top: 2px;
}

.ubicacion-map iframe {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ===== PRE-RESERVATION ===== */
.prereserva {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
}

.prereserva-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.prereserva-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.prereserva-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(40,18,5,0.82) 0%,
    rgba(80,35,10,0.75) 100%
  );
}

.prereserva-content {
  position: relative;
  z-index: 1;
}

.prereserva-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.prereserva-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 44px;
  font-weight: 300;
}

.prereserva-form {
  max-width: 680px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.prereserva-form input,
.prereserva-form select {
  width: 100%;
  padding: 16px 22px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.prereserva-form input::placeholder { color: rgba(255,255,255,0.55); }
.prereserva-form select option { color: var(--brown); background: var(--cream); }

.prereserva-form input:focus,
.prereserva-form select:focus {
  outline: none;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
}

.form-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show { display: block; }

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--olive);
  color: var(--white);
  font-size: 1.8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 12px;
}

.form-success p {
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  margin: 0 auto;
  max-width: 100%;
  text-align: center;
}

/* ===== CONTACTO ===== */
.contacto {
  position: relative;
  padding: 140px 0;
  text-align: center;
  overflow: hidden;
}

.contacto-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contacto-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.contacto-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(40,18,5,0.82) 0%,
    rgba(80,35,10,0.75) 100%
  );
}

.contacto-content {
  position: relative;
  z-index: 1;
}

.contacto-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.contacto-content > p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 44px;
  font-weight: 300;
}

.contacto-form {
  max-width: 680px;
  margin: 0 auto;
}

.contacto-form input,
.contacto-form textarea {
  width: 100%;
  padding: 16px 22px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.contacto-form textarea {
  resize: vertical;
  margin-bottom: 12px;
}

.contacto-form input::placeholder,
.contacto-form textarea::placeholder { color: rgba(255,255,255,0.55); }

.contacto-form input:focus,
.contacto-form textarea:focus {
  outline: none;
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.15);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--brown);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 56px;
}

.footer-brand .logo-light {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--cream);
  display: block;
  margin-bottom: 14px;
}

.footer-brand p {
  color: rgba(253,248,240,0.55);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(253,248,240,0.7);
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
  background: var(--terracotta);
  color: var(--white);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.9rem;
  color: rgba(253,248,240,0.55);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--terracotta-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(253,248,240,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .highlights { grid-template-columns: repeat(2, 1fr); }
  .amenities { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 900px) {
  .pueblo-grid { grid-template-columns: 1fr; gap: 48px; }
  .pueblo-image { order: -1; }
  .pueblo-image img { height: 360px; }
  .apt-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .ubicacion-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }

  .nav { height: 64px; }
  .logo > :first-child, .logo { font-size: 1.3rem; }
  .logo-sub { font-size: 0.55rem; }

  .section-header h2 { font-size: 2.2rem; }

  .hero-content { max-width: 100%; padding-top: 120px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  .countdown {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px 20px;
  }

  .highlights { grid-template-columns: 1fr 1fr; }

  .galeria-grid { grid-template-columns: 1fr 1fr; }
  .galeria-tall { grid-row: span 1; }
  .galeria-wide { grid-column: span 2; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { grid-column: span 1; }
}

/* ===== WHATSAPP FLOTANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 998;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.55);
  color: white;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-content { padding-top: 100px; }
  .pueblo-stats { flex-direction: column; gap: 20px; }
  .highlights { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr; }
  .galeria-grid { grid-template-columns: 1fr; }
  .galeria-wide { grid-column: span 1; }
  .galeria-item img,
  .galeria-tall img,
  .galeria-wide img { height: 240px; }
  .countdown-num { font-size: 1.6rem; }
}

/* ===== OCULTAR BANNER DE GOOGLE TRANSLATE ===== */
.goog-te-banner-frame,
.goog-te-menu-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip-description {
  display: none !important;
}
body {
  top: 0px !important;
}
