/* ═══════════════════════════════════════════
   ADMINISTRACIÓN SALADAR — styles.css
   Blanco · Granate · Tipografía original
═══════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px; line-height: 1.65;
  color: #1a1a1a; background: #fff;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── VARIABLES ── */
:root {
  --g:       #6b1f2a;
  --g-dark:  #4e1620;
  --g-mid:   #8a2535;
  --g-pale:  #f7edef;
  --gold:    #c9a96e;
  --gold-lt: #e8d5b0;
  --off:     #faf8f6;
  --stone:   #ebe5df;
  --text:    #1a1a1a;
  --mid:     #444;
  --soft:    #777;
  --r:       5px;
  --rl:      10px;
  --sh-s: 0 2px 14px rgba(107,31,42,.07);
  --sh-m: 0 6px 30px rgba(107,31,42,.11);
  --sh-l: 0 16px 60px rgba(107,31,42,.15);
  --tr: .26s cubic-bezier(.4,0,.2,1);
}

/* ── TIPOGRAFÍA ── */
h1,h2,h3,h4 {
  font-family: 'Libre Baskerville', Georgia, serif;
  line-height: 1.18; font-weight: 700; color: var(--g-dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
em { font-style: italic; color: var(--g); }
p  { color: var(--mid); line-height: 1.78; }
strong { font-weight: 600; color: var(--text); }

/* ── UTILIDADES ── */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 clamp(16px, 4vw, 48px); }

.overtitle {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--g); font-weight: 600; margin-bottom: .85rem;
  display: flex; align-items: center; gap: .5rem;
}
.overtitle::before { content: ''; width: 22px; height: 1.5px; background: var(--g); flex-shrink: 0; }
.overtitle--light { color: var(--gold-lt); }
.overtitle--light::before { background: var(--gold-lt); }

.sec-head { margin-bottom: 3rem; }
.sec-head h2 { margin-top: .4rem; }

/* ── BOTONES ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .82rem 1.85rem; border-radius: var(--r);
  font-family: inherit; font-size: .88rem; font-weight: 600;
  letter-spacing: .03em; cursor: pointer; border: none;
  transition: var(--tr); white-space: nowrap;
}
.btn-orange { background: var(--g); color: #fff; box-shadow: 0 4px 18px rgba(107,31,42,.28); }
.btn-orange:hover { background: var(--g-dark); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--g-dark); border: 1.5px solid var(--g); }
.btn-outline-white:hover { background: var(--g-pale); }
.btn-white { background: #fff; color: var(--g); font-weight: 700; box-shadow: var(--sh-s); }
.btn-white:hover { background: var(--off); transform: translateY(-1px); }
.btn-wa { background: #25d366; color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,.28); }
.btn-wa:hover { background: #1ebe5a; transform: translateY(-1px); }

/* ═══════════════
   TOPBAR
═══════════════ */
.topbar { background: var(--g-dark); color: rgba(255,255,255,.8); font-size: .74rem; padding: .42rem 0; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.topbar-left  { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.topbar-link  { color: rgba(255,255,255,.75); transition: color .2s; }
.topbar-link:hover { color: #fff; }
.topbar-sep   { color: rgba(255,255,255,.28); }
.topbar-badge {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: .18rem .7rem; border-radius: 20px; font-size: .68rem;
  font-weight: 600; letter-spacing: .07em; color: var(--gold-lt);
}
@media(max-width:640px){ .topbar-left{font-size:.66rem} .topbar-badge{display:none} }

/* ═══════════════
   HEADER
═══════════════ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stone); transition: box-shadow var(--tr);
}
.header.scrolled { box-shadow: var(--sh-s); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: .85rem; padding-bottom: .85rem; gap: 1.5rem;
}
.logo { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; }
.logo-fallback { flex-direction: column; }
.logo-mark {
  width: 40px; height: 40px; background: var(--g); color: #fff;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Libre Baskerville', serif; font-size: 1.2rem; font-weight: 700;
}
.logo-name { font-family: 'Libre Baskerville', serif; font-size: 1.05rem; font-weight: 700; color: var(--g); display: block; }
.logo-sub  { font-size: .62rem; color: var(--soft); letter-spacing: .07em; text-transform: uppercase; display: block; }

.nav-list { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-size: .87rem; font-weight: 500; color: var(--mid);
  transition: color var(--tr); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--g); transition: width var(--tr);
}
.nav-link:hover { color: var(--g); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  font-size: .87rem; font-weight: 600; background: var(--g); color: #fff;
  padding: .52rem 1.2rem; border-radius: var(--r); transition: var(--tr);
}
.nav-cta:hover { background: var(--g-dark); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--g); transition: var(--tr); border-radius: 2px; }
@media(max-width:820px){ .nav-list{display:none} .burger{display:flex} }

/* ═══════════════
   MENÚ MÓVIL
═══════════════ */
.mob {
  position: fixed; inset: 0; background: var(--g-dark); z-index: 200;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; padding: 2rem 1.5rem; gap: 1rem;
}
.mob.open { transform: translateX(0); }
.mob-close { align-self: flex-end; background: none; border: none; color: #fff; cursor: pointer; padding: .4rem; opacity: .72; }
.mob-close:hover { opacity: 1; }
.mob-list { display: flex; flex-direction: column; margin-top: 1rem; }
.mob-link {
  display: block; padding: .9rem 0;
  font-family: 'Libre Baskerville', serif; font-size: 1.8rem;
  color: rgba(255,255,255,.85); border-bottom: 1px solid rgba(255,255,255,.1); transition: color .2s;
}
.mob-link:hover { color: #fff; }
.mob-cta {
  display: block; margin-top: 1.5rem; text-align: center;
  background: var(--gold); color: var(--g-dark);
  font-weight: 700; padding: 1rem; border-radius: var(--r); font-size: .95rem;
}
.mob-contacts { margin-top: auto; display: flex; flex-direction: column; gap: .45rem; }
.mob-contacts a { color: rgba(255,255,255,.5); font-size: .8rem; transition: color .2s; }
.mob-contacts a:hover { color: #fff; }

/* ═══════════════
   HERO — FONDO BLANCO
═══════════════ */
.hero {
  min-height: 88vh; background: #fff;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  border-bottom: 1px solid var(--stone);
}
.hero-geo { position: absolute; inset: 0; pointer-events: none; }
.geo-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(107,31,42,.07); }
.geo-ring--1 { width: 560px; height: 560px; top: -80px; right: -100px; }
.geo-ring--2 { width: 860px; height: 860px; top: -220px; right: -260px; }
.geo-stripe {
  position: absolute; top: 0; right: 0; width: 42%; height: 100%;
  background: linear-gradient(to bottom, rgba(107,31,42,.025), transparent);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: center;
  padding-top: clamp(3rem, 8vh, 5rem); padding-bottom: clamp(3rem, 8vh, 5rem);
  position: relative; z-index: 1;
}
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:none} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.hero-eyebrow {
  color: var(--g); font-size: .76rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 600; display: flex; align-items: center; gap: .5rem; margin-bottom: 1.3rem;
  opacity: 0; animation: fadeUp .7s .1s forwards;
}
.hero-eyebrow .dot { width: 6px; height: 6px; background: var(--g); border-radius: 50%; flex-shrink: 0; }
.hero-h1   { color: var(--g-dark); margin-bottom: 1.3rem; opacity: 0; animation: fadeUp .7s .25s forwards; }
.hero-lead { color: var(--mid); font-size: 1rem; margin-bottom: 2rem; max-width: 460px; line-height: 1.82; opacity: 0; animation: fadeUp .7s .4s forwards; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp .7s .52s forwards; }

.hero-media { position: relative; opacity: 0; animation: fadeIn .9s .35s forwards; }
.hero-photo { border-radius: var(--rl); overflow: hidden; box-shadow: var(--sh-l); position: relative; }
.hero-photo img { width: 100%; max-height: 540px; object-fit: cover; object-position: center; }
.hero-photo figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(78,22,32,.88));
  color: rgba(255,255,255,.88); font-size: .76rem;
  padding: 2.5rem 1.2rem .9rem; display: flex; align-items: center; gap: .5rem;
}
.hero-photo-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

.hero-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .7rem; margin-top: .7rem; }
.stat-card {
  background: var(--g-pale); border: 1px solid rgba(107,31,42,.12);
  border-radius: var(--r); padding: 1rem .85rem; text-align: center; transition: var(--tr);
}
.stat-card:hover { background: #f0d8db; }
.stat-n { font-family: 'Libre Baskerville', serif; font-size: 2rem; font-weight: 700; color: var(--g-dark); display: block; line-height: 1; }
.stat-u { font-size: 1rem; color: var(--g); font-weight: 700; }
.stat-l { display: block; font-size: .64rem; color: var(--soft); margin-top: .3rem; letter-spacing: .04em; line-height: 1.4; }
.stat-card--shield { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .3rem; }
.stat-card--shield svg { stroke: var(--g); }
.stat-card--shield span { font-size: .64rem; color: var(--soft); line-height: 1.4; text-align: center; }

@media(max-width:820px){ .hero-wrap{grid-template-columns:1fr} .hero-media{display:none} }

/* ═══════════════
   PASARELA IMÁGENES
═══════════════ */
.sec-image-carousel { padding: 5rem 0; background: var(--off); }
.image-carousel { position: relative; }
.image-viewport { overflow: hidden; border-radius: var(--rl); box-shadow: var(--sh-m); }
.image-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.image-slide { flex: 0 0 100%; min-width: 0; }
.image-slide img { width: 100%; height: 400px; object-fit: cover; object-position: center; }
.image-control {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  background: rgba(107,31,42,.75); border: none; border-radius: 50%;
  width: 44px; height: 44px; display: flex; align-items: center;
  justify-content: center; cursor: pointer; color: #fff; transition: var(--tr);
}
.image-control:hover { background: var(--g-dark); }
.image-prev { left: 12px; }
.image-next { right: 12px; }
.image-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.2rem; }
.image-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--stone); border: none; cursor: pointer; transition: var(--tr); padding: 0;
}
.image-dot.is-active { background: var(--g); width: 22px; border-radius: 4px; }

/* ═══════════════
   SERVICIOS
═══════════════ */
.sec-services { padding: 5.5rem 0; background: #fff; }
.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.srv-card {
  background: #fff; border: 1px solid var(--stone); border-radius: var(--rl);
  padding: 2rem 1.7rem; position: relative; overflow: hidden; transition: var(--tr); cursor: default;
}
.srv-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--g); transition: height .35s ease;
}
.srv-card:hover::before { height: 100%; }
.srv-card:hover { box-shadow: var(--sh-m); transform: translateY(-3px); border-color: transparent; }
.srv-ico { width: 44px; height: 44px; background: var(--g-pale); border-radius: var(--r); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; }
.srv-ico svg { stroke: var(--g); }
.srv-num { font-size: .78rem; color: var(--g); opacity: .55; font-weight: 600; letter-spacing: .1em; margin-bottom: .5rem; display: block; }
.srv-card h3 { color: var(--g-dark); margin-bottom: .65rem; }
.srv-card p   { font-size: .87rem; line-height: 1.72; color: var(--soft); }
.srv-arrow { position: absolute; bottom: 1.4rem; right: 1.6rem; color: var(--g); font-size: 1.2rem; opacity: 0; transform: translateX(-8px); transition: var(--tr); }
.srv-card:hover .srv-arrow { opacity: 1; transform: translateX(0); }
@media(max-width:900px){ .srv-grid{grid-template-columns:repeat(2,1fr)} }
@media(max-width:560px){ .srv-grid{grid-template-columns:1fr} }

/* ═══════════════
   CTA BAND
═══════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--g-dark) 0%, var(--g) 100%);
  padding: 5rem 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 380px; height: 380px; border-radius: 50%; background: rgba(255,255,255,.04);
}
.cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 3rem; position: relative; z-index: 1; }
.cta-text h2 { color: #fff; margin: .5rem 0 1rem; }
.cta-text h2 em { color: var(--gold-lt); }
.cta-text p { color: rgba(255,255,255,.72); }
.cta-actions { display: flex; gap: 1rem; flex-direction: column; }
@media(max-width:700px){ .cta-inner{grid-template-columns:1fr} .cta-actions{flex-direction:row;flex-wrap:wrap} }

/* ═══════════════
   NOSOTROS
═══════════════ */
.sec-about { padding: 5.5rem 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.about-visual { position: relative; }
.about-photo-frame { border-radius: var(--rl); overflow: hidden; box-shadow: var(--sh-l); position: relative; }
.about-photo-frame img { width: 100%; max-height: 500px; object-fit: cover; object-position: center; }
.about-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(78,22,32,.9));
  color: rgba(255,255,255,.9); padding: 2.5rem 1.3rem 1rem;
}
.about-photo-caption span { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-lt); display: block; margin-bottom: .2rem; }
.about-photo-caption strong { font-family: 'Libre Baskerville', serif; font-size: 1rem; }
.about-badge-card {
  position: absolute; top: -1.2rem; right: -1.2rem;
  background: #fff; border-radius: var(--rl); padding: 1rem 1.2rem;
  box-shadow: var(--sh-m); display: flex; align-items: center; gap: .85rem;
  border: 1px solid var(--stone); z-index: 2;
}
.about-badge-card img { width: 64px; height: auto; }
.badge-info { display: flex; flex-direction: column; gap: .15rem; }
.badge-info strong { font-size: .82rem; color: var(--g); }
.badge-info span   { font-size: .7rem; color: var(--soft); }
.about-deco-box { position: absolute; bottom: -1rem; left: -1rem; width: 88px; height: 88px; border: 2px solid var(--g-pale); border-radius: var(--rl); z-index: 0; }
.about-text { padding-top: 1rem; }
.about-text h2 { margin: .4rem 0 1.4rem; }
.about-text > p { margin-bottom: 1.1rem; }
.about-info {
  display: flex; flex-direction: column; gap: .7rem;
  margin: 1.8rem 0; padding: 1.4rem;
  background: var(--off); border-radius: var(--rl); border: 1px solid var(--stone);
}
.ainfo-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .87rem; color: var(--mid); }
.ainfo-ico { width: 32px; height: 32px; flex-shrink: 0; background: var(--g-pale); border-radius: var(--r); display: flex; align-items: center; justify-content: center; }
.ainfo-ico svg { stroke: var(--g); }
.contact-pills { display: flex; gap: .55rem; flex-wrap: wrap; }
.pill { display: inline-flex; align-items: center; gap: .4rem; padding: .42rem .9rem; border-radius: 20px; font-size: .8rem; font-weight: 500; background: var(--off); color: var(--mid); border: 1px solid var(--stone); transition: var(--tr); }
.pill:hover { border-color: var(--g); color: var(--g); }
.pill--accent { background: var(--g); color: #fff; border-color: var(--g); }
.pill--accent:hover { background: var(--g-dark); color: #fff; }
.pill svg { stroke: currentColor; }
@media(max-width:820px){ .about-grid{grid-template-columns:1fr} .about-badge-card{position:static;margin-top:1rem} }

/* ═══════════════
   ESPACIOS
═══════════════ */
.sec-spaces { padding: 5rem 0; background: var(--off); }
.spaces-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.spaces-head p { color: var(--soft); font-size: .9rem; max-width: 360px; }
.spaces-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1rem; }
.space-card { border-radius: var(--rl); overflow: hidden; box-shadow: var(--sh-s); transition: var(--tr); margin: 0; }
.space-card:hover { transform: scale(1.015); box-shadow: var(--sh-m); }
.space-card img { width: 100%; height: 250px; object-fit: cover; object-position: center; }
.space-card--wide img { height: 310px; }
@media(max-width:820px){ .spaces-grid{grid-template-columns:1fr 1fr} }
@media(max-width:560px){ .spaces-grid{grid-template-columns:1fr} }

/* ═══════════════
   VENTAJAS
═══════════════ */
.sec-why { padding: 5.5rem 0; background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.why-card { background: var(--off); border-radius: var(--rl); padding: 2.2rem 1.75rem; border: 1px solid var(--stone); transition: var(--tr); }
.why-card:hover { box-shadow: var(--sh-m); border-color: rgba(107,31,42,.15); transform: translateY(-2px); }
.why-ico { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem; }
.why-ico--1 { background: var(--g-pale); } .why-ico--1 svg { stroke: var(--g); }
.why-ico--2 { background: #e8f2fb; }       .why-ico--2 svg { stroke: #2268a8; }
.why-ico--3 { background: #edf7ef; }       .why-ico--3 svg { stroke: #297840; }
.why-card h3 { color: var(--g-dark); margin-bottom: .65rem; }
.why-card p  { font-size: .87rem; line-height: 1.72; color: var(--soft); }
@media(max-width:820px){ .why-grid{grid-template-columns:repeat(2,1fr)} }
@media(max-width:560px){ .why-grid{grid-template-columns:1fr} }

/* ═══════════════
   CREDENCIALES
═══════════════ */
.sec-credentials { padding: 4.5rem 0; background: var(--off); }
.credentials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.credential-card { background: #fff; border: 1px solid var(--stone); border-radius: var(--rl); padding: 2.2rem 2rem; transition: var(--tr); }
.credential-card:hover { box-shadow: var(--sh-s); }
.credential-card h3 { color: var(--g-dark); margin-bottom: .6rem; }
.credential-card p  { font-size: .87rem; color: var(--soft); }
.credential-card--area { background: var(--g); border-color: var(--g); }
.credential-card--area .overtitle { color: rgba(255,255,255,.82); }
.credential-card--area .overtitle::before { background: rgba(255,255,255,.6); }
.credential-card--area h3 { color: #fff; }
.credential-card--area p  { color: rgba(255,255,255,.65); }
.coafa-row { display: flex; align-items: center; gap: 1.5rem; margin-top: .8rem; flex-wrap: wrap; }
.coafa-logo-img { width: 130px; height: auto; }
.credential-link { display: inline-flex; align-items: center; gap: .35rem; color: var(--gold-lt); font-size: .87rem; font-weight: 500; margin-top: 1.2rem; transition: color .2s; }
.credential-link:hover { color: #fff; }
@media(max-width:720px){ .credentials-grid{grid-template-columns:1fr} }

/* ═══════════════
   RESEÑAS — TICKER ANIMADO
═══════════════ */
.sec-reviews { padding: 5rem 0; background: var(--off); overflow: hidden; }
.review-carousel-head { margin-bottom: 2.5rem; }
.review-carousel-head h2 { color: var(--g-dark); margin-top: .4rem; }
.review-carousel-head h2 em { color: var(--g); }

.reviews-ticker-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.reviews-ticker {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}
.reviews-ticker:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.rticker-card {
  background: #fff;
  border: 1px solid var(--stone);
  border-radius: var(--rl);
  padding: 1.8rem 2rem;
  width: 340px;
  flex-shrink: 0;
  box-shadow: var(--sh-s);
  transition: box-shadow var(--tr), transform var(--tr);
}
.rticker-card:hover { box-shadow: var(--sh-m); transform: translateY(-3px); }
.rticker-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: .05em; margin-bottom: .85rem; }
.rticker-text {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-size: .97rem; font-style: italic;
  color: var(--g-dark); line-height: 1.68; margin-bottom: 1rem;
}
.rticker-author {
  font-size: .74rem; text-transform: uppercase;
  letter-spacing: .1em; color: var(--soft);
}

/* ═══════════════
   CONTACTO
═══════════════ */
.sec-contact { padding: 5.5rem 0; background: var(--g-dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.contact-info h2 { color: #fff; margin: .5rem 0 1.2rem; }
.contact-info h2 em { color: var(--gold-lt); }
.contact-info > p { color: rgba(255,255,255,.68); margin-bottom: 2rem; }
.cinfo-list { display: flex; flex-direction: column; gap: .7rem; }
.cinfo-row { display: flex; align-items: center; gap: 1rem; padding: .95rem 1.1rem; border-radius: var(--r); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); transition: var(--tr); color: #fff; }
.cinfo-row:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.cinfo-row--static { cursor: default; }
.cinfo-row--static:hover { transform: none; }
.cinfo-row--orange { background: rgba(201,169,110,.14); border-color: rgba(201,169,110,.28); }
.cinfo-ico { width: 36px; height: 36px; flex-shrink: 0; background: rgba(255,255,255,.1); border-radius: var(--r); display: flex; align-items: center; justify-content: center; }
.cinfo-ico svg { stroke: var(--gold-lt); }
.cinfo-row div:last-child { display: flex; flex-direction: column; gap: .1rem; }
.cinfo-row strong { font-size: .78rem; color: rgba(255,255,255,.5); font-weight: 400; letter-spacing: .04em; }
.cinfo-row span   { font-size: .92rem; color: #fff; }
.contact-form-wrap { background: #fff; border-radius: var(--rl); padding: 2.4rem; box-shadow: var(--sh-l); }
.form-header { margin-bottom: 1.6rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--stone); }
.form-header h3 { color: var(--g-dark); font-size: 1.3rem; margin-bottom: .2rem; }
.form-header p  { font-size: .8rem; color: var(--soft); }
.form-whatsapp-note { font-size: .79rem; color: var(--g); background: var(--g-pale); padding: .58rem .9rem; border-radius: var(--r); border-left: 3px solid var(--g); margin-bottom: 1.4rem; }
.f-field { display: flex; flex-direction: column; gap: .42rem; margin-bottom: 1rem; }
.f-field label { font-size: .78rem; font-weight: 600; color: var(--mid); letter-spacing: .03em; }
.f-field input,
.f-field textarea { padding: .68rem .9rem; border: 1.5px solid var(--stone); border-radius: var(--r); font-family: inherit; font-size: .88rem; color: var(--text); background: #fff; transition: border-color .2s; outline: none; }
.f-field input:focus,
.f-field textarea:focus { border-color: var(--g); box-shadow: 0 0 0 3px rgba(107,31,42,.07); }
.f-field textarea { resize: vertical; min-height: 88px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-row--three { grid-template-columns: 1fr 1fr 1fr; }
.f-check { display: flex; align-items: flex-start; gap: .55rem; font-size: .8rem; color: var(--soft); margin-bottom: 1.3rem; }
.f-check a { color: var(--g); }
.f-submit { width: 100%; background: var(--g); color: #fff; padding: .92rem; border: none; border-radius: var(--r); font-family: inherit; font-size: .92rem; font-weight: 600; cursor: pointer; transition: var(--tr); letter-spacing: .03em; }
.f-submit:hover { background: var(--g-dark); }
.f-ok { display: none; margin-top: 1rem; padding: .78rem 1rem; background: #edfbf1; border-radius: var(--r); color: #1a7a3a; font-size: .86rem; font-weight: 500; }
@media(max-width:820px){ .contact-grid{grid-template-columns:1fr} }
@media(max-width:520px){ .f-row,.f-row--three{grid-template-columns:1fr} }

/* ═══════════════
   FOOTER
═══════════════ */
.footer { background: var(--g-dark); padding: 4.5rem 0 0; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .83rem; margin-top: .9rem; max-width: 250px; line-height: 1.72; }
.footer-coleg { font-size: .7rem; color: var(--gold-lt); letter-spacing: .08em; margin-top: .55rem; }
.footer-fb { display: inline-flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.42); font-size: .8rem; margin-top: 1.1rem; transition: color .2s; }
.footer-fb:hover { color: #fff; }
.footer-col h4 { font-family: 'Libre Baskerville', serif; font-size: 1rem; color: #fff; margin-bottom: 1.1rem; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a,
.footer-link { font-size: .83rem; color: rgba(255,255,255,.48); transition: color .2s; display: block; margin-bottom: .3rem; }
.footer-col a:hover,
.footer-link:hover { color: var(--gold-lt); }
.footer-col address { font-style: normal; font-size: .8rem; color: rgba(255,255,255,.38); margin-top: .4rem; line-height: 1.65; }
.logo-img--footer { filter: brightness(0) invert(1); opacity: .72; }
.footer-bottom { margin-top: 3.5rem; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,.07); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .76rem; color: rgba(255,255,255,.32); }
.footer-bottom a { color: rgba(255,255,255,.38); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.72); }
@media(max-width:900px){ .footer-grid{grid-template-columns:1fr 1fr;gap:2rem} }
@media(max-width:560px){ .footer-grid{grid-template-columns:1fr} }

/* ═══════════════
   WHATSAPP FLOAT
═══════════════ */
.wa-float {
  position: fixed; bottom: 5.2rem; right: 1.2rem; z-index: 90;
  background: #25d366; border-radius: 28px;
  padding: .72rem 1.1rem .72rem .82rem;
  display: flex; align-items: center; gap: .5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.42); transition: var(--tr);
}
.wa-float:hover { transform: scale(1.05); }
.wa-label { font-size: .8rem; color: #fff; font-weight: 500; }
.wa-pulse { position: absolute; inset: -3px; border-radius: 31px; background: rgba(37,211,102,.38); animation: pulse 2.5s infinite; }
@keyframes pulse { 0%,100%{opacity:0;transform:scale(1)} 50%{opacity:.55;transform:scale(1.06)} }

/* ═══════════════
   BARRA MÓVIL
═══════════════ */
.mobile-contact-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: #fff; border-top: 1px solid var(--stone);
  grid-template-columns: 1fr 1fr; box-shadow: 0 -4px 20px rgba(0,0,0,.09);
}
.mobile-call,
.mobile-whatsapp { padding: .95rem; font-size: .88rem; font-weight: 600; text-align: center; letter-spacing: .03em; transition: background .2s; }
.mobile-call { color: var(--g); border-right: 1px solid var(--stone); }
.mobile-call:hover { background: var(--g-pale); }
.mobile-whatsapp { background: #25d366; color: #fff; }
.mobile-whatsapp:hover { background: #1ebe5a; }
@media(max-width:640px){ .mobile-contact-bar{display:grid} .wa-float{bottom:4.8rem} }

/* ═══════════════
   SCROLL ANIMATIONS
═══════════════ */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.rv.visible { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .1s; }
.rv-d2 { transition-delay: .2s; }
.rv-d3 { transition-delay: .3s; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f5f0ec; }
::-webkit-scrollbar-thumb { background: var(--g); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--g-dark); }


/* Imágenes inferiores sin textos superpuestos */
.space-card figcaption { display: none !important; }
