/*
Theme Name:   Houzez Child — ÉIRE Bienes Raíces
Theme URI:    https://eirebr.com.mx
Description:  Tema hijo de Houzez personalizado para ÉIRE Bienes Raíces, Guadalajara, México.
Author:       ÉIRE Bienes Raíces
Author URI:   https://eirebr.com.mx
Template:     houzez
Version:      3.0.0
Text Domain:  houzez-child
*/

/* ============================================================
   ÉIRE BIENES RAÍCES — Luxury White Theme
   Cormorant Garamond + Montserrat
   ============================================================ */

/* ==========================================================
   1. RESET & BASE
   ========================================================== */

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f7f7f5;
  --red: #DB352F;
  --blue: #1B3F8B;
  --dark-bg: #111827;
  --text-primary: #1a1a1a;
  --text-body: #555555;
  --text-muted: #888888;
  --border: #e8e8e8;
  --gold-shadow: 0 4px 30px rgba(219, 53, 47, 0.15);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
}

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

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  color: var(--text-primary) !important;
  background-color: var(--bg-primary) !important;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}


/* ==========================================================
   2. UTILITY CLASSES
   ========================================================== */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.gold-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 500;
  font-family: var(--font-body);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 600px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background-color: #DB352F;
  color: #fff !important;
  padding: 14px 36px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #C02B25;
  transform: translateY(-3px);
  box-shadow: 0 4px 30px rgba(219, 53, 47, 0.35);
  color: #fff !important;
}

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue) !important;
  padding: 14px 36px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--blue);
  color: #fff !important;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.text-center {
  text-align: center;
}


/* ==========================================================
   3. NAVBAR (custom home template)
   ========================================================== */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
  background: transparent;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo img {
  width: 128px;
  height: auto;
}

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

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

#navbar.scrolled .nav-links a {
  color: var(--text-primary);
}

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

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.78rem;
  color: var(--text-primary) !important;
}

.dropdown-menu a:hover {
  color: var(--red) !important;
  background: var(--bg-secondary);
}

.nav-cta .btn-primary {
  padding: 10px 24px;
  font-size: 0.72rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0.5rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

#navbar.scrolled .hamburger span {
  background: var(--text-primary);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 999;
  padding: 6rem 2rem 2rem;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu a {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mobile-menu a:hover {
  color: var(--red);
}


/* ==========================================================
   4. HERO SECTION
   ========================================================== */

#hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content .gold-label {
  color: var(--red);
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-dots {
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.hero-dot.active {
  background: var(--red);
  transform: scale(1.2);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 2px solid var(--red);
}

.hero-stat {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 1.2rem 1rem;
  border-right: 1px solid var(--border);
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--red);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.3rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-stat {
    padding: 0.8rem 0.5rem;
  }
  .hero-stat-number {
    font-size: 1.4rem;
  }
  .hero-stat-label {
    font-size: 0.6rem;
  }
}


/* ==========================================================
   5. SERVICIOS SECTION
   ========================================================== */

#servicios {
  background: var(--bg-primary);
}

.modelo-header {
  text-align: center;
  margin-bottom: 3rem;
}

.modelo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.modelo-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
}

.modelo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.modelo-card:hover img {
  transform: scale(1.1);
}

.modelo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    transparent 60%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: all 0.4s ease;
}

.modelo-card h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.modelo-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}


/* ==========================================================
   6. PROPIEDADES CAROUSEL
   ========================================================== */

#propiedades {
  background: var(--bg-secondary);
  overflow: hidden;
}

.destinos-header {
  text-align: center;
  margin-bottom: 3rem;
}

.carousel-wrapper {
  position: relative;
  padding: 0 3rem;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.destino-card {
  min-width: 320px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
}

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

.destino-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.destino-info {
  padding: 1.5rem;
}

.destino-info h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.destino-specs {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.destino-specs span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.destino-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--red);
  font-weight: 600;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--blue);
  background: rgba(255, 255, 255, 0.9);
  color: var(--blue);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 5;
}

.carousel-btn:hover {
  background: var(--blue);
  color: #fff;
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}


/* ==========================================================
   7. PROPUESTA DE VALOR
   ========================================================== */

#valor {
  background: var(--bg-primary);
}

.propuesta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.propuesta-item {
  text-align: center;
  padding: 2rem;
}

.propuesta-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  color: var(--red);
  line-height: 1;
}

.propuesta-item h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
}

.propuesta-item p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}


/* ==========================================================
   8. EXPERIENCIA SECTION
   ========================================================== */

#nosotros {
  background: var(--bg-secondary);
}

.experiencia-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.experiencia-text .section-subtitle {
  margin-bottom: 1rem;
}

.experiencia-steps {
  margin-top: 2rem;
}

.step {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--red);
  font-weight: 600;
  line-height: 1;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.3rem;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
}

.experiencia-image {
  border-radius: 10px;
  overflow: hidden;
}

.experiencia-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}


/* ==========================================================
   9. ZONA DESTACADA (Parallax)
   ========================================================== */

#zona-highlight {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.boutique-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.boutique-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 4rem 2rem;
}

.boutique-content .gold-label {
  color: var(--red);
}

.boutique-content h2 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.boutique-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.7;
  font-size: 1.05rem;
}


/* ==========================================================
   10. POR QUÉ ÉIRE
   ========================================================== */

#por-que {
  background: var(--bg-primary);
}

.formula-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.formula-text .section-subtitle {
  margin-bottom: 1.5rem;
}

.formula-image {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.formula-image img {
  width: 100%;
  object-fit: cover;
}

.formula-image iframe {
  border-radius: 10px;
  display: block;
}


/* ==========================================================
   11. TESTIMONIOS
   ========================================================== */

#testimonios {
  background: var(--bg-secondary);
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-slide {
  display: none;
  text-align: center;
  padding: 2rem;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-stars {
  color: var(--red);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 4px;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  color: var(--text-primary);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 2rem;
  position: relative;
  padding: 0 2rem;
}

.testimonial-quote::before {
  content: open-quote;
  font-size: 4rem;
  color: var(--red);
  opacity: 0.3;
  position: absolute;
  top: -1rem;
  left: -1rem;
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--red);
  transform: scale(1.2);
}

.testimonial-dot:hover {
  background: var(--red);
  opacity: 0.6;
}


/* ==========================================================
   12. ZONAS
   ========================================================== */

#zonas {
  background: var(--bg-primary);
}

.amenidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.amenidad-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

.amenidad-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.amenidad-card:hover img {
  transform: scale(1.05);
}

.amenidad-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    transparent 50%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
}

.amenidad-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fff;
}

.amenidad-overlay p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.4rem;
  line-height: 1.5;
}


/* ==========================================================
   13. MARQUEE
   ========================================================== */

#marquee {
  overflow: hidden;
  padding: 2rem 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  gap: 4rem;
  animation: marquee 25s linear infinite;
  width: max-content;
  align-items: center;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ==========================================================
   14. CONTACTO
   ========================================================== */

#contacto {
  background: var(--bg-primary);
}


/* ==========================================================
   15. FOOTER
   ========================================================== */

#footer {
  background: var(--dark-bg);
  color: #fff;
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
  line-height: 1.5;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 1.2rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5) !important;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--red) !important;
}

.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  margin-bottom: 0 !important;
}

.footer-social a:hover {
  border-color: var(--red);
  color: var(--red) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3) !important;
}

.footer-bottom a:hover {
  color: var(--red) !important;
}


/* ==========================================================
   15. PROPERTY BADGES
   ========================================================== */

.badge-venta {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #DB352F;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.badge-renta {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #1B3F8B;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}


/* ==========================================================
   16. WHATSAPP FLOAT
   ========================================================== */

.whatsapp-btn,
.eire-whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover,
.eire-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.eire-whatsapp-float svg {
  width: 28px;
  height: 28px;
}


/* ==========================================================
   17. RESPONSIVE
   ========================================================== */

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .modelo-grid {
    grid-template-columns: 1fr;
  }
  .modelo-card {
    aspect-ratio: 16 / 9;
  }
  .experiencia-grid {
    grid-template-columns: 1fr;
  }
  .experiencia-image {
    order: -1;
  }
  .experiencia-image img {
    min-height: 350px;
  }
  .formula-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .carousel-wrapper {
    padding: 0 2rem;
  }
}

@media (max-width: 768px) {
  .propuesta-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .propuesta-item {
    padding: 1.5rem;
  }
  .amenidades-grid {
    grid-template-columns: 1fr;
  }
  .amenidad-card {
    aspect-ratio: 16 / 9;
  }
  .destino-card {
    min-width: 280px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }
  .section-title {
    font-size: 2rem;
  }
  #zona-highlight {
    background-attachment: scroll;
  }
  .boutique-content {
    padding: 3rem 1.5rem;
  }
  .container {
    padding: 0 1rem;
  }
  .nav-container {
    padding: 0 1rem;
  }
  .carousel-wrapper {
    padding: 0 1rem;
  }
  .carousel-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .testimonial-quote {
    font-size: 1.2rem;
    padding: 0 1rem;
  }
  .step {
    gap: 1rem;
  }
  .step-number {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .btn-primary,
  .btn-outline {
    padding: 12px 28px;
    font-size: 0.75rem;
  }
  .modelo-card {
    aspect-ratio: 4 / 3;
  }
  .destino-card {
    min-width: 260px;
  }
  .destino-card img {
    height: 180px;
  }
  .footer-bottom {
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-up {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .marquee-track {
    animation: none;
  }
  .hero-slide {
    transition: none;
  }
  .modelo-card img,
  .amenidad-card img {
    transition: none;
  }
  .carousel-track {
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}


/* ==========================================================
   18. HOUZEZ GLOBAL OVERRIDES
   Reset any Houzez dark/default styles for non-home pages
   ========================================================== */

/* Body & background */
body,
.page-wrapper,
.fh-wrap,
.fh-content-area {
  background-color: #ffffff !important;
  color: #1a1a1a !important;
}

/* Houzez header on non-home pages */
.header-main,
.fh-header-wrap,
header.site-header,
#header {
  background-color: rgba(255,255,255,0.97) !important;
  border-bottom: 1px solid #e8e8e8 !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05) !important;
}

/* Logo in Houzez header */
.logo.logo-desktop img,
.logo img,
.header-logo img {
  max-width: 180px !important;
  width: auto !important;
  height: auto !important;
}

/* Nav links */
.fh-header-wrap .main-menu > li > a,
.header-main .main-menu > li > a,
#header .main-menu > li > a {
  color: #1a1a1a !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
}

.fh-header-wrap .main-menu > li > a:hover,
.header-main .main-menu > li > a:hover {
  color: #DB352F !important;
}

/* Dropdown menus */
.sub-menu,
.dropdown-menu-houzez {
  background: #fff !important;
  border: 1px solid #e8e8e8 !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1) !important;
}

.sub-menu li a,
.dropdown-menu-houzez li a {
  color: #1a1a1a !important;
}

.sub-menu li a:hover,
.dropdown-menu-houzez li a:hover {
  color: #DB352F !important;
  background: #f7f7f5 !important;
}

/* Houzez property cards */
.listing-item,
.property-listing,
.rh_list_card {
  background: #fff !important;
  border: 1px solid #e8e8e8 !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06) !important;
}

.listing-item:hover,
.property-listing:hover {
  box-shadow: 0 4px 30px rgba(219,53,47,0.15) !important;
}

/* Houzez buttons */
.btn,
.button,
.houzez-btn,
input[type="submit"],
button[type="submit"] {
  background-color: #DB352F !important;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif !important;
  border-radius: 4px !important;
  border: none !important;
}

.btn:hover,
.button:hover,
.houzez-btn:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
  background-color: #C02B25 !important;
}

/* Page title areas */
.page-title-section,
.rh_banner,
.rh_section_title {
  background-color: #f7f7f5 !important;
  color: #1a1a1a !important;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  background: #fff !important;
  color: #1a1a1a !important;
  border: 1px solid #e8e8e8 !important;
  font-family: 'Montserrat', sans-serif !important;
}

/* Footer (Houzez default, only shows on non-home pages) */
.site-footer,
.footer-widget-area,
footer.fh-footer {
  background: #111827 !important;
  color: #fff !important;
}

/* Houzez price/badges */
.rh_list_card__entry_price,
.listing-unit-price {
  color: #DB352F !important;
  font-family: 'Cormorant Garamond', Georgia, serif !important;
}

/* Pagination */
.pagination .page-numbers.current,
.page-numbers.current {
  background: #DB352F !important;
  color: #fff !important;
}

.pagination .page-numbers:hover,
.page-numbers:hover {
  color: #DB352F !important;
}

/* Sidebar */
.widget-title,
.widgettitle {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  color: #1a1a1a !important;
  font-size: 1.4rem !important;
  font-weight: 400 !important;
}
