/* ============================================================
   MANTENIMIENTO FRANCISCO — Hoja de Estilos Principal
   Paleta: Naranja #E07828 | Negro #1C1C1C | Blanco #FFFFFF
   ============================================================ */

/* --- Variables --- */
:root {
  --orange:     #E07828;
  --orange-dark:#B85F10;
  --orange-light:#F5A05A;
  --dark:       #1C1C1C;
  --dark-mid:   #3A3A3A;
  --gray:       #888888;
  --gray-light: #F4F4F4;
  --white:      #FFFFFF;
  --border:     #E2E2E2;
  --font-head:  'Barlow', 'Arial Narrow', Arial, sans-serif;
  --font-body:  'Inter', 'Segoe UI', sans-serif;
  --radius:     6px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --transition: 0.25s ease;
  --max-w:      1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Tipografía --- */
h1,h2,h3,h4,h5 { font-family: var(--font-head); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1rem; }

/* --- Utilidades --- */
.container      { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.25rem; }
.section        { padding: 5rem 0; }
.section--gray  { background: var(--gray-light); }
.section--dark  { background: var(--dark); color: var(--white); }
.section--orange{ background: var(--orange); color: var(--white); }
.section-label  { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.5rem; }
.section--dark .section-label,
.section--orange .section-label { color: rgba(255,255,255,0.75); }
.section-title  { margin-bottom: 1rem; }
.section-sub    { color: var(--gray); font-size: 1.05rem; max-width: 640px; }
.section--dark .section-sub { color: rgba(255,255,255,0.70); }
.text-center    { text-align: center; }
.text-center .section-sub { margin: 0 auto 2.5rem; }
.highlight      { color: var(--orange); }
.sr-only        { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- Botones --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: var(--radius);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.03em;
  transition: all var(--transition); white-space: nowrap;
}
.btn--primary   { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(224,120,40,0.35); }
.btn--outline   { border: 2px solid var(--orange); color: var(--orange); }
.btn--outline:hover { background: var(--orange); color: var(--white); }
.btn--white     { background: var(--white); color: var(--orange); }
.btn--white:hover { background: var(--gray-light); }
.btn--dark      { background: var(--dark); color: var(--white); }
.btn--dark:hover{ background: var(--dark-mid); }

/* ============================================================
   HEADER & MEGA MENÚ
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }

.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 1.5rem;
}

/* Logo */
.header__logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header__logo img { height: 48px; width: 48px; object-fit: contain; }
.header__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.header__logo-name { font-family: var(--font-head); font-weight: 800; font-size: 1.1rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--dark); }
.header__logo-tagline { font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray); }

/* Nav Desktop */
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav__item { position: relative; }

.nav__link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.5rem 0.85rem; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 600; color: var(--dark);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav__link:hover, .nav__link.active { color: var(--orange); background: rgba(224,120,40,0.07); }
.nav__link svg { transition: transform var(--transition); }
.nav__item:hover .nav__link svg,
.nav__item.open  .nav__link svg  { transform: rotate(180deg); }

/* Mega Dropdown */
.mega-drop {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%); min-width: 640px;
  background: var(--white); border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  border: 1px solid var(--border);
  padding: 1.75rem;
  display: none; grid-template-columns: 1fr 1fr;
  gap: 1rem;
  opacity: 0; transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
}
.nav__item:hover .mega-drop,
.nav__item.open  .mega-drop { display: grid; opacity: 1; transform: translateX(-50%) translateY(0); }

.mega-drop__card {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 1rem; border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.mega-drop__card:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }

.mega-drop__icon {
  width: 44px; height: 44px; border-radius: var(--radius);
  background: rgba(224,120,40,0.10); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
  color: var(--orange); font-size: 1.4rem;
}
.mega-drop__text h4 { font-size: 0.95rem; margin-bottom: 0.2rem; color: var(--dark); }
.mega-drop__text p  { font-size: 0.8rem; color: var(--gray); margin: 0; line-height: 1.4; }

/* CTA header */
.header__cta { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.header__cta .btn { padding: 0.6rem 1.3rem; font-size: 0.85rem; }
.header__wa {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 600; color: #25D366;
  padding: 0.55rem 0.9rem; border-radius: var(--radius);
  border: 1.5px solid #25D366;
  transition: background var(--transition), color var(--transition);
}
.header__wa:hover { background: #25D366; color: var(--white); }
.header__wa svg   { flex-shrink: 0; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: var(--radius); }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 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); }

/* Mobile nav drawer */
.nav-mobile {
  display: none; flex-direction: column;
  background: var(--white); border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem; gap: 0.25rem;
  max-height: calc(100vh - 72px); overflow-y: auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile__link {
  display: block; padding: 0.75rem 1rem;
  font-weight: 600; font-size: 0.95rem; color: var(--dark);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav-mobile__link:hover { background: var(--gray-light); color: var(--orange); }
.nav-mobile__link.active { color: var(--orange); }
.nav-mobile__group { padding: 0.5rem 0 0.25rem 1rem; }
.nav-mobile__group-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.25rem; }
.nav-mobile__sub { display: flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1rem; border-radius: var(--radius); font-size: 0.9rem; color: var(--dark); transition: background var(--transition), color var(--transition); }
.nav-mobile__sub:hover { background: rgba(224,120,40,0.08); color: var(--orange); }
.nav-mobile__sub .sub-icon { font-size: 1rem; }
.nav-mobile__divider { height: 1px; background: var(--border); margin: 0.5rem 0; }
.nav-mobile__wa { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 1rem; padding: 0.85rem; background: #25D366; color: var(--white); border-radius: var(--radius); font-weight: 700; font-size: 0.95rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex;
  align-items: center; overflow: hidden;
  background: var(--dark); color: var(--white);
  padding-top: 72px;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #1C1C1C 0%, #2E2E2E 50%, #1C1C1C 100%);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E07828' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__content { position: relative; z-index: 1; max-width: 700px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(224,120,40,0.15); border: 1px solid rgba(224,120,40,0.3);
  color: var(--orange-light); padding: 0.4rem 0.9rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero__title { margin-bottom: 1.25rem; color: var(--white); }
.hero__title span { color: var(--orange); }
.hero__desc { font-size: 1.1rem; color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 560px; }
.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero__stats { display: flex; gap: 2.5rem; flex-wrap: wrap; }
.hero__stat-num { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--orange); display: block; }
.hero__stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }

/* ============================================================
   SERVICIOS CARDS (Index)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; transition: transform var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--orange); }
.service-card__img { height: 200px; overflow: hidden; }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card__img img { transform: scale(1.05); }
.service-card__body { padding: 1.5rem; }
.service-card__icon { font-size: 1.8rem; margin-bottom: 0.75rem; }
.service-card__title { font-size: 1.15rem; margin-bottom: 0.5rem; }
.service-card__desc { font-size: 0.9rem; color: var(--gray); margin-bottom: 1rem; }
.service-card__link { font-size: 0.88rem; font-weight: 700; color: var(--orange); display: inline-flex; align-items: center; gap: 0.3rem; transition: gap var(--transition); }
.service-card:hover .service-card__link { gap: 0.6rem; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.why-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 1.75rem;
  transition: background var(--transition), border-color var(--transition);
}
.why-card:hover { background: rgba(224,120,40,0.1); border-color: var(--orange); }
.why-card__num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; color: var(--orange); opacity: 0.3; line-height: 1; margin-bottom: 0.75rem; }
.why-card__title { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--white); }
.why-card__desc { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin: 0; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.75rem;
  position: relative;
}
.review-card::before { content: '"'; position: absolute; top: 1rem; right: 1.25rem; font-size: 4rem; font-family: Georgia, serif; color: var(--orange); opacity: 0.15; line-height: 1; }
.review-stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.review-text { font-size: 0.92rem; color: var(--dark-mid); margin-bottom: 1.25rem; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gray-light); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; color: var(--orange); }
.review-name { font-weight: 700; font-size: 0.9rem; }
.review-loc  { font-size: 0.78rem; color: var(--gray); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  border-radius: 12px; padding: 3rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin: 4rem 0;
}
.cta-banner__text h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); }
.cta-banner__text p  { color: rgba(255,255,255,0.85); margin: 0.5rem 0 0; }

/* ============================================================
   PORTAFOLIO / GALERÍA
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem; margin-top: 2.5rem;
}
.gallery-item {
  border-radius: 8px; overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item__overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
  color: var(--white); font-size: 2rem;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.92); display: none;
  align-items: center; justify-content: center; padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 8px; }
.lightbox__close {
  position: absolute; top: 1rem; right: 1rem;
  color: var(--white); font-size: 2rem; font-weight: 300;
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.1); cursor: pointer;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
.lightbox__prev, .lightbox__next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--white); font-size: 2rem; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.1); cursor: pointer;
  transition: background var(--transition);
}
.lightbox__prev { left: 1rem; }
.lightbox__next { right: 1rem; }
.lightbox__prev:hover, .lightbox__next:hover { background: var(--orange); }
.lightbox__counter { position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ============================================================
   SERVICE PAGE (Plomería, Electricidad, etc.)
   ============================================================ */
.page-hero {
  padding: 8rem 0 4rem; background: var(--dark); color: var(--white);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; left: 60%;
  background: linear-gradient(90deg, transparent, rgba(224,120,40,0.08));
}
.page-hero__label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.75rem; }
.page-hero__title { color: var(--white); margin-bottom: 1rem; }
.page-hero__title span { color: var(--orange); }
.page-hero__desc { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 600px; }

/* PAS Boxes */
.pas-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem; margin: 2rem 0;
}
.pas-box { border-radius: 10px; padding: 1.75rem; }
.pas-box--problem { background: #FFF3F3; border-left: 4px solid #E53E3E; }
.pas-box--agitate { background: #FFFBF0; border-left: 4px solid #E8A020; }
.pas-box--solve   { background: #F0FFF4; border-left: 4px solid #38A169; }
.pas-box__tag { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.5rem; }
.pas-box--problem .pas-box__tag { color: #E53E3E; }
.pas-box--agitate .pas-box__tag { color: #E8A020; }
.pas-box--solve   .pas-box__tag { color: #38A169; }
.pas-box__title { font-size: 1.05rem; margin-bottom: 0.5rem; }
.pas-box p { font-size: 0.9rem; color: var(--dark-mid); margin: 0; }

/* Servicio Lista */
.service-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.75rem; margin: 2rem 0; }
.service-list__item {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--gray-light); border-radius: var(--radius);
  padding: 0.85rem 1rem; font-size: 0.9rem; font-weight: 500;
  border: 1px solid var(--border); transition: border-color var(--transition);
}
.service-list__item:hover { border-color: var(--orange); }
.service-list__item span:first-child { color: var(--orange); font-size: 1.2rem; }

/* Proceso */
.proceso-steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.proceso-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.proceso-step__num {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--orange); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; font-family: var(--font-head);
}
.proceso-step__content h4 { margin-bottom: 0.25rem; }
.proceso-step__content p  { margin: 0; font-size: 0.9rem; color: var(--dark-mid); }

/* ============================================================
   NOSOTROS
   ============================================================ */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.value-card {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--gray-light); border-radius: 10px;
  border: 1px solid var(--border); transition: all var(--transition);
}
.value-card:hover { border-color: var(--orange); box-shadow: var(--shadow-sm); }
.value-card__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.value-card__title { font-size: 1rem; margin-bottom: 0.4rem; }
.value-card__desc { font-size: 0.85rem; color: var(--gray); margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; cursor: pointer; gap: 1rem;
  font-weight: 600; font-size: 0.98rem; color: var(--dark);
  transition: color var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-question.open  { color: var(--orange); }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; color: var(--gray); transition: transform var(--transition); }
.faq-question.open .faq-chevron { transform: rotate(180deg); color: var(--orange); }
.faq-answer {
  overflow: hidden; max-height: 0;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-answer.open { max-height: 400px; }
.faq-answer__inner { padding-bottom: 1.25rem; font-size: 0.92rem; color: var(--dark-mid); line-height: 1.7; }

/* ============================================================
   CONTACTO
   ============================================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start; margin-top: 3rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--dark-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: inherit; font-size: 0.95rem;
  color: var(--dark); background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(224,120,40,0.12); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 0.8rem; color: var(--gray); margin-top: -0.5rem; }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: var(--gray-light); border-radius: 10px;
  padding: 1.25rem; border: 1px solid var(--border);
}
.contact-item__icon { width: 44px; height: 44px; background: var(--orange); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem; flex-shrink: 0; }
.contact-item__label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.2rem; }
.contact-item__value { font-weight: 600; font-size: 0.95rem; color: var(--dark); }
.contact-item__value a { color: var(--orange); }
.contact-item__value a:hover { text-decoration: underline; }
.no-social-note { background: #FFFBF0; border: 1px solid #F5C842; border-radius: var(--radius); padding: 0.85rem 1rem; font-size: 0.85rem; color: #7A5C00; }
.no-social-note strong { display: block; margin-bottom: 0.2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #111111; color: rgba(255,255,255,0.75); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer__brand { display: flex; flex-direction: column; gap: 1rem; }
.footer__logo { display: flex; align-items: center; gap: 0.75rem; }
.footer__logo img { height: 44px; width: 44px; object-fit: contain; background: var(--white); border-radius: 50%; padding: 2px; }
.footer__logo-name { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--white); }
.footer__tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-style: italic; }
.footer__desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer__wa-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: #25D366; color: var(--white); padding: 0.65rem 1.25rem; border-radius: var(--radius); font-weight: 700; font-size: 0.88rem; align-self: flex-start; transition: background var(--transition); }
.footer__wa-btn:hover { background: #1DA851; }

.footer__col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer__links a:hover { color: var(--orange); }

.footer__contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__contact-item { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; }
.footer__contact-item span:first-child { color: var(--orange); margin-top: 2px; }
.footer__contact-item a { color: rgba(255,255,255,0.75); }
.footer__contact-item a:hover { color: var(--white); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.75rem; font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer__bottom a { color: rgba(255,255,255,0.5); }
.footer__bottom a:hover { color: var(--white); }

/* ============================================================
   NOSOTROS — Historia / Story
   ============================================================ */
.story-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.story-img-wrap { position: relative; }
.story-img-wrap img { width: 100%; border-radius: 12px; box-shadow: var(--shadow); }
.story-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--orange); color: var(--white);
  padding: 1.25rem 1.5rem; border-radius: 10px;
  box-shadow: var(--shadow);
}
.story-badge__num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 800; line-height: 1; }
.story-badge__label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; padding: 1.25rem 0; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb__sep { color: rgba(255,255,255,0.3); }
.breadcrumb__current { color: var(--orange-light); }

/* ============================================================
   MISC
   ============================================================ */
.tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.tag { display: inline-block; background: rgba(224,120,40,0.1); color: var(--orange); border: 1px solid rgba(224,120,40,0.25); padding: 0.3rem 0.75rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.divider { height: 1px; background: var(--border); margin: 3rem 0; }
.back-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--orange); font-weight: 600; font-size: 0.9rem; margin-bottom: 1.5rem; transition: gap var(--transition); }
.back-link:hover { gap: 0.7rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .story-layout { grid-template-columns: 1fr; }
  .story-badge { bottom: 1rem; left: 1rem; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav { display: none; }
  .header__cta { display: none; }
  .hamburger { display: flex; }
  .hero__stats { gap: 1.5rem; }
  .cta-banner { flex-direction: column; align-items: flex-start; }
  .mega-drop { display: none !important; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__desc { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up--1 { animation-delay: 0.1s; }
.fade-up--2 { animation-delay: 0.2s; }
.fade-up--3 { animation-delay: 0.3s; }
.fade-up--4 { animation-delay: 0.4s; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
