/*
Theme Name: ZFLC - Zona Franca Las Cabras
Theme URI: https://zflascabras.com
Description: Marketing theme for Zona Franca Las Cabras — free trade zone and logistics hub in Panama.
Version: 1.0
Author: M3AN Agency
Author URI: https://m3anagency.com
License: Proprietary
Text Domain: zflc
*/

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d1f3c;
  --navy-deep: #0a1628;
  --navy-mid: #122444;
  --gold: #c8a94a;
  --gold-light: #dfc06a;
  --white: #ffffff;
  --off-white: #f5f4f0;
  --gray: #8a9ab0;
  --gray-light: #e8edf3;
  --text-dark: #1a2a42;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max-w: 1200px;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ─── NAVBAR ──────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img { height: 46px; width: auto; display: block; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 22px !important;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }

.nav-wa {
  background: #25D366 !important;
  color: var(--white) !important;
  width: 36px !important; height: 36px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center; justify-content: center;
  transition: background 0.2s !important;
  flex-shrink: 0;
}
.nav-wa:hover { background: #1ebe5d !important; }
.nav-wa::after { display: none !important; }
.nav-wa svg { width: 18px; height: 18px; flex-shrink: 0; }

.nav-wa-mobile { display: none; }

.nav-lang { display: flex; align-items: center; gap: 0.35rem; }
.nav-lang a {
  font-size: 0.72rem !important; font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  color: rgba(255,255,255,0.4) !important;
  text-decoration: none; padding-bottom: 0 !important;
  text-transform: uppercase; transition: color 0.2s !important;
}
.nav-lang a:hover { color: var(--white) !important; }
.nav-lang a.lang-active { color: var(--gold) !important; }
.nav-lang a::after { display: none !important; }
.nav-lang span { color: rgba(255,255,255,0.18); font-size: 0.65rem; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--white); transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  margin-top: 72px;
  position: relative;
  height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.45) 100%);
}
.page-hero-content {
  position: relative; z-index: 1;
  padding: 0 5% 3.5rem;
  max-width: var(--max-w);
  width: 100%; margin: 0 auto;
}
.breadcrumb {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600; color: var(--white);
  line-height: 1.1; max-width: 700px;
}
.page-hero p {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  font-weight: 300; margin-top: 0.8rem; max-width: 560px;
}

/* ─── HERO SLIDER (homepage) ──────────────────────────────── */
.hero {
  position: relative; width: 100%; height: 100vh;
  overflow: hidden; margin-top: 72px;
}
.slides-container {
  display: flex; width: 300%; height: 100%;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}
.slide {
  width: 33.333%; height: 100%;
  position: relative; background-size: cover;
  background-position: center; background-repeat: no-repeat; flex-shrink: 0;
}
.slide-1 { background-image: url('images/Planta_LasCabras_0099.jpg'); }
.slide-2 { background-image: url('images/Planta_LasCabras_0092.jpg'); }
.slide-3 { background-image: url('images/Planta_LasCabras_0080.jpg'); }

.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,40,0.55) 0%, rgba(10,22,40,0.72) 60%, rgba(10,22,40,0.85) 100%);
}
.slide-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 6%; color: var(--white);
}
.slide-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s 0.2s, transform 0.7s 0.2s;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600; line-height: 1.08; letter-spacing: -0.01em;
  margin-bottom: 1.4rem; max-width: 820px;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s 0.35s, transform 0.7s 0.35s;
}
.slide-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.15rem); font-weight: 300;
  color: rgba(255,255,255,0.78); max-width: 560px; line-height: 1.65;
  margin-bottom: 2.5rem; opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s 0.5s, transform 0.7s 0.5s;
}
.slide-cta {
  display: inline-block; background: var(--gold); color: var(--navy);
  text-decoration: none; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 15px 38px;
  border: 2px solid var(--gold); opacity: 0; transform: translateY(20px);
  transition: opacity 0.7s 0.65s, transform 0.7s 0.65s, background 0.3s, color 0.3s;
}
.slide-cta:hover { background: transparent; color: var(--gold); }
.slide.active .slide-label, .slide.active .slide-title,
.slide.active .slide-subtitle, .slide.active .slide-cta { opacity: 1; transform: translateY(0); }
.slide-content::before {
  content: ''; display: block; width: 48px; height: 2px;
  background: var(--gold); margin-bottom: 1.2rem; opacity: 0;
  transform: scaleX(0); transform-origin: left center;
  transition: opacity 0.5s 0.1s, transform 0.6s 0.1s;
}
.slide.active .slide-content::before { opacity: 1; transform: scaleX(1); }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.25);
  color: white; width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(200,169,74,0.3); border-color: var(--gold); }
.slider-arrow.prev { left: 3%; }
.slider-arrow.next { right: 3%; }
.slider-arrow svg { width: 20px; height: 20px; }

.slider-dots {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35); cursor: pointer;
  transition: background 0.3s, transform 0.3s; border: none;
}
.dot.active { background: var(--gold); transform: scale(1.3); }
.slide-counter {
  position: absolute; bottom: 40px; right: 5%;
  color: rgba(255,255,255,0.5); font-size: 0.72rem; letter-spacing: 0.15em; z-index: 10;
}
.slide-counter strong { color: var(--gold); font-size: 1.1rem; }
.slider-progress {
  position: absolute; bottom: 0; left: 0;
  height: 3px; background: var(--gold); width: 0%;
  transition: width 5s linear; z-index: 10;
}

/* ─── STATS BAR ───────────────────────────────────────────── */
.stats-bar {
  background: var(--navy); padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 2.5rem 2rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative; overflow: hidden; transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(200,169,74,0.06); }
.stat-item::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width 0.4s;
}
.stat-item:hover::before { width: 100%; }
.stat-number {
  font-family: var(--font-display); font-size: 2.6rem;
  font-weight: 700; color: var(--gold); display: block; line-height: 1; margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
}

/* ─── NOSOTROS SECTION (homepage) ─────────────────────────── */
.nosotros {
  position: relative; padding: 120px 5%;
  background-image: url('images/Planta_LasCabras_0001.jpg');
  background-size: cover; background-position: center; background-attachment: fixed; overflow: hidden;
}
.nosotros-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(13,31,60,0.85) 100%);
}
.nosotros-inner { position: relative; z-index: 1; max-width: 800px; }
.nosotros h2 {
  font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600; color: var(--white); line-height: 1.1; margin-bottom: 2rem;
}
.nosotros p {
  font-size: 1.05rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.75); max-width: 660px; margin-bottom: 1.4rem;
}
.nosotros p:last-of-type { margin-bottom: 2.5rem; }
.nosotros-stat-row {
  display: flex; gap: 3rem; margin-top: 3.5rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.12);
}
.mini-stat .num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--gold); display: block;
}
.mini-stat .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; }

/* ─── VENTAJAS SECTION (homepage) ─────────────────────────── */
.ventajas { padding: 110px 5%; background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-header h2 {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; color: var(--navy); line-height: 1.15; margin-bottom: 1rem;
}
.section-header p { font-size: 1rem; color: var(--gray); font-weight: 300; max-width: 500px; margin: 0 auto; line-height: 1.7; }

.ventajas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5px; background: rgba(13,31,60,0.08); border: 1.5px solid rgba(13,31,60,0.08);
}
.ventaja-card {
  background: var(--white); padding: 3rem 2.5rem; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden;
}
.ventaja-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.ventaja-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,31,60,0.12); }
.ventaja-card:hover::before { transform: scaleX(1); }
.ventaja-icon {
  width: 64px; height: 64px; margin: 0 auto 1.8rem;
  background: rgba(13,31,60,0.05); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: background 0.3s;
}
.ventaja-card:hover .ventaja-icon { background: rgba(200,169,74,0.1); }
.ventaja-icon svg { width: 28px; height: 28px; stroke: var(--navy); fill: none; stroke-width: 1.5; }
.ventaja-card:hover .ventaja-icon svg { stroke: var(--gold); }
.ventaja-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 0.9rem; }
.ventaja-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; font-weight: 300; }

/* ─── SECTORES SECTION (homepage) ─────────────────────────── */
.sectores { padding: 110px 5%; background: var(--white); }
.sectores-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5px; background: rgba(13,31,60,0.06);
  border: 1.5px solid rgba(13,31,60,0.06); margin-top: 4rem;
}
.sector-card {
  background: var(--white); display: flex; overflow: hidden;
  transition: box-shadow 0.3s; min-height: 260px;
}
.sector-card:hover { box-shadow: 0 8px 40px rgba(13,31,60,0.1); z-index: 1; }
.sector-img {
  width: 42%; flex-shrink: 0; background-size: cover;
  background-position: center; position: relative; overflow: hidden;
  filter: contrast(1.06) saturate(1.05);
}
.sector-img::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(13,31,60,0.15); transition: background 0.3s;
}
.sector-card:hover .sector-img::after { background: rgba(13,31,60,0); }
.sector-img-1 { background-image: url('images/Planta_LasCabras_0086.jpg'); }
.sector-img-2 { background-image: url('images/Planta_LasCabras_0002.jpg'); background-size: 220%; background-position: center; }
.sector-img-3 { background-image: url('images/Planta_LasCabras_aerea_extra.jpg'); }
.sector-img-4 { background-image: url('images/Planta_LasCabras_0003.jpg'); background-size: 220%; background-position: center; }
.sector-body { width: 58%; padding: 2.5rem 2.2rem; display: flex; flex-direction: column; justify-content: center; }
.sector-num { font-family: var(--font-display); font-size: 0.72rem; font-weight: 400; letter-spacing: 0.25em; color: var(--gold); margin-bottom: 0.8rem; text-transform: uppercase; }
.sector-body h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--navy); margin-bottom: 0.8rem; line-height: 1.2; }
.sector-body p { font-size: 0.86rem; color: var(--gray); line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }
.sector-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); text-decoration: none; transition: color 0.2s, gap 0.2s; }
.sector-link::after { content: '→'; transition: transform 0.2s; }
.sector-link:hover { color: var(--gold); gap: 12px; }

/* ─── CONTACTO SECTION (homepage) ─────────────────────────── */
.contacto { background: var(--navy); padding: 110px 5%; }
.contacto-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; max-width: 1200px; margin: 0 auto; }
.contacto-info h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; color: var(--white); line-height: 1.15; margin-bottom: 1.5rem; }
.contacto-info p { font-size: 0.92rem; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.8; margin-bottom: 3rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem 1.5rem; background: rgba(255,255,255,0.04); border-left: 2px solid var(--gold); }
.contact-item svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 2px; }
.contact-item-text span { display: block; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 3px; }
.contact-item-text strong { font-size: 0.92rem; font-weight: 400; color: var(--white); }
.contact-item-text a { color: var(--white); text-decoration: none; }
.contact-item-text a:hover { color: var(--gold); }

/* ─── BENEFITS TEASER (homepage) ─────────────────────────── */
.benef-teaser {
  position: relative; padding: 100px 5%;
  background-image: url('images/Planta_LasCabras_0080.jpg');
  background-size: cover; background-position: center; background-attachment: fixed; overflow: hidden;
}
.benef-teaser-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,0.96) 0%, rgba(13,31,60,0.88) 100%); }
.benef-teaser-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.benef-teaser-text h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; color: var(--white); line-height: 1.12; margin-bottom: 1.2rem; }
.benef-teaser-text p { font-size: 0.95rem; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.8; margin-bottom: 2.2rem; max-width: 460px; }
.benef-divider { width: 48px; height: 2px; background: var(--gold); margin: 0.8rem 0 1.5rem; }
.btn-gold { display: inline-block; background: var(--gold); color: var(--navy); text-decoration: none; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 14px 34px; transition: background 0.3s, transform 0.2s; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.benef-num-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.06); }
.benef-num-item { background: rgba(255,255,255,0.03); padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 0.3rem; transition: background 0.3s; position: relative; overflow: hidden; }
.benef-num-item::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--gold); transition: height 0.4s; }
.benef-num-item:hover { background: rgba(200,169,74,0.06); }
.benef-num-item:hover::before { height: 100%; }
.big-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.big-num small { font-size: 1.2rem; font-weight: 500; margin-left: 2px; }
.big-label { font-size: 0.82rem; font-weight: 500; color: var(--white); letter-spacing: 0.05em; margin-top: 0.3rem; }
.big-compare { font-size: 0.72rem; color: rgba(255,255,255,0.35); font-weight: 300; font-style: italic; }

/* ─── SECTION HELPERS ─────────────────────────────────────── */
.section-eyebrow {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-eyebrow::after { content: ''; display: block; width: 40px; height: 1px; background: var(--gold); opacity: 0.6; }
.section-eyebrow.center { justify-content: center; }
.section-eyebrow.center::after { display: none; }

.section-divider { width: 48px; height: 2px; background: var(--gold); margin: 1rem 0 1.5rem; }
.section-divider.center { margin-left: auto; margin-right: auto; }

h2.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; color: var(--navy); line-height: 1.1; margin-bottom: 1rem; }
h2.section-title.light { color: var(--white); }
h2.section-title.center { text-align: center; }

.section-lead { font-size: 1rem; color: var(--gray); font-weight: 300; line-height: 1.75; max-width: 600px; }
.section-lead.center { text-align: center; margin: 0 auto; }
.section-lead.light { color: rgba(255,255,255,0.65); }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; background: var(--gold); color: var(--navy);
  text-decoration: none; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; padding: 14px 36px;
  border: 2px solid var(--gold); transition: background 0.3s, color 0.3s;
  cursor: pointer; font-family: var(--font-body); border-radius: 0;
}
.btn-primary:hover { background: transparent; color: var(--gold); }

.btn-outline {
  display: inline-block; border: 1.5px solid var(--gold);
  color: var(--gold); text-decoration: none; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 13px 34px; transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }

.btn-outline-white {
  display: inline-block; border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white); text-decoration: none; font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 12px 30px; transition: border-color 0.3s, background 0.3s;
}
.btn-outline-white:hover { border-color: var(--gold); background: rgba(200,169,74,0.1); }

/* ─── CARDS ───────────────────────────────────────────────── */
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5px; background: rgba(13,31,60,0.08); border: 1.5px solid rgba(13,31,60,0.08); }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5px; background: rgba(13,31,60,0.08); border: 1.5px solid rgba(13,31,60,0.08); }

.card-base { background: var(--white); padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.card-base:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,31,60,0.1); }
.card-base::before { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.card-base:hover::before { transform: scaleX(1); }
.card-icon { width: 56px; height: 56px; background: rgba(13,31,60,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: background 0.3s; }
.card-base:hover .card-icon { background: rgba(200,169,74,0.12); }
.card-icon svg { width: 26px; height: 26px; stroke: var(--navy); fill: none; stroke-width: 1.5; transition: stroke 0.3s; }
.card-base:hover .card-icon svg { stroke: var(--gold); }
.card-base h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 0.75rem; }
.card-base p { font-size: 0.88rem; color: var(--gray); line-height: 1.72; font-weight: 300; }

/* ─── TABLE ───────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th { background: var(--navy); color: var(--white); padding: 1rem 1.5rem; text-align: left; font-weight: 500; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; }
.data-table th:first-child { color: var(--gold); }
.data-table td { padding: 1rem 1.5rem; border-bottom: 1px solid var(--gray-light); color: var(--text-dark); font-weight: 300; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(200,169,74,0.04); }
.data-table td.highlight { color: #2a7a4b; font-weight: 600; }
.data-table td.dim { color: var(--gray); }

/* ─── CONTACT FORM ────────────────────────────────────────── */
.contacto-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.form-group input, .form-group textarea, .form-group select {
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--white); padding: 13px 16px; font-family: var(--font-body);
  font-size: 0.9rem; font-weight: 300; outline: none;
  transition: border-color 0.2s, background 0.2s; border-radius: 0; appearance: none; -webkit-appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); background: rgba(255,255,255,0.08); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--navy); color: var(--white); }
.btn-submit {
  background: var(--gold); color: var(--navy); border: none;
  padding: 16px 40px; font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: background 0.3s, transform 0.2s;
  align-self: flex-start; border-radius: 0;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ─── CONTACT PAGE ────────────────────────────────────────── */
.contacto-page { padding: 90px 5%; background: var(--navy); }
.contacto-page-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.contacto-info h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; color: var(--white); line-height: 1.15; margin-bottom: 1rem; }
.contacto-info > p { font-size: 0.92rem; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.8; margin-bottom: 2.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 3rem; }
.contact-item:hover { background: rgba(255,255,255,0.07); }
.hours-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); padding: 1.5rem; }
.hours-box h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hours-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.85rem; font-weight: 300; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: rgba(255,255,255,0.5); }
.hours-row .time { color: var(--white); }
.hours-row .time.always { color: var(--gold); }

/* ─── ABOUT PAGE ──────────────────────────────────────────── */
.about-intro { padding: 90px 5%; background: var(--white); }
.about-intro-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-intro-text p { font-size: 1rem; color: var(--gray); font-weight: 300; line-height: 1.8; margin-bottom: 1.2rem; }
.about-intro-text p:last-of-type { margin-bottom: 2rem; }
.about-image-block { position: relative; }
.about-image-block img { width: 100%; height: 480px; object-fit: cover; display: block; }
.about-image-badge { position: absolute; bottom: -1.5rem; left: -1.5rem; background: var(--navy); padding: 1.8rem 2rem; color: var(--white); max-width: 220px; }
.about-image-badge .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; }
.about-image-badge .lbl { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; display: block; }
.licencias { padding: 90px 5%; background: var(--off-white); }
.licencias-inner { max-width: var(--max-w); margin: 0 auto; }
.licencias-header { max-width: 600px; margin-bottom: 4rem; }
.timeline { position: relative; padding-left: 2px; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--gold), rgba(200,169,74,0.1)); margin-left: 24px; }
.timeline-item { display: flex; gap: 2.5rem; margin-bottom: 3rem; align-items: flex-start; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { width: 50px; height: 50px; background: var(--navy); border: 2px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-family: var(--font-display); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; text-align: center; line-height: 1.2; }
.timeline-content { background: var(--white); padding: 2rem 2.5rem; flex: 1; border-left: 3px solid var(--gold); }
.timeline-date { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.timeline-content h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--navy); margin-bottom: 0.7rem; }
.timeline-content p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; font-weight: 300; }
.license-badge { display: inline-block; background: rgba(200,169,74,0.12); color: var(--gold); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 12px; margin-bottom: 0.8rem; }
.superficie { padding: 90px 5%; background: var(--navy); position: relative; overflow: hidden; }
.superficie::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(200,169,74,0.06) 0%, transparent 70%); border-radius: 50%; }
.superficie-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; }
.superficie-text h2 { color: var(--white); margin-bottom: 1.5rem; }
.superficie-text p { font-size: 0.95rem; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.8; margin-bottom: 1.2rem; }
.superficie-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.06); }
.sup-stat { background: rgba(255,255,255,0.03); padding: 2rem 1.8rem; text-align: center; transition: background 0.3s; }
.sup-stat:hover { background: rgba(200,169,74,0.06); }
.sup-stat .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; margin-bottom: 0.4rem; }
.sup-stat .lbl { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.valores { padding: 90px 5%; background: var(--white); }
.valores-inner { max-width: var(--max-w); margin: 0 auto; }
.valores-header { text-align: center; margin-bottom: 4rem; }
.ubicacion { padding: 90px 5%; background: var(--off-white); }
.ubicacion-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.ubicacion img { width: 100%; height: 400px; object-fit: cover; display: block; }
.ubicacion-text h2 { margin-bottom: 1.2rem; }
.ubicacion-text p { font-size: 0.95rem; color: var(--gray); font-weight: 300; line-height: 1.8; margin-bottom: 1rem; }
.access-list { list-style: none; margin: 1.5rem 0 2rem; }
.access-list li { display: flex; align-items: flex-start; gap: 0.8rem; padding: 0.7rem 0; border-bottom: 1px solid var(--gray-light); font-size: 0.9rem; color: var(--text-dark); font-weight: 300; }
.access-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }

/* ─── ADVANTAGES PAGE ─────────────────────────────────────── */
.infra { padding: 90px 5%; background: var(--white); }
.infra-inner { max-width: var(--max-w); margin: 0 auto; }
.infra-header { max-width: 620px; margin-bottom: 4rem; }
.infra-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(13,31,60,0.07); border: 1.5px solid rgba(13,31,60,0.07); margin-bottom: 5rem; }
.infra-item { background: var(--white); padding: 2.2rem 2rem; display: flex; gap: 1.2rem; align-items: flex-start; transition: background 0.3s; }
.infra-item:hover { background: rgba(200,169,74,0.04); }
.infra-icon { width: 44px; height: 44px; background: rgba(13,31,60,0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.3s; }
.infra-item:hover .infra-icon { background: rgba(200,169,74,0.15); }
.infra-icon svg { width: 20px; height: 20px; stroke: var(--navy); fill: none; stroke-width: 1.5; transition: stroke 0.3s; }
.infra-item:hover .infra-icon svg { stroke: var(--gold); }
.infra-text h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.infra-text p { font-size: 0.84rem; color: var(--gray); font-weight: 300; line-height: 1.65; }
.operador { padding: 90px 5%; background: var(--navy); position: relative; overflow: hidden; }
.operador::before { content: ''; position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(200,169,74,0.07) 0%, transparent 70%); border-radius: 50%; }
.operador-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; }
.operador-img img { width: 100%; height: 420px; object-fit: cover; display: block; border: 2px solid rgba(200,169,74,0.2); }
.operador-text h2 { color: var(--white); margin-bottom: 1.2rem; }
.operador-text > p { font-size: 0.95rem; color: rgba(255,255,255,0.62); font-weight: 300; line-height: 1.8; margin-bottom: 2rem; }
.operador-points { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.operador-points li { display: flex; align-items: flex-start; gap: 1rem; font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 300; line-height: 1.6; padding: 0.9rem 1.2rem; background: rgba(255,255,255,0.04); border-left: 2px solid rgba(200,169,74,0.4); }
.operador-points li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.oea-badge { display: inline-flex; align-items: center; gap: 0.7rem; background: rgba(200,169,74,0.1); border: 1px solid rgba(200,169,74,0.3); padding: 0.7rem 1.2rem; margin-top: 1.5rem; font-size: 0.78rem; color: var(--gold); font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }
.oea-badge svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.servicios { padding: 90px 5%; background: var(--off-white); }
.servicios-inner { max-width: var(--max-w); margin: 0 auto; }
.servicios-header { text-align: center; margin-bottom: 4rem; }
.servicios-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 4rem; }
.servicio-card { background: var(--white); padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; }
.servicio-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(13,31,60,0.1); }
.servicio-card::after { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0; background: var(--gold); transition: height 0.4s; }
.servicio-card:hover::after { height: 100%; }
.servicio-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 0.8rem; }
.servicio-card p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; font-weight: 300; margin-bottom: 1.2rem; }
.tag { display: inline-block; background: rgba(200,169,74,0.1); color: var(--gold); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; }
.entidades { padding: 70px 5%; background: var(--white); border-top: 1px solid var(--gray-light); }
.entidades-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: center; gap: 4rem; flex-wrap: wrap; }
.entidades-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gray); flex-shrink: 0; }
.entidades-list { display: flex; gap: 2rem; flex-wrap: wrap; flex: 1; }
.entidad-chip { background: var(--off-white); border: 1px solid var(--gray-light); padding: 0.7rem 1.5rem; font-size: 0.82rem; font-weight: 500; color: var(--navy); letter-spacing: 0.08em; text-transform: uppercase; transition: border-color 0.2s, background 0.2s; }
.entidad-chip:hover { border-color: var(--gold); background: rgba(200,169,74,0.06); }
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); height: 320px; gap: 3px; }
.photo-strip-item { background-size: cover; background-position: center; position: relative; overflow: hidden; }
.photo-strip-item::after { content: ''; position: absolute; inset: 0; background: rgba(13,31,60,0.2); transition: background 0.3s; }
.photo-strip-item:hover::after { background: rgba(13,31,60,0); }
.mapa-conectividad { padding: 90px 5%; background: var(--white); }
.mapa-inner { max-width: var(--max-w); margin: 0 auto; }
.mapa-puntos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(13,31,60,0.07); border: 1.5px solid rgba(13,31,60,0.07); margin: 2.5rem 0 3rem; }
.mapa-punto { display: flex; align-items: flex-start; gap: 0.9rem; padding: 1.2rem 1.4rem; background: var(--white); font-size: 0.86rem; color: var(--gray); font-weight: 300; line-height: 1.55; transition: background 0.2s; }
.mapa-punto:hover { background: rgba(200,169,74,0.04); }
.mapa-punto svg { width: 18px; height: 18px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.mapa-punto strong { color: var(--navy); font-weight: 500; display: block; margin-bottom: 2px; }
.mapa-imagen { background: var(--white); border: 1.5px solid rgba(13,31,60,0.08); padding: 2.5rem; }
.mapa-imagen img { width: 100%; display: block; }

/* ─── BENEFITS PAGE ───────────────────────────────────────── */
.benef-intro { padding: 90px 5%; background: var(--white); }
.benef-intro-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.benef-intro-text p { font-size: 1rem; color: var(--gray); font-weight: 300; line-height: 1.8; margin-bottom: 1.2rem; }
.highlight-box { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 2.5rem; color: var(--white); position: relative; overflow: hidden; }
.highlight-box::before { content: ''; position: absolute; top: -30px; right: -30px; width: 140px; height: 140px; border-radius: 50%; background: rgba(200,169,74,0.08); }
.highlight-box .hl-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--gold); display: block; line-height: 1; margin-bottom: 0.4rem; }
.highlight-box .hl-label { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.highlight-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: rgba(255,255,255,0.08); margin-top: 1.5rem; position: relative; }
.incentivos { padding: 90px 5%; background: var(--off-white); }
.incentivos-inner { max-width: var(--max-w); margin: 0 auto; }
.incentivos-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.incentivo-block { background: var(--white); padding: 2.5rem 2rem; position: relative; overflow: hidden; transition: box-shadow 0.3s; }
.incentivo-block:hover { box-shadow: 0 12px 40px rgba(13,31,60,0.1); }
.incentivo-block::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); }
.incentivo-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: rgba(13,31,60,0.06); position: absolute; top: 1rem; right: 1.5rem; line-height: 1; }
.incentivo-block h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--navy); margin-bottom: 1.5rem; position: relative; }
.incentivo-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; position: relative; }
.incentivo-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 0.87rem; color: var(--text-dark); font-weight: 300; line-height: 1.6; padding-bottom: 0.7rem; border-bottom: 1px solid var(--gray-light); }
.incentivo-list li:last-child { border-bottom: none; padding-bottom: 0; }
.incentivo-list li::before { content: ''; width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 7px; }
.tabla { padding: 90px 5%; background: var(--navy); position: relative; overflow: hidden; }
.tabla::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(200,169,74,0.05) 0%, transparent 70%); border-radius: 50%; }
.tabla-inner { max-width: var(--max-w); margin: 0 auto; position: relative; }
.tabla-header { max-width: 620px; margin-bottom: 3.5rem; }
.tabla-header h2 { color: var(--white); }
.tabla-header p { color: rgba(255,255,255,0.55); font-size: 0.95rem; font-weight: 300; line-height: 1.75; margin-top: 1rem; }
.tabla-wrap { overflow-x: auto; }
.data-table thead tr:first-child th { background: rgba(200,169,74,0.15); }
.data-table thead tr:first-child th:first-child { background: transparent; }
.data-table th.col-zflc { background: rgba(200,169,74,0.2); color: var(--gold); }
.data-table th.col-ord { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.5); }
.data-table td { background: rgba(255,255,255,0.02); border-bottom-color: rgba(255,255,255,0.06); color: rgba(255,255,255,0.7); }
.data-table tr:hover td { background: rgba(255,255,255,0.04); }
.data-table td.item { color: rgba(255,255,255,0.85); font-weight: 400; }
.data-table td.good { color: #4cc97a; font-weight: 500; }
.data-table td.bad { color: rgba(255,255,255,0.35); }
.operativos { padding: 90px 5%; background: var(--white); }
.operativos-inner { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.operativos-text h2 { margin-bottom: 1.2rem; }
.operativos-text p { font-size: 0.95rem; color: var(--gray); font-weight: 300; line-height: 1.8; margin-bottom: 1rem; }
.op-list { list-style: none; margin-top: 1.5rem; }
.op-list li { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border-bottom: 1px solid var(--gray-light); font-size: 0.9rem; color: var(--text-dark); font-weight: 300; transition: background 0.2s; }
.op-list li:hover { background: rgba(200,169,74,0.04); }
.op-list li::before { content: '✓'; color: var(--gold); font-weight: 600; font-size: 0.65rem; flex-shrink: 0; width: 24px; height: 24px; background: rgba(200,169,74,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.econ-badge { background: var(--off-white); padding: 2.5rem; text-align: center; border: 1.5px solid var(--gray-light); }
.econ-badge svg { width: 48px; height: 48px; stroke: var(--gold); fill: none; stroke-width: 1; margin-bottom: 1rem; }
.econ-badge h3 { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 0.5rem; }
.econ-badge p { font-size: 0.85rem; color: var(--gray); font-weight: 300; line-height: 1.7; }
.econ-flag { display: flex; align-items: center; gap: 0.8rem; background: rgba(200,169,74,0.08); border: 1px solid rgba(200,169,74,0.2); padding: 0.8rem 1.2rem; margin-top: 1.5rem; font-size: 0.8rem; color: var(--text-dark); font-weight: 400; }
.econ-flag strong { color: var(--navy); }
.benef-cta { padding: 80px 5%; background: var(--off-white); text-align: center; }
.benef-cta h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 600; color: var(--navy); margin-bottom: 1rem; }
.benef-cta p { font-size: 0.95rem; color: var(--gray); font-weight: 300; max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.75; }

/* ─── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--navy-deep); padding: 3rem 5%; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; margin-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-brand .footer-logo { text-decoration: none; display: block; margin-bottom: 1rem; }
.footer-brand .footer-logo img { height: 40px; width: auto; display: block; }
.footer-brand p { font-size: 0.82rem; color: rgba(255,255,255,0.35); font-weight: 300; line-height: 1.7; max-width: 240px; }
.footer-col h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.82rem; color: rgba(255,255,255,0.4); text-decoration: none; letter-spacing: 0.05em; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 0.9rem; }
.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.82rem; color: rgba(255,255,255,0.4); font-weight: 300; line-height: 1.5; text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.22); letter-spacing: 0.06em; }

/* ─── FADE-UP ANIMATION ───────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.7s, transform 0.7s; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ─── UTILITY ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 5%; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
body.nav-open { overflow: hidden; }

@media (max-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 900px) {
  nav { height: 70px; padding: 0 5%; border-bottom: 1px solid rgba(200,169,74,0.22); }
  .nav-logo img { height: 50px; }
  .nav-links .nav-wa { display: none !important; }
  .nav-wa-mobile { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: #25D366; border-radius: 50%; flex-shrink: 0; margin-left: auto; margin-right: 10px; transition: background 0.2s; }
  .nav-wa-mobile:hover { background: #1ebe5d; }
  .nav-wa-mobile svg { width: 18px; height: 18px; }
  .nav-toggle { display: flex; width: 44px; height: 44px; align-items: center; justify-content: center; padding: 0; margin-right: -8px; }
  .nav-links { position: fixed; top: 70px; left: 0; right: 0; background: var(--navy-deep); flex-direction: column; align-items: stretch; gap: 0; padding: 0; transform: translateY(calc(-100% - 80px)); transition: transform 0.38s cubic-bezier(0.77,0,0.175,1); box-shadow: 0 24px 60px rgba(0,0,0,0.55); border-top: 2px solid rgba(200,169,74,0.4); max-height: calc(100vh - 70px); overflow-y: auto; z-index: 999; }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links li:last-child { border-bottom: none; padding: 1rem 5%; }
  .nav-links a { display: flex; align-items: center; justify-content: center; padding: 17px 5%; font-size: 0.82rem; letter-spacing: 0.14em; }
  .nav-links a.active { color: var(--gold); background: rgba(200,169,74,0.06); }
  .nav-cta { display: block !important; text-align: center; padding: 14px 5% !important; border-radius: 2px; letter-spacing: 0.1em !important; }
  .page-hero { margin-top: 70px; height: 300px; }
  .hero { margin-top: 70px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .ventajas-grid { grid-template-columns: 1fr 1fr; }
  .sectores-grid { grid-template-columns: 1fr; }
  .sector-card { flex-direction: column; min-height: auto; }
  .sector-img { width: 100%; height: 240px; }
  .sector-body { width: 100%; }
  .contacto-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  .nosotros { background-attachment: scroll; }
  .benef-teaser { background-attachment: scroll; }
  .benef-teaser-inner { grid-template-columns: 1fr; gap: 3rem; }
  .benef-teaser-text p { max-width: 100%; }
  .card-grid-3 { grid-template-columns: 1fr 1fr; }
  .about-intro-inner, .superficie-inner, .ubicacion-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-image-badge { position: static; margin-top: 1rem; max-width: none; display: inline-block; }
  .incentivos-tabs { grid-template-columns: 1fr; }
  .highlight-row { grid-template-columns: 1fr 1fr; }
  .benef-intro-inner, .operativos-inner { grid-template-columns: 1fr; gap: 3rem; }
  .infra-grid { grid-template-columns: 1fr 1fr; }
  .operador-inner { grid-template-columns: 1fr; gap: 3rem; }
  .servicios-grid { grid-template-columns: 1fr 1fr; }
  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .photo-strip-item { height: 220px; }
  .mapa-puntos { grid-template-columns: 1fr 1fr; }
  .contacto-page-inner { grid-template-columns: 1fr; gap: 3.5rem; }
}

@media (max-width: 480px) {
  nav { height: 64px; padding: 0 4%; }
  .nav-logo img { height: 44px; }
  .nav-links { top: 64px; max-height: calc(100vh - 64px); }
  .nav-links a { padding: 15px 5%; font-size: 0.8rem; }
  .page-hero { margin-top: 64px; height: 260px; }
  .page-hero h1 { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .hero { margin-top: 64px; }
  .slide-title { font-size: clamp(2rem, 8vw, 3rem); }
}

@media (max-width: 640px) {
  .card-grid-4, .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .infra-grid, .servicios-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .footer-copy { font-size: 0.68rem; }
}

@media (max-width: 600px) {
  .stats-bar { grid-template-columns: 1fr; }
  .mapa-puntos { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .benef-num-grid { grid-template-columns: 1fr; }
}

@media (max-width: 400px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   PAGE-SPECIFIC STYLES — Ventajas & Beneficios templates
   ════════════════════════════════════════════════════════════ */

/* ─── VENTAJAS: infra-section ─────────────────────────────── */
.infra-section { padding: 90px 5%; background: var(--white); }
.infra-section .infra-header { max-width: var(--max-w); margin: 0 auto 4rem; }
.infra-section .infra-grid { max-width: var(--max-w); margin: 0 auto; }
/* h3 inside infra-text (templates use h3, original CSS had h4) */
.infra-text h3,
.infra-text h4 {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 600; color: var(--navy); margin-bottom: 0.4rem;
}

/* ─── VENTAJAS: photo-strip ───────────────────────────────── */
/* Override original .photo-strip grid — templates use inner wrapper */
.photo-strip { display: block; height: auto; }
.photo-strip-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  height: 280px; gap: 3px;
}
.photo-strip-img {
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.photo-strip-img::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(13,31,60,0.2); transition: background 0.3s;
}
.photo-strip-img:hover::after { background: rgba(13,31,60,0); }

/* ─── VENTAJAS: mapa-section ──────────────────────────────── */
.mapa-section { padding: 90px 5%; background: var(--off-white); }
.mapa-section .mapa-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.mapa-text p { font-size: 0.95rem; color: var(--gray); font-weight: 300; line-height: 1.8; margin-bottom: 1rem; }

/* ─── VENTAJAS: operador-section ──────────────────────────── */
.operador-section {
  padding: 90px 5%; background: var(--navy);
  position: relative; overflow: hidden;
}
.operador-section::before {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,169,74,0.07) 0%, transparent 70%);
  border-radius: 50%;
}
.operador-section .operador-inner {
  max-width: var(--max-w); margin: 0 auto;
  text-align: center; position: relative;
}
/* Dark background — force white text */
.operador-section h2.section-title { color: var(--white); }
.operador-section .section-lead { color: rgba(255,255,255,0.62); max-width: 720px; }
.operador-badges {
  display: flex; gap: 1.5rem; justify-content: center;
  flex-wrap: wrap; margin-top: 2rem;
}
.op-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,74,0.3);
  padding: 1.4rem 2.2rem; text-align: center; min-width: 160px;
}
.op-badge span {
  display: block; font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 600; color: var(--gold); margin-bottom: 0.4rem;
}
.op-badge small {
  font-size: 0.7rem; color: rgba(255,255,255,0.38);
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* ─── VENTAJAS: servicios-section ─────────────────────────── */
.servicios-section { padding: 90px 5%; background: var(--off-white); }
.servicios-section .servicios-header {
  max-width: var(--max-w); margin: 0 auto 4rem; text-align: center;
}
.servicios-section .servicios-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.servicio-item {
  background: var(--white); padding: 2.5rem 2rem;
  border-top: 3px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s, border-top-color 0.3s;
}
.servicio-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(13,31,60,0.1);
  border-top-color: var(--gold);
}
.servicio-item h4 {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 600; color: var(--navy); margin-bottom: 0.7rem;
}
.servicio-item p { font-size: 0.88rem; color: var(--gray); line-height: 1.7; font-weight: 300; }

/* ─── VENTAJAS: entidades-section ─────────────────────────── */
.entidades-section {
  padding: 70px 5%; background: var(--white);
  border-top: 1px solid var(--gray-light);
}
.entidades-inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.entidades-chips {
  display: flex; gap: 0.8rem 1rem; flex-wrap: wrap;
  justify-content: center; margin-top: 2rem;
}

/* ─── BENEFICIOS: highlight-box ───────────────────────────── */
.highlight-box-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: rgba(255,255,255,0.08); margin-top: 1.5rem;
}
.highlight-stat {
  background: rgba(255,255,255,0.03); padding: 1.6rem 1.2rem; text-align: center;
  transition: background 0.3s;
}
.highlight-stat:hover { background: rgba(200,169,74,0.07); }
.hs-num {
  font-family: var(--font-display); font-size: 2.6rem;
  font-weight: 700; color: var(--gold); display: block;
  line-height: 1; margin-bottom: 0.35rem;
}
.hs-label {
  font-size: 0.68rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: rgba(255,255,255,0.45); display: block;
}

/* ─── BENEFICIOS: incentivos tabs ─────────────────────────── */
.incentivos-section { padding: 90px 5%; background: var(--off-white); }
.incentivos-header { max-width: var(--max-w); margin: 0 auto 3.5rem; text-align: center; }
.incentivos-tabs-wrapper { max-width: var(--max-w); margin: 0 auto; }
.tab-buttons {
  display: flex; border-bottom: 2px solid var(--gray-light); flex-wrap: wrap;
}
.tab-btn {
  background: none; border: none; font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray);
  padding: 1rem 2rem; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--navy); border-bottom-color: var(--gold); font-weight: 600; }
.tab-panels {
  background: var(--white); padding: 3rem 3rem 3rem;
  border: 1.5px solid var(--gray-light); border-top: none;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel-icon {
  width: 56px; height: 56px; background: rgba(13,31,60,0.05);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.5rem;
}
.tab-panel-icon svg { width: 26px; height: 26px; stroke: var(--navy); fill: none; stroke-width: 1.5; }
.tab-panel h3 {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 600; color: var(--navy); margin-bottom: 0.9rem;
}
.tab-panel > p {
  font-size: 0.95rem; color: var(--gray); font-weight: 300;
  line-height: 1.8; margin-bottom: 1.5rem; max-width: 680px;
}
.benefit-list { list-style: none; display: flex; flex-direction: column; }
.benefit-list li {
  display: flex; align-items: flex-start; gap: 0.9rem;
  font-size: 0.9rem; color: var(--text-dark); font-weight: 300;
  line-height: 1.6; padding: 0.7rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  flex-shrink: 0; margin-top: 8px;
}
.benefit-list.light li { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.07); }

/* ─── BENEFICIOS: comparison table ───────────────────────── */
.comparison-section {
  padding: 90px 5%; background: var(--navy);
  position: relative; overflow: hidden;
}
/* Dark background — headings and divider need to be visible */
.comparison-section h2.section-title { color: var(--white); }
.comparison-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,169,74,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.comparison-inner { max-width: var(--max-w); margin: 0 auto; position: relative; }
.comparison-table-wrapper { overflow-x: auto; margin-top: 3rem; }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.comparison-table th {
  padding: 1.2rem 1.5rem; text-align: left;
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 600;
}
.comparison-table th:first-child { background: transparent; color: rgba(255,255,255,0.5); }
.comparison-table th.col-zflc { background: rgba(200,169,74,0.18); color: var(--gold); }
.comparison-table th.col-normal { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.4); }
.comparison-table td {
  padding: 1.1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.72); font-weight: 300;
  background: rgba(255,255,255,0.02);
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: rgba(255,255,255,0.04); }
.comparison-table td.col-zflc { text-align: center; }
.comparison-table td.col-normal { color: rgba(255,255,255,0.28); font-style: italic; text-align: center; }
.benefit-badge {
  display: inline-block; background: rgba(200,169,74,0.15);
  color: var(--gold); font-size: 0.78rem; font-weight: 600;
  padding: 4px 14px; letter-spacing: 0.04em;
}

/* ─── BENEFICIOS: dollar section ──────────────────────────── */
.dollar-section {
  padding: 100px 5%; position: relative; overflow: hidden;
  background-image: url('images/Planta_LasCabras_0083.jpg');
  background-size: cover; background-position: center; background-attachment: fixed;
}
.dollar-section::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.96) 0%, rgba(13,31,60,0.9) 100%);
}
.dollar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 6rem; align-items: center; position: relative; z-index: 1;
}
.dollar-text p {
  font-size: 0.95rem; color: rgba(255,255,255,0.62);
  font-weight: 300; line-height: 1.8; margin-bottom: 1.5rem;
}
.dollar-icon-block { text-align: center; }
.dollar-icon-large {
  font-family: var(--font-display); font-size: 7rem; font-weight: 700;
  color: rgba(200,169,74,0.22); line-height: 1;
  width: 200px; height: 200px; border-radius: 50%;
  border: 3px solid rgba(200,169,74,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}

/* ─── BENEFICIOS: cta section ─────────────────────────────── */
.benef-cta { padding: 90px 5%; background: var(--off-white); text-align: center; }
.benef-cta-inner { max-width: 720px; margin: 0 auto; }
.benef-cta-inner h2 {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600; color: var(--navy); margin-bottom: 1rem; line-height: 1.1;
}
.benef-cta-inner p {
  font-size: 0.95rem; color: var(--gray); font-weight: 300;
  margin: 0 auto 2.5rem; line-height: 1.75;
}
.cta-buttons { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.btn-outline-light {
  display: inline-block; border: 1.5px solid rgba(13,31,60,0.35);
  color: var(--navy); text-decoration: none; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 13px 30px; transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,169,74,0.06); }

/* ─── CONTACT PAGE: layout & info block ───────────────────── */
.contacto-page-left .section-title { color: var(--white); }
.contacto-page-left .section-lead { color: rgba(255,255,255,0.55); max-width: none; }
.contact-info-block { display: flex; flex-direction: column; gap: 1.2rem; margin: 2rem 0 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.cii-icon {
  width: 42px; height: 42px; background: rgba(255,255,255,0.05);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.cii-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.cii-text { display: flex; flex-direction: column; gap: 0.2rem; }
.cii-text strong {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.38);
}
.cii-text span { font-size: 0.88rem; color: var(--white); font-weight: 300; }
.cii-text a { font-size: 0.88rem; color: var(--white); font-weight: 300; text-decoration: none; }
.cii-text a:hover { color: var(--gold); }
.whatsapp-box {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(37,211,102,0.08); border: 1px solid rgba(37,211,102,0.22);
  padding: 1.2rem 1.5rem; margin-top: 0.5rem;
}
.whatsapp-box svg { width: 24px; height: 24px; flex-shrink: 0; color: #25D366; }
.whatsapp-box strong {
  display: block; font-size: 0.66rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 0.2rem;
}
.whatsapp-box a { color: #25D366; text-decoration: none; font-size: 0.95rem; font-weight: 500; }
.whatsapp-box a:hover { color: #1ebe5d; }

/* contact form on white background (contact page) */
.contacto-form-full { display: flex; flex-direction: column; gap: 1.2rem; }
.contacto-form-full .form-group label { color: rgba(255,255,255,0.45); }
.form-disclaimer {
  font-size: 0.74rem; color: rgba(255,255,255,0.28);
  margin-top: 0.4rem; line-height: 1.6;
}
.required { color: var(--gold); }

/* ─── RESPONSIVE additions ────────────────────────────────── */
@media (max-width: 900px) {
  .photo-strip-inner { grid-template-columns: repeat(2, 1fr); height: auto; }
  .photo-strip-img { height: 200px; }
  .mapa-section .mapa-inner { grid-template-columns: 1fr; gap: 3rem; }
  .dollar-section { background-attachment: scroll; }
  .dollar-inner { grid-template-columns: 1fr; gap: 3rem; }
  .dollar-icon-large { font-size: 5rem; width: 150px; height: 150px; }
  .tab-btn { padding: 0.8rem 1.2rem; font-size: 0.74rem; }
  .tab-panels { padding: 2rem; }
  .servicios-section .servicios-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-box-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .photo-strip-inner { grid-template-columns: 1fr; }
  .photo-strip-img { height: 180px; }
  .tab-buttons { flex-direction: column; border-bottom: none; border-left: 2px solid var(--gray-light); }
  .tab-btn { border-bottom: none; border-left: 2px solid transparent; margin-bottom: 0; margin-left: -2px; text-align: left; }
  .tab-btn.active { border-left-color: var(--gold); border-bottom-color: transparent; }
  .servicios-section .servicios-grid { grid-template-columns: 1fr; }
  .highlight-box-inner { grid-template-columns: 1fr; }
  .operador-badges { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
