/* RESET & VARIABLES */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Mulish:wght@400;500;600;700&display=swap');

:root {
  --primary-dark: #222222;
  --secondary-dark: #333333;
  --brown-main: #8c6a51; /* Color principal basado en la imagen */
  --brown-light: #b08d72;
  --brown-dark: #6e4e37;
  --bg-light: #fefcfb;
  --bg-tan: #f8f5f0;
  --bg-cream: #fff9f5;
  --text-main: #4a4a4a;
  --text-light: #7a7a7a;
  --white: #ffffff;
  
  --font-heading: 'Lora', serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 4px 10px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
  
  --radius: 4px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-weight: 600;
  line-height: 1.3;
}

.page-header h1, .page-header h2, .page-header h3 {
  color: var(--white) !important;
}

a { text-decoration: none; color: var(--brown-main); transition: var(--transition); }
a:hover { color: var(--brown-dark); }

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}
.btn-primary {
  background-color: var(--brown-main);
  color: var(--white);
}
.btn-primary:hover {
  background-color: var(--brown-dark);
  color: var(--white);
}
.btn-outline {
  background-color: transparent;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}
.btn-outline:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

/* TOP BAR */
.topbar {
  background-color: var(--bg-cream);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid #efeae6;
  color: var(--text-light);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-contact {
  display: flex;
  gap: 1.5rem;
}
.topbar-contact span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* HEADER */
header {
  background: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo span { color: var(--brown-main); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: #5F5F5F;
  font-family: 'Mulish', sans-serif;
  font-weight: 500;
  font-size: 15px;
}
.nav-links a:hover { color: var(--brown-main); }

/* HERO SECTION */
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1573497620053-ea5300f94f21?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
  padding: 8rem 0 12rem 0; /* Extra bottom padding for overlapping card */
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 34, 34, 0.7); /* Dark overlay */
}
.hero .container {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #ddd;
}

/* OVERLAPPING INFO CARD */
.overlap-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  margin-top: -6rem; /* Pulls it up over the hero */
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.overlap-info {
  flex: 2;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
}
.overlap-info > div { flex: 1; }
.overlap-cta {
  flex: 1;
  background: var(--brown-main);
  color: var(--white);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.overlap-cta h3 { color: var(--white); margin-bottom: 1rem; }

/* ABOUT SECTION */
.about-section {
  padding: 6rem 0;
  background: var(--bg-light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.quote-box {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--white);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  max-width: 250px;
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--primary-dark);
}
.about-text h4 {
  color: var(--brown-main);
  text-transform: uppercase;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* STATS BAR */
.stats-bar {
  background: var(--bg-cream);
  padding: 4rem 0;
  border-top: 1px solid #efeae6;
  border-bottom: 1px solid #efeae6;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-size: 2.5rem;
  color: var(--brown-main);
  margin-bottom: 0.5rem;
}
.stat-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SERVICES SECTION (DARK) */
.services-dark {
  background: var(--primary-dark);
  padding: 6rem 0;
  color: var(--white);
}
.services-dark h4 { color: var(--brown-main); }
.services-dark h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 3rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
.service-card-dark {
  display: flex;
  gap: 1.5rem;
}
.service-icon {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--brown-main);
  flex-shrink: 0;
}
.service-card-dark h3 { color: var(--white); margin-bottom: 0.5rem; }

/* PRICING */
.pricing-section {
  padding: 6rem 0;
  background: var(--bg-tan);
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.pricing-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.pricing-card .price { font-size: 3rem; color: var(--brown-main); font-family: var(--font-heading); margin-bottom: 1.5rem; }

/* TESTIMONIAL */
.testimonial-banner {
  background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover fixed;
  padding: 8rem 0;
  position: relative;
  text-align: center;
  color: white;
}
.testimonial-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,34,34,0.85);
}
.testimonial-banner .container { position: relative; z-index: 2; max-width: 800px; }
.testimonial-banner h2 { color: white; font-size: 2.5rem; font-style: italic; margin-bottom: 2rem; }

/* FOOTER */
footer {
  background: #1a1a1a;
  color: #999;
  padding: 5rem 0 2rem 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
footer h3 { color: white; margin-bottom: 1.5rem; font-size: 1.2rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.8rem; }
footer a { color: #999; }
footer a:hover { color: var(--brown-main); }
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
}

/* UTILS */
.text-center { text-align: center; }
.section-subtitle { color: var(--brown-main); text-transform: uppercase; font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 2px; display: block; margin-bottom: 1rem; }
.section-title { font-size: 2.5rem; margin-bottom: 1.5rem; }

/* Forms */
.form-control {
  width: 100%;
  padding: 1rem;
  border: 1px solid #eee;
  background: #f9f9f9;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-family: var(--font-body);
}
.form-control:focus { outline: none; border-color: var(--brown-main); }

/* EXTRACTED STYLES & UTILS */
.subtitle-white { color: var(--white); }
.hero-actions { margin-top: 2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-outline-white { border-color: var(--white); color: var(--white); }
.btn-outline-white:hover { background-color: var(--white); color: var(--primary-dark); }
.overlap-info-title { margin-bottom: 1rem; color: var(--text-main); }
.overlap-info-text { color: var(--text-light); font-size: 0.9rem; }
.overlap-cta-text { margin-bottom: 1.5rem; font-size: 0.9rem; opacity: 0.9; }
.icon-main { color: var(--brown-main); }
.icon-light { color: var(--brown-light); }
.mt-sm { margin-top: 0.5rem; }
.mb-md { margin-bottom: 1.5rem; }
.mb-lg { margin-bottom: 2rem; }
.mb-0 { margin-bottom: 0 !important; }
.signature-img { max-width: 150px; opacity: 0.6; margin-bottom: 2rem; }
.section-header-flex { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 4rem; flex-wrap: wrap; gap: 1.5rem; }
.section-header-content { max-width: 600px; }
.service-desc { color: var(--text-light); font-size: 0.95rem; }
.video-banner-section { margin-top: -4rem; position: relative; z-index: 10; }
.video-banner-bg { background: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover; border-radius: var(--radius); padding: 6rem; text-align: center; box-shadow: var(--shadow-lg); position: relative; }
.video-banner-overlay { position: absolute; top:0; left:0; right:0; bottom:0; background: rgba(0,0,0,0.4); border-radius: var(--radius); }
.btn-play-video { position: relative; z-index: 2; display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; background: var(--white); border-radius: 50%; color: var(--brown-main); font-size: 1.5rem; transition: var(--transition); }
.btn-play-video:hover { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255,255,255,0.2); }
.price-unit { font-size: 1rem; color: var(--text-light); font-family: var(--font-body); }
.price-light { color: var(--brown-light); }
.price-light .price-unit { color: rgba(255,255,255,0.7); }
.pricing-features { text-align: left; list-style: none; margin-bottom: 2rem; }
.pricing-features li { margin-bottom: 0.5rem; border-bottom: 1px solid #eee; padding-bottom: 0.5rem; }
.pricing-card-dark .pricing-features li { border-color: rgba(255,255,255,0.1); }
.pricing-card-dark h3 { color: var(--white); }
.btn-block { width: 100%; display: block; text-align: center; }
.btn-block-large { width: 100%; padding: 1.2rem; font-weight: 700; letter-spacing: 2px; }
.testimonial-author { text-transform: uppercase; letter-spacing: 2px; font-weight: 600; color: var(--brown-light); }
.form-col-span-2 { grid-column: span 2; }
.info-column-border { border-left: 1px solid #eaeaea; padding-left: 3rem; }
@media (max-width: 900px) {
  .info-column-border { border-left: none; padding-left: 0; }
  .form-col-span-2 { grid-column: span 1; }
  .booking-form-grid { grid-template-columns: 1fr; }
}

/* HARDENING - OVERFLOW CONTROL */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.text-truncate-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* PROCESS SECTION (REDESIGNED) */
.process-section-wrapper { padding: 8rem 0; background-color: var(--white); position: relative; overflow: hidden; }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.process-image-comp { position: relative; width: 100%; padding-left: 2rem; padding-bottom: 2rem; }
.process-img-dots { position: absolute; top: -3rem; left: -3rem; width: 250px; height: 250px; background-image: radial-gradient(#d4bca9 20%, transparent 20%); background-size: 20px 20px; background-position: 0 0; opacity: 0.6; z-index: 1; }
.process-img-bg { position: absolute; bottom: -3rem; right: -2rem; width: 85%; height: 85%; background: url('https://images.unsplash.com/photo-1518531933037-91b2f5f229cc?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&q=80') center/cover; z-index: 2; }
.process-img-main { position: relative; z-index: 3; width: 100%; box-shadow: var(--shadow-lg); background: white; }
.process-img-main img { width: 100%; display: block; }
.process-content-header { margin-bottom: 3rem; }
.process-subtitle { display: flex; align-items: center; gap: 1rem; color: var(--brown-main); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.process-subtitle::before { content: ''; display: block; width: 40px; height: 2px; background-color: var(--brown-main); }
.process-title { font-size: 2.8rem; color: var(--primary-dark); margin-bottom: 1.5rem; line-height: 1.2; }
.process-desc { color: var(--text-light); font-size: 1rem; line-height: 1.8; }
.process-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.process-step { display: flex; gap: 1.5rem; }
.process-step-icon-col { display: flex; flex-direction: column; align-items: center; }
.process-step-icon { width: 55px; height: 55px; border-radius: 50%; background-color: #a67c52; color: white; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; z-index: 2; }
.process-step-line { flex-grow: 1; width: 2px; background-image: linear-gradient(to bottom, #a67c52 50%, rgba(255,255,255,0) 0%); background-position: right; background-size: 2px 8px; background-repeat: repeat-y; margin-top: 0.5rem; margin-bottom: -1.5rem; min-height: 40px; opacity: 0.6; }
.process-step:last-child .process-step-line { display: none; }
.process-step-content { padding-top: 0.5rem; }
.process-step-content h4 { font-size: 0.95rem; color: var(--brown-main); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; font-family: var(--font-body); font-weight: 700; }
.process-step-content p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* CONTACT & BOOKING SECTION (REDESIGNED) */
.booking-section-wrapper { position: relative; padding: 6rem 0; background: linear-gradient(to bottom, var(--primary-dark) 0%, var(--primary-dark) 45%, var(--bg-light) 45%, var(--bg-light) 100%); }
.booking-box { display: flex; flex-wrap: wrap; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); overflow: hidden; position: relative; z-index: 10; }
.booking-image-side { flex: 1; min-width: 300px; background: url('https://images.unsplash.com/photo-1573497019940-1c28c88b4f3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80') center/cover; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4rem 2rem; color: white; text-align: center; }
.booking-image-side::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(34, 34, 34, 0.75); }
.booking-image-content { position: relative; z-index: 2; }
.booking-icon-circle { width: 70px; height: 70px; background: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--brown-light); font-size: 2rem; box-shadow: 0 0 0 10px rgba(255,255,255,0.2); }
.booking-image-content h2 { color: white; font-size: 2.2rem; font-family: var(--font-heading); line-height: 1.2; font-weight: 500; }
.booking-form-side { flex: 1.5; min-width: 350px; background: #f7f6f2; padding: 4rem; }
.booking-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
.booking-form-group { display: flex; flex-direction: column; }
.booking-form-group label { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text-main); }
.booking-form-control { padding: 1rem; border: none; border-radius: var(--radius); background: white; font-family: var(--font-body); font-size: 0.95rem; box-shadow: 0 2px 10px rgba(0,0,0,0.02); }
.booking-form-control:focus { outline: 2px solid var(--brown-main); }
.info-columns-wrapper { margin-top: 5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; position: relative; z-index: 10; }
.info-column { display: flex; gap: 1.5rem; align-items: flex-start; }
.info-column-icon { font-size: 2.5rem; color: var(--brown-light); }
.info-column-content h4 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--primary-dark); }
.info-column-content p { font-size: 0.95rem; color: var(--text-light); margin-bottom: 0; line-height: 1.6; }
.info-column-content a { font-size: 0.9rem; font-weight: 700; margin-top: 0.5rem; display: inline-block; color: var(--brown-main); text-transform: uppercase; letter-spacing: 1px; }

/* ANIMATIONS & MICRO-INTERACTIONS */
:root {
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-quart), transform 0.8s var(--ease-out-quart);
    will-change: opacity, transform;
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-on-scroll.fade-right {
    transform: translateX(-30px);
}
.reveal-on-scroll.fade-left {
    transform: translateX(30px);
}
.reveal-on-scroll.fade-right.is-visible,
.reveal-on-scroll.fade-left.is-visible {
    transform: translateX(0);
}
.stagger-children > .stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-quart), transform 0.8s var(--ease-out-quart);
}
.stagger-children.is-visible > .stagger-item {
    opacity: 1;
    transform: translateY(0);
}
.stagger-children.is-visible > .stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.is-visible > .stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.is-visible > .stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.is-visible > .stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.is-visible > .stagger-item:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.is-visible > .stagger-item:nth-child(6) { transition-delay: 0.6s; }

/* Polish - Buttons & Inputs */
.btn {
  transition: all 0.3s var(--ease-out-quart);
}
.btn:active {
  transform: scale(0.98);
}
.btn:focus-visible, .booking-form-control:focus-visible {
  outline: 2px solid var(--brown-main);
  outline-offset: 2px;
}

/* Header & Footer extracted classes */
.social-link { color: inherit; margin-left: 1rem; transition: color 0.3s; }
.social-link:hover { color: var(--brown-light); }
.footer-logo { color: white; margin-bottom: 1.5rem; display: inline-block; }
.footer-desc { margin-bottom: 1.5rem; }
.footer-social { font-size: 1.2rem; margin-right: 1rem; color: white; transition: color 0.3s; }
.footer-social:hover { color: var(--brown-light); }
.newsletter-form { display: flex; }
.newsletter-input { padding: 0.8rem; border: none; outline: none; width: 100%; border-radius: 4px 0 0 4px; }
.newsletter-input:focus { box-shadow: inset 0 0 0 2px var(--brown-light); }
.newsletter-btn { background: var(--brown-main); color: white; border: none; padding: 0.8rem 1.2rem; cursor: pointer; border-radius: 0 4px 4px 0; transition: background 0.3s; }
.newsletter-btn:hover { background: var(--brown-light); }

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

}

/* MODAL STYLES */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex; align-items: center; justify-content: center;
    z-index: 10000;
    opacity: 0; pointer-events: none;
    transition: var(--transition);
}
.modal-overlay.active {
    opacity: 1; pointer-events: all;
}
.modal-content {
    background: white; padding: 2.5rem;
    border-radius: var(--radius);
    width: 90%; max-width: 500px;
    position: relative;
    transform: translateY(-20px);
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}
.modal-overlay.active .modal-content {
    transform: translateY(0);
}
.modal-close {
    position: absolute; top: 1rem; right: 1.5rem;
    font-size: 2rem; color: var(--text-light);
    cursor: pointer; transition: var(--transition);
    line-height: 1;
}
.modal-close:hover { color: var(--primary-dark); }
.btn-whatsapp-subtle {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.7rem 1.5rem;
    border: 1px solid #ccc;
    color: var(--text-main); border-radius: var(--radius);
    font-size: 0.9rem; transition: var(--transition);
    text-decoration: none; font-weight: 500;
}
.btn-whatsapp-subtle:hover {
    border-color: var(--brown-main); color: var(--brown-main);
    background: var(--bg-tan);
}

/* VALIDACIÓN INLINE */
.error-text {
    color: #e63946;
    font-size: 0.8rem;
    display: block;
    margin-top: 5px;
    font-weight: 500;
}
.error-input {
    border-color: #e63946 !important;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Navbar & Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
    z-index: 100;
}

@media (max-width: 992px) {
    /* Tablet & Small Desktop Adjustments */
    .about-grid, .booking-form-grid, .process-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .pricing-grid, .info-columns-wrapper, .blog-cards-grid, .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .timeline-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-images {
        display: none; /* Hide complex overlapping images on smaller screens for simplicity */
    }
}

@media (max-width: 768px) {
    /* Mobile Adjustments */
    
    /* Topbar */
    .topbar .container {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .topbar-contact span {
        display: block;
        margin-bottom: 0.25rem;
    }

    /* Navbar */
    .mobile-menu-btn {
        display: block;
    }

    .btn-reserva-desktop {
        display: none; /* Ocultar el botón principal en móvil para ahorrar espacio */
    }

    #main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        display: none; /* Hidden by default */
        flex-direction: column;
        padding: 1rem 0;
        z-index: 99;
    }

    #main-nav.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Typography */
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Grids to 1 Column */
    .pricing-grid, .info-columns-wrapper, .blog-cards-grid, .stats-grid, .services-grid, .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Adjust padding & margins */
    section {
        padding: 4rem 0;
    }
    
    .hero-section {
        padding: 6rem 0 4rem;
        min-height: auto;
    }

    .overlap-card {
        flex-direction: column;
    }

    .overlap-info {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .overlap-cta {
        padding: 1.5rem;
    }
    
    .info-column {
        padding: 1.5rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-col h4 {
        margin-bottom: 1rem;
        margin-top: 1.5rem;
    }
}
