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

:root {
  --black:      #f5ede0;
  --dark:       #ede4d5;
  --dark2:      #e4d9cb;
  --rose:       #5a9e4a;
  --rose-light: #7ab868;
  --gold:       #8a6840;
  --cream:      #1c1410;
  --text:       #2e2a25;
  --muted:      #7a7068;
  --border:     rgba(90,150,70,0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 2px; }

h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 400; }

/* ── ACCESIBILIDAD ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 6px;
  z-index: 9999;
  background: var(--rose);
  color: #fff;
  padding: 8px 18px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 6px; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── TIPOGRAFÍA / UTILIDADES ── */
.label {
  display: block;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}

.label-hint {
  font-size: .6rem;
  color: var(--muted);
  letter-spacing: .05em;
  text-transform: none;
  font-weight: 300;
}

.title {
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  color: var(--cream);
  line-height: 1.18;
}

.divider {
  width: 50px;
  height: 1px;
  background: var(--rose);
  margin: 22px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
}

section { padding: 110px 0; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 900;
  padding: 22px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding .45s ease, background .45s ease, border .45s ease;
}

nav.scrolled {
  background: rgba(245,237,224,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 13px 60px;
  border-bottom: 1px solid var(--border);
}

nav .nav-logo-text               { color: #fff; }
nav.scrolled .nav-logo-text      { color: var(--cream); }
nav .nav-links a                  { color: rgba(255,255,255,.85); }
nav.scrolled .nav-links a         { color: var(--text); }
nav .hamburger span               { background: #fff; }
nav.scrolled .hamburger span      { background: var(--cream); }
nav .nav-wa                       { border-color: rgba(255,255,255,.65); color: rgba(255,255,255,.9); }
nav.scrolled .nav-wa              { border-color: var(--rose); color: var(--rose); }
nav.scrolled .nav-wa:hover        { background: var(--rose); color: #fff; }

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: .04em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width .3s;
}

.nav-links a:hover { color: var(--rose-light); }
.nav-links a:hover::after { width: 100%; }

.nav-wa {
  text-decoration: none;
  border: 1px solid var(--rose);
  color: var(--rose);
  padding: 8px 22px;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: all .3s;
}

.nav-wa:hover { background: var(--rose); color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 24px; height: 1px;
  background: var(--cream);
  display: block;
  transition: all .3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mob-menu.open { display: flex; }

.mob-link {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--cream);
  text-decoration: none;
  transition: color .3s;
}

.mob-link:hover { color: var(--rose); }

/* ── HERO ── */
.hero-wrap {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-wrap > img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(9,9,9,.25) 0%, rgba(9,9,9,.55) 60%, rgba(9,9,9,.78) 100%);
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 1.1s ease .4s forwards;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 1.1s ease .7s forwards;
}

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

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 300;
  color: rgba(255,255,255,.7);
  margin-bottom: 46px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 1.1s ease 1s forwards;
}

.hero-btn {
  display: inline-block;
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  padding: 13px 38px;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .35s;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 1.1s ease 1.3s forwards;
}

.hero-btn:hover { background: var(--rose); border-color: var(--rose); }

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  opacity: 0;
  animation: fadeUp 1s ease 2s forwards;
}

.hero-scroll-hint span {
  font-size: .62rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.45));
  animation: pulseLine 2.2s ease infinite;
}

/* ── GARANTÍA BANNER ── */
.guarantee-banner {
  background: linear-gradient(135deg, #ede4d5 0%, #e4d9cb 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  text-align: center;
}

.guarantee-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--rose-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.guarantee-text strong {
  color: var(--cream);
  font-style: normal;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-wrap::before,
.about-img-wrap::after {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  border: 1px solid var(--border);
}

.about-img-wrap::before { top: -18px; left: -18px; }
.about-img-wrap::after  { bottom: -18px; right: -18px; }

.about-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  filter: brightness(.88);
}

.about-body {
  font-size: .94rem;
  line-height: 1.95;
  color: var(--muted);
  margin: 22px 0 36px;
}

.tag-row { display: flex; flex-wrap: wrap; gap: 10px; }

.tag {
  border: 1px solid var(--border);
  padding: 8px 16px;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-light);
}

/* ── ARREGLOS / CATÁLOGO ── */
.arreglos { background: var(--dark); }

.arreglos-head { text-align: center; margin-bottom: 70px; }

.arreglos-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.arr-category { margin-bottom: 52px; }

.arr-cat-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.arr-cat-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}

.arr-cat-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.arr-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.arr-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.arr-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  display: flex;
  overflow: hidden;
  position: relative;
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}

.arr-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--rose);
  transition: height .45s ease;
}

.arr-card:hover {
  transform: translateY(-5px);
  border-color: rgba(142,196,122,.42);
  box-shadow: 0 22px 52px rgba(0,0,0,.45);
}

.arr-card:hover::before { height: 100%; }

.arr-img {
  width: 130px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.arr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.82);
  transition: filter .5s ease, transform .55s ease;
}

.arr-card:hover .arr-img img {
  filter: brightness(1);
  transform: scale(1.07);
}

.arr-body {
  padding: 17px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.arr-name {
  font-family: 'Playfair Display', serif;
  font-size: .98rem;
  color: var(--cream);
  letter-spacing: .04em;
}

.arr-desc {
  font-size: .74rem;
  color: var(--muted);
  line-height: 1.68;
  flex: 1;
}

.arr-size {
  font-size: .63rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(142,196,122,.72);
}

.arr-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  color: var(--gold);
  margin-top: 2px;
}

.arr-price small {
  font-family: 'Montserrat', sans-serif;
  font-size: .58rem;
  font-weight: 400;
  color: var(--muted);
  display: block;
  margin-top: 2px;
  letter-spacing: .03em;
}

.arr-avail {
  font-size: .65rem;
  color: var(--muted);
  line-height: 1.55;
}

.arr-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* ── SELECTOR DE COLOR ── */
.color-selector {
  display: flex;
  gap: 8px;
  margin: 6px 0 4px;
}

.color-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s, border-color .2s, outline .2s;
  padding: 0;
}

.color-dot:focus-visible {
  outline: 2px solid var(--rose-light);
  outline-offset: 2px;
}

.color-dot.selected {
  border-color: var(--rose-light);
  transform: scale(1.2);
}

.dot-rojo    { background: #c0392b; }
.dot-rosado  { background: #e8a0b0; }
.dot-blanco  { background: #e8e4df; border: 2px solid rgba(255,255,255,.2); }
.dot-verde   { background: #4a8a5e; }
.dot-celeste { background: #7ec8e3; }
.dot-lila    { background: #c9b0e8; }
.dot-gris    { background: #c5c0b8; }

.dot-blanco.selected { border-color: var(--rose-light); }

/* ── BOTÓN PEDIR POR WHATSAPP ── */
.wa-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #25D366;
  border: none;
  color: #fff;
  padding: 9px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
  margin-top: 8px;
  width: 100%;
}

.wa-order-btn:hover { background: #1dba57; }

.wa-order-btn:focus-visible {
  outline: 2px solid var(--rose-light);
  outline-offset: 2px;
}

/* ── TESTIMONIOS ── */
.testimonials { background: var(--dark2); }

.testimonials-head { text-align: center; margin-bottom: 56px; }

.testimonials-carousel { position: relative; overflow: hidden; }

.testimonials-track {
  display: flex;
  transition: transform .5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 0 40px;
  text-align: center;
}

.testimonial-stars {
  color: #f0c040;
  font-size: 1.25rem;
  margin-bottom: 22px;
  letter-spacing: .1em;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto 22px;
}

.testimonial-author {
  font-size: .75rem;
  color: var(--muted);
  letter-spacing: .15em;
  text-transform: uppercase;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}

.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}

.t-dot.active {
  background: var(--rose);
  transform: scale(1.25);
}

.t-dot:focus-visible {
  outline: 2px solid var(--rose-light);
  outline-offset: 3px;
}

/* ── GALERÍA ── */
.gallery-head { text-align: center; margin-bottom: 56px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 10px;
}

.gallery-grid .gi:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .gi:nth-child(4) { grid-column: span 2; }

.gi {
  overflow: hidden;
  position: relative;
  display: block;
  text-decoration: none;
}

.gi img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s ease, filter .65s ease;
  filter: brightness(.82);
}

.gi:hover img {
  transform: scale(1.06);
  filter: brightness(1);
}

.gi-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,9,9,0);
  transition: background .4s;
}

.gi:hover .gi-overlay { background: rgba(9,9,9,.22); }

.gi:focus-visible {
  outline: 2px solid var(--rose-light);
  outline-offset: 2px;
}

/* ── ZONA CHECKER ── */
.zona-checker { background: var(--dark2); }

.zona-checker-inner {
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.zona-desc {
  font-size: .9rem;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.7;
}

.zona-input-row {
  display: flex;
  gap: 0;
  margin: 28px 0 0;
}

.zona-input {
  flex: 1;
  background: var(--dark);
  border: 1px solid var(--border);
  border-right: none;
  padding: 13px 16px;
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 300;
  outline: none;
  transition: border-color .3s;
}

.zona-input:focus { border-color: var(--rose); }

.zona-btn {
  background: var(--rose);
  border: none;
  color: #fff;
  padding: 13px 26px;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
}

.zona-btn:hover { background: var(--rose-light); }

.zona-result {
  margin-top: 18px;
  padding: 18px 22px;
  border: 1px solid var(--border);
  text-align: left;
  display: none;
  font-size: .86rem;
  line-height: 1.75;
}

.zona-result.show { display: block; }

.zona-result.ok {
  border-color: rgba(142,196,122,.5);
  background: rgba(142,196,122,.05);
}

.zona-result.no {
  border-color: rgba(200,80,80,.35);
  background: rgba(200,80,80,.04);
}

.zona-result strong { color: var(--cream); }

/* ── FAQ ── */
.faq { background: var(--dark2); }

.faq-head { text-align: center; margin-bottom: 56px; }

.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 26px 0;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--cream);
  background: none;
  border: none;
  text-align: left;
  gap: 16px;
}

.faq-q:focus-visible {
  outline: 2px solid var(--rose-light);
  outline-offset: 2px;
}

.faq-ico {
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose);
  font-size: 1.1rem;
  transition: all .3s;
}

.faq-item.open .faq-ico {
  background: var(--rose);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-a[hidden] { display: block; }

.faq-a p {
  padding-bottom: 22px;
  font-size: .88rem;
  line-height: 1.85;
  color: var(--muted);
}

.faq-item.open .faq-a { max-height: 220px; }

/* ── MÉTODOS DE PAGO ── */
.payment-methods { background: var(--black); padding: 80px 0; }

.payment-methods-inner { text-align: center; }

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.payment-icon {
  width: 90px; height: 54px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s;
}

.payment-icon:hover { border-color: var(--rose); }

.payment-icon span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pay-yape     { color: #6c2d91; }
.pay-plin     { color: #00b4d8; }
.pay-bcp      { color: #e63946; }
.pay-visa     { color: #1a73e8; }
.pay-mc       { color: #eb5e28; }
.pay-transfer { color: var(--muted); }

/* ── SERVICIOS ── */
.servicios { background: var(--black); }

.servicios-head { text-align: center; margin-bottom: 70px; }

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

.srv-card {
  position: relative;
  overflow: hidden;
  height: 380px;
}

.srv-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.55);
  transition: filter .6s ease, transform .65s ease;
}

.srv-card:hover img {
  filter: brightness(.38);
  transform: scale(1.06);
}

.srv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,9,.85) 0%, transparent 55%);
}

.srv-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 28px;
  z-index: 2;
}

.srv-label {
  font-size: .62rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--rose-light);
  display: block;
  margin-bottom: 8px;
}

.srv-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
}

.srv-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.62);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .5s ease, opacity .5s ease;
}

.srv-card:hover .srv-desc {
  max-height: 100px;
  opacity: 1;
}

.srv-cta {
  display: inline-block;
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,.45);
  color: #fff;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 8px 18px;
  text-decoration: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .5s ease .1s, opacity .5s ease .1s, background .3s, border-color .3s;
}

.srv-card:hover .srv-cta {
  max-height: 60px;
  opacity: 1;
}

.srv-cta:hover { background: var(--rose); border-color: var(--rose); }

/* ── CONTACTO ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}

.contact-body {
  font-size: .9rem;
  line-height: 1.85;
  color: var(--muted);
  margin: 22px 0 34px;
}

.c-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.c-icon {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--rose);
  font-size: .9rem;
}

.c-text strong {
  display: block;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 2px;
}

.c-text span { font-size: .88rem; color: var(--muted); }

.socials { display: flex; gap: 10px; margin-top: 36px; }

.soc {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: all .3s;
}

.soc:hover { border-color: var(--rose); color: var(--rose); }

.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 13px 26px;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-top: 10px;
  transition: background .3s;
}

.wa-link:hover { background: #1dba57; }

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

.fg { display: flex; flex-direction: column; gap: 7px; }

.fg label {
  font-size: .67rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.fg input,
.fg textarea,
.fg select {
  background: var(--dark2);
  border: 1px solid var(--border);
  padding: 13px 15px;
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 300;
  outline: none;
  transition: border-color .3s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.fg input[type="date"] {
  color-scheme: dark;
}

.fg input:focus,
.fg textarea:focus,
.fg select:focus { border-color: var(--rose); }

.fg textarea { height: 110px; resize: vertical; }
.fg select option { background: var(--dark2); }

.send-btn {
  background: var(--rose);
  border: none;
  color: #fff;
  padding: 15px 38px;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s;
  align-self: flex-start;
}

.send-btn:hover { background: var(--rose-light); }

.send-btn:focus-visible {
  outline: 2px solid var(--rose-light);
  outline-offset: 3px;
}

/* ── FOOTER ── */
footer {
  background: #2e4e22;
  border-top: none;
  padding: 40px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  color: #fff;
  opacity: .92;
  letter-spacing: .04em;
}

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: .85rem;
  color: rgba(255,255,255,.78);
  opacity: 1;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
  font-size: .68rem;
  color: rgba(255,255,255,.75);
  letter-spacing: .06em;
}

.footer-copy {
  font-size: .68rem;
  color: rgba(255,255,255,.65);
  letter-spacing: .04em;
}

/* ── WHATSAPP FLOTANTE ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 950;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  animation: waPulse 2.8s ease infinite;
  text-decoration: none;
  transition: background .3s, transform .3s;
}

.wa-float:hover {
  background: #1dba57;
  transform: scale(1.1);
  animation: none;
}

.wa-float:focus-visible {
  outline: 2px solid var(--rose-light);
  outline-offset: 3px;
}

/* ── ANIMACIONES ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseLine {
  0%, 100% { opacity: .3; transform: scaleY(.8); }
  50%       { opacity: 1; transform: scaleY(1); }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.7), 0 0 0 14px rgba(37,211,102,.07); }
}

/* ── REVEAL ── */
.rv  { opacity: 0; transform: translateY(38px); transition: opacity .8s ease, transform .8s ease; }
.rvl { opacity: 0; transform: translateX(-50px); transition: opacity .9s ease, transform .9s ease; }
.rvr { opacity: 0; transform: translateX(50px);  transition: opacity .9s ease, transform .9s ease; }
.rv.on, .rvl.on, .rvr.on { opacity: 1; transform: translate(0); }

.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }
.d5 { transition-delay: .5s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  nav, nav.scrolled { padding-left: 40px; padding-right: 40px; }
  .about-grid { gap: 50px; }
  .contact-grid { gap: 55px; }
  .arr-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .container { padding: 0 22px; }
  nav { padding: 15px 22px; }
  nav.scrolled { padding: 11px 22px; }

  .nav-links, .nav-wa { display: none; }
  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img { height: 340px; }
  .about-img-wrap::before,
  .about-img-wrap::after { display: none; }

  .arr-grid, .arr-grid-2, .arr-bottom { grid-template-columns: 1fr; gap: 12px; }
  .arr-img { width: 88px; }
  .arr-bottom { gap: 36px; }

  .testimonial-card { padding: 0 16px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-grid .gi:nth-child(1) { grid-column: span 2; }
  .gallery-grid .gi:nth-child(4) { grid-column: span 1; }

  .zona-input-row { flex-direction: column; }
  .zona-input { border-right: 1px solid var(--border); }
  .zona-btn { width: 100%; }

  .servicios-grid { grid-template-columns: 1fr; }
  .srv-card { height: 300px; }
  .srv-desc, .srv-cta { max-height: 200px; opacity: 1; }

  .contact-grid { grid-template-columns: 1fr; gap: 46px; }

  .footer-inner { flex-direction: column; gap: 18px; text-align: center; }
  .footer-legal { align-items: center; }

  .wa-float { bottom: 18px; right: 18px; width: 52px; height: 52px; }
}
