/* ============================================================
   LAURA Q SPA — Main Stylesheet
   Color principal: #e74266
   ============================================================ */

:root {
  --primary:       #e74266;
  --primary-dark:  #c92e52;
  --primary-light: #f5a5b5;
  --primary-pale:  #fde8ed;
  --accent:        #3d2b3d;
  --text:          #2d2d2d;
  --text-muted:    #777;
  --bg:            #ffffff;
  --bg-soft:       #fdf5f7;
  --border:        #f0d9df;
  --gold:          #c9a96e;
  --white:         #ffffff;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow:        0 4px 24px rgba(231, 66, 102, 0.10);
  --shadow-lg:     0 8px 48px rgba(231, 66, 102, 0.16);
  --transition:    all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'Jost', 'Segoe UI', sans-serif;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- PAGE LOADER ---- */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
#page-loader.hidden { opacity: 0; visibility: hidden; }

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

.loader-logo {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 4px;
  margin-bottom: 1rem;
  animation: pulse-logo 1.2s ease-in-out infinite alternate;
}

@keyframes pulse-logo {
  from { opacity: 0.4; transform: scale(0.95); }
  to   { opacity: 1;   transform: scale(1); }
}

.loader-bar {
  width: 120px;
  height: 3px;
  background: var(--primary-pale);
  border-radius: 9px;
  margin: 0 auto;
  overflow: hidden;
}
.loader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: var(--primary);
  border-radius: 9px;
  animation: loader-slide 1.2s ease-in-out infinite;
}
@keyframes loader-slide {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 400;
  padding: 7px 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.top-bar a {
  color: var(--white);
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s;
}
.top-bar a:hover { opacity: 1; }
.top-bar-right a { font-size: 1rem; }

/* ---- NAVBAR ---- */
#navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 16px rgba(231,66,102,0.07);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(231,66,102,0.12); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.logo-fallback { align-items: center; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); background: var(--primary-pale); }

.btn-nav {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 40px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  margin-left: 8px;
  transition: var(--transition) !important;
  box-shadow: 0 2px 12px rgba(231,66,102,0.25);
}
.btn-nav:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(231,66,102,0.35);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--primary-pale); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 9px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- HERO ---- */
.hero {
  position: relative;
  height: calc(100vh - 106px);
  min-height: 520px;
  max-height: 820px;
  overflow: hidden;
}

.hero-slider { height: 100%; position: relative; }

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61,43,61,0.72) 0%, rgba(231,66,102,0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 0 48px;
  color: var(--white);
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 1rem;
  background: rgba(255,255,255,0.10);
  padding: 5px 14px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-content h1 em { color: var(--primary-light); font-style: italic; }
.hero-content p {
  font-size: 1.05rem;
  opacity: 0.90;
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: var(--primary); border-color: var(--primary); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--primary); transform: scale(1.3); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(231,66,102,0.30);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(231,66,102,0.40);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 0.9rem;
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-pale);
  color: var(--primary);
  padding: 9px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.83rem;
  transition: var(--transition);
  margin-top: auto;
}
.btn-service:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--primary);
  padding: 28px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.trust-item i {
  font-size: 1.6rem;
  color: rgba(255,255,255,0.85);
  flex-shrink: 0;
}
.trust-item div { line-height: 1.3; }
.trust-item strong { display: block; font-size: 1rem; font-weight: 700; }
.trust-item span { font-size: 0.78rem; opacity: 0.85; }

/* ---- SECTION COMMONS ---- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
  display: block;
}
.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.2;
}
.section-header h2 em { font-style: italic; color: var(--primary); }
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0.8rem auto 0;
}

/* ---- NOSOTROS ---- */
.section-nosotros {
  padding: 90px 0;
  background: var(--bg-soft);
}
.nosotros-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.nosotros-img {
  position: relative;
}
.nosotros-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 520px;
  box-shadow: var(--shadow-lg);
}
.nosotros-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(231,66,102,0.35);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.badge-number { display: block; font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; line-height: 1; }
.badge-text { display: block; font-size: 0.72rem; opacity: 0.9; letter-spacing: 1px; margin-top: 4px; }

.nosotros-text { }
.nosotros-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; }
.nosotros-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.nosotros-text h2 em { font-style: italic; color: var(--primary); }

.nosotros-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.nosotros-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}
.nosotros-list li i { color: var(--primary); font-size: 1rem; }

/* ---- SERVICIOS ---- */
.section-servicios {
  padding: 90px 0;
  background: var(--bg);
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-soft);
  border: 2px solid var(--border);
  transition: var(--transition);
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

.tab-content { display: none; }
.tab-content.active { display: block; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
  background: var(--white);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

/* ---- GALERÍA ---- */
.section-galeria {
  padding: 90px 0;
  background: var(--bg-soft);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(231,66,102,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30,10,20,0.94);
  z-index: 9990;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox img {
  max-width: 88vw;
  max-height: 86vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--primary); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ---- PROCESO ---- */
.section-proceso {
  padding: 90px 0;
  background: var(--bg);
}
.proceso-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proceso-step {
  text-align: center;
  max-width: 260px;
  padding: 2rem 1.5rem;
}
.step-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 1.2rem;
}
.proceso-step h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.proceso-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.proceso-connector {
  width: 60px;
  height: 2px;
  background: var(--border);
  flex-shrink: 0;
  align-self: center;
  margin-top: -40px;
}

/* ---- TESTIMONIOS ---- */
.section-testimonios {
  padding: 90px 0;
  background: var(--bg-soft);
}
.testimonios-carousel { position: relative; overflow: hidden; }
.testimonios-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  min-width: 340px;
  max-width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}
.testimonio-stars { color: var(--primary); font-size: 1.1rem; letter-spacing: 2px; }
.testimonio-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.8; font-style: italic; flex: 1; }
.testimonio-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: auto;
}
.testimonio-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--primary-light);
}
.testimonio-author strong { display: block; font-size: 0.92rem; color: var(--accent); }
.testimonio-author span { font-size: 0.78rem; color: var(--text-muted); }

.testimonios-nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.testimonios-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  border: 2px solid var(--primary-light);
}
.testimonios-nav button:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ---- FAQ ---- */
.section-faq {
  padding: 90px 0;
  background: var(--bg);
}
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-soft);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s, background 0.2s;
}
.faq-question i { transition: transform 0.3s; color: var(--primary); font-size: 0.85rem; flex-shrink: 0; }
.faq-question:hover, .faq-item.open .faq-question { color: var(--primary); background: var(--primary-pale); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}
.faq-answer p {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---- CTA BAND ---- */
.cta-band {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band-text { color: var(--white); }
.cta-band-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.cta-band-text p { opacity: 0.88; font-size: 0.95rem; }
.cta-band-btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ---- CONTACTO ---- */
.section-contacto {
  padding: 90px 0;
  background: var(--bg-soft);
}
.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contacto-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.contacto-info h2 em { font-style: italic; color: var(--primary); }
.contacto-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contacto-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contacto-list li i { color: var(--primary); margin-top: 2px; flex-shrink: 0; font-size: 0.95rem; }
.contacto-list a { color: var(--primary); font-weight: 500; }
.contacto-list a:hover { text-decoration: underline; }

.contacto-mapa iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--accent);
  color: rgba(255,255,255,0.80);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand .footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1rem;
  display: block;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 280px; }
.footer-socials { display: flex; gap: 1rem; margin-top: 1.2rem; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.footer-socials a:hover { background: var(--primary); }

.footer-links h4 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-links li a:hover { color: var(--primary-light); }

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom i { color: var(--primary); }

/* ---- n8n CHAT OVERRIDE ---- */
#n8n-chat {
  --chat--color-primary: #e74266;
  --chat--color-primary-shade-50: #d63358;
  --chat--color-primary-shade-100: #c02149;
  --chat--color-secondary: #3d2b3d;
  --chat--color-secondary-shade-50: #2d1f2d;
  --chat--header-color: #ffffff;
  --chat--header--background: #e74266;
  --chat--toggle--background: #e74266;
  --chat--toggle--hover--background: #c92e52;
  --chat--toggle--active--background: #c92e52;
  --chat--message--bot--background: #fde8ed;
  --chat--message--user--background: #e74266;
  --chat--message--user--color: #ffffff;
  --chat--border-radius: 16px;
  --chat--window--width: 380px;
  --chat--window--height: 600px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nosotros-inner { grid-template-columns: 1fr; gap: 3rem; }
  .nosotros-img img { height: 360px; }
  .nosotros-badge { right: 12px; }
  .contacto-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .proceso-connector { display: none; }
  .proceso-steps { gap: 1.5rem; justify-content: center; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 106px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 0 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 800;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a {
    width: 100%;
    padding: 13px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--border);
  }
  .btn-nav {
    margin: 12px 24px 0 !important;
    width: calc(100% - 48px) !important;
    justify-content: center;
    border-radius: 40px !important;
  }
  .top-bar-left { gap: 0.8rem; }
  .hero-content { padding: 0 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .testimonios-track { gap: 1rem; }
  .testimonio-card { min-width: 280px; }
  .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .trust-inner { gap: 1.5rem; }
  .trust-item { flex-direction: column; text-align: center; gap: 6px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .tabs { gap: 0.4rem; }
  .tab-btn { padding: 8px 14px; font-size: 0.8rem; }
}
