/*
Theme Name:  Furia Perú
Theme URI:   https://furiaperu.cl
Author:      Furia Perú
Author URI:  https://furiaperu.cl
Description: Tema personalizado para Furia Perú — Restaurante Peruano en Curacaví. Diseño internacional con paleta jade/turquesa.
Version:     2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: furiaperu
Tags:        restaurant, food, one-page, custom-menu, featured-images, full-width-template
*/

/* ══════════════════════════════════════════════════════════════
   PALETA OFICIAL FURIA PERÚ
   ──────────────────────────────────────────────────────────────
   Primario:    #006666  (jade profundo)
   Fondo suave: #99CCCC  (turquesa claro)
   Tipografía:  Open Sans
   ══════════════════════════════════════════════════════════════ */

:root {
  /* Paleta principal */
  --jade:        #006666;
  --jade-oscuro: #004D4D;
  --jade-deep:   #003333;
  --turquesa:    #99CCCC;
  --turquesa-lt: #C2E0E0;
  --turquesa-bg: #EBF5F5;
  --blanco:      #FFFFFF;
  --crema:       #FAFAF8;
  --arena:       #F2EDE4;
  --texto:       #1A2E2E;
  --texto-suave: #3D5C5C;
  --muted:       #7A9E9E;
  --border:      rgba(0,102,102,0.15);
  --border-md:   rgba(0,102,102,0.25);

  /* Acento cálido (contraste con el jade) */
  --acento:      #CC6633;
  --acento-lt:   #E8875A;

  /* Tipografía */
  --font-base:   'Open Sans', sans-serif;
  --font-display:'Playfair Display', Georgia, serif;

  /* Espaciados */
  --max-w: 1200px;
  --gap:   clamp(24px, 4vw, 64px);
}

/* ── RESET BASE ──────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; -webkit-text-size-adjust:100%; }
body {
  font-family: var(--font-base);
  background: var(--crema);
  color: var(--texto);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display:block; max-width:100%; height:auto; }
a { text-decoration:none; color:inherit; }
ul, ol { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
input, select, textarea { font-family:inherit; }

/* ── TIPOGRAFÍA GLOBAL ───────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--jade-deep);
  line-height: 1.15;
  font-weight: 400;
}
h1 { font-size: clamp(42px, 7vw, 88px); }
h2 { font-size: clamp(32px, 5vw, 56px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: 20px; }

p { color: var(--texto-suave); line-height: 1.8; }

/* ── ETIQUETA DECORATIVA ─────────────────────────────────────── */
.fp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-base);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 16px;
}
.fp-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--jade);
  flex-shrink: 0;
}

/* ── BOTONES ─────────────────────────────────────────────────── */
.btn-jade {
  display: inline-block;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 15px 36px;
  background: var(--jade);
  color: var(--blanco);
  border: 2px solid var(--jade);
  transition: background .25s, color .25s, transform .15s;
}
.btn-jade:hover {
  background: var(--jade-oscuro);
  border-color: var(--jade-oscuro);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 13px 34px;
  background: transparent;
  color: var(--jade);
  border: 2px solid var(--jade);
  transition: background .25s, color .25s;
}
.btn-outline:hover {
  background: var(--jade);
  color: var(--blanco);
}

.btn-blanco {
  display: inline-block;
  font-family: var(--font-base);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 15px 36px;
  background: var(--blanco);
  color: var(--jade);
  border: 2px solid var(--blanco);
  transition: background .25s, color .25s;
}
.btn-blanco:hover {
  background: transparent;
  color: var(--blanco);
}

/* ── REVEAL ANIMACIONES ──────────────────────────────────────── */
.fp-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.fp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.fp-reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity .75s ease, transform .75s ease;
}
.fp-reveal-left.is-visible { opacity:1; transform:translateX(0); }
.fp-reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity .75s ease, transform .75s ease;
}
.fp-reveal-right.is-visible { opacity:1; transform:translateX(0); }

/* delay helpers */
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }

/* ── NAVBAR ──────────────────────────────────────────────────── */
#fp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  transition: background .4s, box-shadow .4s;
}
#fp-nav.scrolled {
  background: rgba(0, 51, 51, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(0,51,51,.25);
}
#fp-nav.top { background: transparent; }

.fp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.fp-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
.fp-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--blanco);
  letter-spacing: .04em;
}
.fp-logo-text em {
  font-style: italic;
  color: var(--turquesa);
}

.fp-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.fp-nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  transition: color .2s;
  position: relative;
  padding-bottom: 2px;
}
.fp-nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--turquesa);
  transition: width .3s;
}
.fp-nav-links a:hover { color: var(--turquesa); }
.fp-nav-links a:hover::after { width: 100%; }

.fp-nav-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--turquesa);
  color: var(--jade-deep);
  border: none;
  transition: background .2s, transform .15s;
  text-decoration: none;
  display: inline-block;
}
.fp-nav-cta:hover {
  background: var(--blanco);
  transform: translateY(-1px);
}

/* Hamburger */
.fp-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.fp-hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--blanco);
  transition: all .3s;
}
.fp-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.fp-hamburger.open span:nth-child(2) { opacity: 0; }
.fp-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile overlay */
.fp-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--jade-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  transform: translateY(-100%);
  transition: transform .4s cubic-bezier(.77,0,.175,1);
}
.fp-mobile-nav.open { transform: translateY(0); }
.fp-mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 52px);
  color: var(--blanco);
  font-weight: 400;
  letter-spacing: .02em;
  transition: color .2s;
}
.fp-mobile-nav a:hover { color: var(--turquesa); }

/* Redes en menú móvil */
.fp-mobile-social {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.fp-mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(153,204,204,.25);
  border-radius: 50%;
  color: rgba(153,204,204,.7);
  font-size: 0;
  transition: color .2s, border-color .2s;
}
.fp-mobile-social a:hover {
  color: var(--turquesa);
  border-color: var(--turquesa);
}
.fp-mobile-social svg {
  width: 22px;
  height: 22px;
}

/* ── HERO ────────────────────────────────────────────────────── */
#fp-hero, #fp-inicio {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.fp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,51,51,.75) 0%, rgba(0,51,51,.4) 50%, rgba(0,51,51,.85) 100%),
    url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=85') center/cover no-repeat;
}
.fp-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(153,204,204,.08) 1px, transparent 0);
  background-size: 48px 48px;
  pointer-events: none;
}

.fp-hero-content {
  position: relative;
  z-index: 2;
  padding: 72px 5vw 40px;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  animation: fpFadeUp .9s ease both .2s;
}

@keyframes fpFadeUp {
  from { opacity:0; transform:translateY(36px); }
  to   { opacity:1; transform:translateY(0); }
}

.fp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--turquesa);
  margin-bottom: 24px;
}
.fp-hero-tag::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--turquesa);
  display: block;
}

.fp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 400;
  line-height: 1.0;
  color: var(--blanco);
  letter-spacing: -.02em;
  margin-bottom: 28px;
}
.fp-hero-title span.jade-t { color: var(--turquesa); }
.fp-hero-title em {
  font-style: italic;
  color: var(--turquesa-lt);
}

.fp-hero-desc {
  font-family: var(--font-base);
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  margin-bottom: 24px;
}

.fp-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Carrusel de imágenes fondo */
.fp-hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.fp-hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.fp-hero-slide.active { opacity: 1; }

/* ── FRANJA DATOS ────────────────────────────────────────────── */
.fp-data-strip {
  background: var(--jade);
  color: var(--blanco);
  padding: 0 5vw;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fp-data-item {
  padding: 22px 16px;
  border-right: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  gap: 14px;
}
.fp-data-item:last-child { border-right: none; }
.fp-data-ico {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.fp-data-ico svg { width:16px;height:16px;stroke-width:1.5; }
.fp-data-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 2px;
}
.fp-data-val {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--blanco);
  line-height: 1.25;
}

/* ── SOMOS ───────────────────────────────────────────────────── */
#fp-somos {
  padding: 120px 5vw;
  background: var(--crema);
}
.fp-somos-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}
.fp-somos-imgs { position: relative; }
.fp-somos-img1 {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(1.05) brightness(.95);
}
.fp-somos-img2 {
  position: absolute;
  bottom: -36px;
  right: -28px;
  width: 55%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 8px solid var(--crema);
  filter: saturate(1.05);
}
.fp-years-badge {
  position: absolute;
  top: 24px;
  left: -20px;
  width: 90px;
  height: 90px;
  background: var(--jade);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  font-family: var(--font-display);
}
.fp-years-n { font-size: 34px; font-weight: 400; line-height: 1; }
.fp-years-t {
  font-family: var(--font-base);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--turquesa);
}

.fp-somos-content h2 { margin-bottom: 24px; }
.fp-somos-content p { margin-bottom: 18px; }
.fp-somos-firma {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--jade);
  margin: 28px 0;
}

/* Pilares */
.fp-pilares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.fp-pilar {
  padding: 18px 20px;
  background: var(--turquesa-bg);
  border-left: 3px solid var(--jade);
  transition: background .25s, border-color .25s;
}
.fp-pilar:hover {
  background: var(--turquesa-lt);
  border-color: var(--acento);
}
.fp-pilar-title {
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 5px;
}
.fp-pilar-text {
  font-size: 13px;
  color: var(--texto-suave);
  line-height: 1.55;
}

/* ── CARTA / MENÚ ────────────────────────────────────────────── */
#fp-carta {
  background: var(--turquesa-bg);
  padding: 120px 5vw;
}
.fp-carta-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.fp-carta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.fp-carta-card {
  background: var(--blanco);
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,102,102,.08);
  transition: transform .3s, box-shadow .3s;
}
.fp-carta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,102,102,.15);
}
.fp-carta-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(1.1) brightness(.95);
  transition: transform .5s;
}
.fp-carta-card:hover .fp-carta-img { transform: scale(1.04); }
.fp-carta-img-wrap { overflow: hidden; }

.fp-carta-body { padding: 24px 22px; }
.fp-carta-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 8px;
}
.fp-carta-nombre {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--jade-deep);
  margin-bottom: 10px;
  line-height: 1.15;
}
.fp-carta-desc {
  font-size: 14px;
  color: var(--texto-suave);
  line-height: 1.65;
  margin-bottom: 18px;
}
.fp-carta-line {
  width: 32px;
  height: 2px;
  background: var(--turquesa);
  margin-bottom: 12px;
}
.fp-carta-cta {
  text-align: center;
  margin-top: 56px;
}
.fp-carta-cta p {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 14px;
}

/* ── GALERÍA ─────────────────────────────────────────────────── */
#fp-galeria {
  padding: 100px 0;
  background: var(--jade-deep);
  overflow: hidden;
}
.fp-galeria-header {
  padding: 0 5vw;
  margin-bottom: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.fp-galeria-header h2 { color: var(--blanco); }
.fp-galeria-header h2 em { color: var(--turquesa); font-style: italic; }

.fp-gallery-band {
  overflow: hidden;
  position: relative;
}
.fp-gallery-band::before,
.fp-gallery-band::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  z-index: 1;
  width: 12vw;
  pointer-events: none;
}
.fp-gallery-band::before {
  left: 0;
  background: linear-gradient(to right, var(--jade-deep), transparent);
}
.fp-gallery-band::after {
  right: 0;
  background: linear-gradient(to left, var(--jade-deep), transparent);
}
.fp-gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: fpTrack 28s linear infinite;
}
.fp-gallery-track:hover { animation-play-state: paused; }

@keyframes fpTrack {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.fp-gallery-item {
  width: clamp(260px, 22vw, 360px);
  height: 240px;
  object-fit: cover;
  flex-shrink: 0;
  filter: brightness(.7) saturate(1.1);
  transition: filter .4s;
}
.fp-gallery-item:hover {
  filter: brightness(.95) saturate(1.2);
}

/* ── CONTACTO ────────────────────────────────────────────────── */
#fp-contacto {
  padding: 120px 5vw;
  background: var(--crema);
}
.fp-contacto-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}

.fp-contact-list { display: flex; flex-direction: column; }
.fp-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.fp-contact-item:first-child { border-top: 1px solid var(--border); }
.fp-contact-ico {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--turquesa-bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.fp-contact-ico svg {
  width: 18px; height: 18px;
  stroke: var(--jade);
  fill: none;
  stroke-width: 1.5;
}
.fp-contact-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 4px;
}
.fp-contact-val {
  font-size: 15px;
  color: var(--texto);
  line-height: 1.5;
}
.fp-contact-val a { color: var(--texto); transition: color .2s; }
.fp-contact-val a:hover { color: var(--jade); }

.fp-horario-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3px;
}
.fp-horario-dia { font-size: 13px; color: var(--muted); font-weight: 500; }
.fp-horario-hora { font-size: 13px; color: var(--texto); font-weight: 600; }

.fp-contacto-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ── WHATSAPP FLOTANTE ───────────────────────────────────────── */
.fp-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 2000;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.fp-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
}
.fp-wa svg { width: 28px; height: 28px; fill: #fff; }
.fp-wa::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,.35);
  animation: fpPulse 2.5s ease-in-out infinite;
}
@keyframes fpPulse {
  0%,100% { opacity: .4; transform: scale(1); }
  50%      { opacity: .7; transform: scale(1.05); }
}

/* ── FOOTER ──────────────────────────────────────────────────── */
/* ── FOOTER ──────────────────────────────────────────────────── */
#fp-footer {
  background: var(--jade-deep);
  padding: 64px 5vw 36px;
}

/*
  Layout: una sola fila con max-width
  [ Logo+tagline ]  |  [ Navegación ]  |  [ Contacto ]  |  [ Redes ]
  2fr                   1fr                1fr               1fr
*/
.fp-footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 0;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(153,204,204,.15);
}

/* Columna izquierda: logo + tagline */
.fp-footer-brand-col {
  padding-right: 48px;
  border-right: 1px solid rgba(153,204,204,.12);
}
.fp-footer-brand-col img {
  height: 76px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 18px;
}
.fp-footer-tagline {
  font-size: 13px;
  color: rgba(153,204,204,.55);
  line-height: 1.7;
  max-width: 260px;
}

/* Las 3 columnas de la derecha */
.fp-footer-top > div.fp-footer-col {
  padding-left: 40px;
  padding-right: 40px;
  border-right: 1px solid rgba(153,204,204,.12);
}
.fp-footer-top > div.fp-footer-col:last-child {
  border-right: none;
  padding-right: 0;
}

/* Separador (ya no se usa, se oculta) */
.fp-footer-divider { display: none; }
/* Grid antiguo (ya no se usa) */
.fp-footer-grid    { display: none; }

.fp-footer-col-title {
  font-family: var(--font-base);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--turquesa);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(153,204,204,.15);
}

.fp-footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.fp-footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color .2s;
  line-height: 1.4;
}
.fp-footer-links a:hover { color: var(--blanco); }

/* Redes sociales */
.fp-footer-social {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.fp-footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.5);
  transition: color .2s, transform .15s;
}
.fp-footer-social a:hover {
  color: var(--turquesa);
  transform: translateX(3px);
}
.fp-footer-social svg { width:16px; height:16px; flex-shrink:0; }

/* Bottom bar */
.fp-footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(153,204,204,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(153,204,204,.35);
}
.fp-footer-social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fp-footer-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border: 1px solid rgba(153,204,204,.18);
  border-radius: 50%;
  color: rgba(153,204,204,.45);
  transition: color .2s, border-color .2s, transform .15s;
}
.fp-footer-social-icons a:hover {
  color: var(--turquesa);
  border-color: var(--turquesa);
  transform: translateY(-2px);
}
.fp-footer-social-icons svg { width:14px; height:14px; }

/* Responsive */
@media (max-width: 768px) {
  .fp-footer-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .fp-footer-grid > div {
    padding: 0 0 28px 0;
    border-right: none;
    border-bottom: 1px solid rgba(153,204,204,.12);
    margin-bottom: 28px;
  }
  .fp-footer-grid > div:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .fp-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}


/* Reseñas grid */
.fp-resenas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .fp-somos-inner         { grid-template-columns: 1fr; gap: 48px; }
  .fp-carta-grid          { grid-template-columns: 1fr 1fr; gap: 16px; }
  .fp-contacto-inner      { grid-template-columns: 1fr; gap: 40px; }
  .fp-footer-grid         { grid-template-columns: 1fr 1fr; gap: 0; }
  .fp-footer-grid > div,
  .fp-footer-brand        { padding: 0 24px; border-right: none; border-bottom: 1px solid rgba(153,204,204,.12); padding-bottom: 28px; margin-bottom: 28px; }
  .fp-footer-grid > div:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .fp-data-item           { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .fp-data-item:last-child{ border-bottom: none; }
  .fp-somos-imgs          { max-width: 520px; margin: 0 auto; }
  #fp-somos, #fp-carta, #fp-contacto { padding: 80px 5vw; }
  .fp-resenas-grid        { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .fp-nav-links           { display: none; }
  .fp-hamburger           { display: flex; }
  #fp-nav                 { padding: 0 5vw !important; height: 64px; }
  #fp-inicio              { min-height: 100svh; align-items: flex-start; }
  .fp-hero-content        { padding: 0 5vw 32px; }
  .fp-hero-title          { font-size: clamp(38px, 11vw, 64px); line-height: 1.05; margin-bottom: 12px; }
  .fp-hero-tag            { font-size: 10px; margin-bottom: 14px; }
  .fp-hero-desc           { font-size: 14px; margin-bottom: 20px; }
  .fp-hero-btns           { flex-direction: column; gap: 10px; }
  .fp-hero-btns a         { width: 100%; justify-content: center; padding: 14px; font-size: 12px; }
  .fp-data-strip          { grid-template-columns: 1fr; }
  .fp-data-item           { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding: 16px 5vw; }
  .fp-data-item:last-child{ border-bottom: none; }
  #fp-somos               { padding: 60px 5vw 80px; }
  .fp-somos-inner         { grid-template-columns: 1fr; gap: 0; }
  .fp-somos-imgs          { max-width: 100%; margin-bottom: 48px; }
  .fp-somos-img1          { aspect-ratio: 4/3; }
  .fp-somos-img2          { width: 48%; right: 0; bottom: -28px; border-width: 5px; }
  .fp-years-badge         { left: -8px; top: 16px; width: 72px; height: 72px; }
  .fp-years-n             { font-size: 26px; }
  .fp-somos-content h2    { font-size: clamp(28px, 7vw, 40px); }
  .fp-pilares             { grid-template-columns: 1fr; gap: 8px; margin-top: 24px; }
  #fp-carta               { padding: 60px 5vw; }
  .fp-carta-header h2     { font-size: clamp(28px, 7vw, 40px); }
  .fp-carta-grid          { grid-template-columns: 1fr; gap: 14px; }
  .fp-carta-img           { aspect-ratio: 16/9; }
  .fp-carta-cta a         { width: 100%; display: flex; justify-content: center; }
  #fp-galeria             { padding: 60px 0; }
  .fp-gallery-item        { width: 240px; height: 180px; }
  #fp-contacto            { padding: 60px 5vw; }
  .fp-contacto-info h2    { font-size: clamp(28px, 7vw, 40px); }
  .fp-contact-item        { padding: 16px 0; gap: 14px; }
  .fp-contacto-btns       { flex-direction: column; gap: 10px; margin-top: 24px; }
  .fp-contacto-btns a     { width: 100%; justify-content: center; display: flex; }
  #fp-footer              { padding: 48px 5vw 28px; }
  .fp-footer-grid         { grid-template-columns: 1fr; gap: 0; margin-bottom: 36px; }
  .fp-footer-grid > div,
  .fp-footer-brand        { padding: 0 0 24px 0; border-right: none; border-bottom: 1px solid rgba(153,204,204,.12); margin-bottom: 24px; }
  .fp-footer-grid > div:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .fp-footer-bottom       { flex-direction: column; gap: 8px; text-align: center; }
  .fp-footer-brand img    { height: 60px; }
  .fp-wa                  { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .fp-mobile-nav a        { font-size: clamp(28px, 9vw, 44px); }
  .fp-resenas-grid        { grid-template-columns: 1fr !important; gap: 12px !important; }
  #fp-resenas             { padding: 56px 5vw !important; }
}

@media (max-width: 480px) {
  .fp-hero-content        { padding: calc(64px + 28px) 5vw 32px !important; }
  .fp-hero-title          { font-size: clamp(34px, 10vw, 52px); }
  .fp-hero-desc           { font-size: 13px; }
  .fp-somos-img2          { width: 45%; }
  .fp-years-badge         { left: -4px; }
}

@media (max-width: 360px) {
  #fp-nav                 { padding: 0 4vw !important; }
  .fp-hero-title          { font-size: 32px; }
  .fp-data-val            { font-size: 14px; }
  .fp-footer-brand img    { height: 52px; }
}
