:root {
  --bg: #f5f9ff;
  --panel: #ffffff;
  --text: #0f2135;
  --muted: #4e6078;
  --accent: #1f5d99;
  --accent-strong: #0f4f8f;
  --highlight: #c8a24a;
  --blue: #4f87bf;
  --green: #2f8f5a;
  --gold: #d3ad55;
  --white-soft: rgba(255, 255, 255, 0.98);
  --gray-soft: #d6dde7;
  --border: rgba(24, 51, 82, 0.16);
  --shadow: 0 18px 45px rgba(11, 28, 53, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(73, 127, 191, 0.22), transparent 32%),
    radial-gradient(circle at bottom right, rgba(211, 173, 85, 0.2), transparent 28%),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.2;
  pointer-events: none;
  z-index: -1;
}

body::before {
  top: -80px;
  right: -60px;
  background: #5e92c9;
}

body::after {
  left: -100px;
  bottom: -40px;
  background: #d4b15d;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 24px 60px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 18px;
  z-index: 20;
  box-shadow: 0 10px 30px rgba(16, 39, 66, 0.14);
  animation: fadeDown 0.8s ease both;
}

.brand-pair {
  display: flex;
  gap: 16px;
  align-items: center;
}

.home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  border-radius: 0 !important;
  text-decoration: none;
  color: inherit;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.home-link:hover,
.home-link:focus-visible {
  transform: none;
  opacity: 1;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.home-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: inherit;
  line-height: 1;
}

.home-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  border-radius: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  mix-blend-mode: normal;
}

.brand {
  display: flex;
  overflow: hidden;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  text-decoration: none;
  color: var(--text);
  border: 1px solid rgba(35, 69, 108, 0.18);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.brand:hover,
.brand:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
}

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

.brand-copy strong {
  font-size: 0.95rem;
}

.brand-copy small {
  color: #4f6581;
  font-size: 0.84rem;
}

.brand-logo {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(50, 85, 127, 0.2);
  padding: 10px;
}

.brand-ra {
  border-color: rgba(40, 92, 156, 0.35);
  background: linear-gradient(135deg, #f6f9ff, #e6effa);
}

.brand-ra .brand-copy strong {
  color: #123c6e;
}

.brand-ra .brand-copy small {
  color: #4c6485;
}

.brand-lls {
  border-color: rgba(62, 140, 84, 0.34);
  background: linear-gradient(135deg, #edf8f0, #f8f2e2);
}

.brand-lls .brand-copy strong {
  color: #1f6e45;
}

.brand-lls .brand-copy small {
  color: #8c7237;
}

.vertiente-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  text-decoration: none;
  color: var(--text);
  background: linear-gradient(145deg, #ffffff, #f7fbff);
  border: 1px solid rgba(29, 66, 111, 0.18);
  border-radius: 32px;
  min-height: 260px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  animation: fadeUp 0.75s ease both;
  box-shadow: 0 16px 35px rgba(17, 45, 78, 0.12);
}

.vertiente-card:hover,
.vertiente-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  border-color: rgba(255, 255, 255, 0.22);
}

.vertiente-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.vertiente-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  padding: 12px;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.vertiente-card:hover .vertiente-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 16px 32px rgba(255, 213, 115, 0.3));
}

.vertiente-badge {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(202, 167, 103, 0.16);
  color: var(--highlight);
  font-weight: 700;
  border: 1px solid rgba(202, 167, 103, 0.22);
  font-size: 1rem;
}

.vertiente-card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vertiente-card-body h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.vertical-subtitle {
  margin: 0;
  font-size: 0.9rem;
  color: #5e6f86;
  line-height: 1.4;
}

.vertiente-card-body p {
  margin: 0;
  color: #3f536f;
  line-height: 1.75;
  font-size: 0.96rem;
  padding-right: 14px;
}

.card-arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 212, 108, 0.18);
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
  border: 1px solid rgba(255, 212, 108, 0.24);
  color: #f5e7b3;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}

.vertiente-card:hover .card-arrow {
  transform: translateX(4px);
  background: rgba(255, 212, 108, 0.28);
}

.premium-card {
  background: linear-gradient(145deg, #ffffff, #f2f6fc);
}

.lls-card {
  background: linear-gradient(145deg, #eff9f1, #e2f2e7);
  border-color: rgba(176, 143, 63, 0.38);
}

.lls-card .vertiente-logo {
  background: rgba(247, 236, 196, 0.14);
}

.lls-card .vertiente-badge,
.lls-card .card-arrow {
  background: rgba(211, 173, 85, 0.2);
  border-color: rgba(196, 158, 68, 0.32);
  color: #775f22;
}

.raa-card {
  background: linear-gradient(145deg, #edf4ff, #dbe9fb);
  border-color: rgba(67, 103, 153, 0.34);
}

.raa-card .vertiente-logo {
  background: rgba(238, 244, 255, 0.16);
}

.raa-card .vertiente-badge,
.raa-card .card-arrow {
  background: rgba(96, 139, 199, 0.18);
  border-color: rgba(75, 116, 173, 0.3);
  color: #123f73;
}

.proking-card {
  background: linear-gradient(145deg, #e8f4ff, #ffffff);
  border-color: rgba(93, 147, 214, 0.4);
}
.topnav {
  display: flex;
  gap: 20px;
}

.topnav a {
  color: #1f3958;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s ease, transform 0.25s ease;
}

.topnav a:hover {
  color: var(--highlight);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: 56px 0 36px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--highlight);
  margin-bottom: 10px;
}

.hero h1,
.section h2,
.cta-copy h2,
.split-copy h2,
.page-intro h1 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.04;
}

.hero h1 {
  font-size: clamp(2.1rem, 3.2vw, 3.6rem);
  margin: 0 0 16px;
  max-width: 720px;
  animation: fadeUp 0.8s ease both;
}

.hero-content p {
  color: #425a77;
  font-size: 1.02rem;
  line-height: 1.8;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  color: white;
  box-shadow: 0 10px 24px rgba(10, 29, 53, 0.35);
}

.btn.secondary {
  color: #1d3f67;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(34, 78, 129, 0.25);
}

.hero-panel {
  position: relative;
  animation: fadeUp 0.95s ease both;
}

.hero-slider {
  position: relative;
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.12);
}

.hero-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 29, 56, 0.24) 100%);
  pointer-events: none;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transform: scale(1.04);
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-1 {
  background-image: linear-gradient(120deg, rgba(11, 44, 83, 0.55), rgba(11, 44, 83, 0.1)), url("https://images.unsplash.com/photo-1589829545856-d10d557cf95f?auto=format&fit=crop&w=1200&q=80");
}

.slide-2 {
  background-image: linear-gradient(120deg, rgba(16, 73, 57, 0.5), rgba(16, 73, 57, 0.1)), url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1200&q=80");
}

.slide-3 {
  background-image: linear-gradient(120deg, rgba(130, 97, 34, 0.45), rgba(130, 97, 34, 0.1)), url("https://images.unsplash.com/photo-1455390582262-044cdead277a?auto=format&fit=crop&w=1200&q=80");
}

.hero-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 79, 125, 0.2);
  box-shadow: 0 10px 28px rgba(16, 40, 69, 0.18);
  backdrop-filter: blur(10px);
}

.hero-card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  color: #1c4e84;
}

.hero-card p {
  margin: 0;
  color: #4a5f7a;
  line-height: 1.6;
}

.section {
  padding: 44px 0 8px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  margin: 0;
}

.vertientes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}


.split-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.split-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.feature-list {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.split-card {
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(135deg, #f3f8ff, #ffffff);
  color: #163a66;
  min-height: 280px;
  box-shadow: 0 16px 34px rgba(25, 56, 96, 0.12);
  border: 1px solid rgba(84, 122, 173, 0.22);
  animation: floatCard 7s ease-in-out infinite;
}

.mini-banner {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(92, 129, 177, 0.22);
}

.mini-banner h3 {
  font-size: 1.3rem;
  margin: 0 0 10px;
  color: #184374;
}

.mini-banner p {
  color: #405e82;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-box {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15, 41, 72, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-4px);
  border-color: rgba(202, 167, 103, 0.35);
}

.stat-box strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--highlight);
}

.stat-box span {
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.story-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(13, 36, 63, 0.12);
}

.story-image {
  min-height: 220px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(202, 167, 103, 0.25), rgba(16, 43, 70, 0.9));
  position: relative;
  overflow: hidden;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.story-image::before,
.story-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.25), transparent 35%);
}

.story-image::after {
  inset: auto 20px 20px auto;
  width: 70px;
  height: 70px;
  border: 2px solid rgba(255,255,255,0.28);
  border-radius: 50%;
}

.story-content h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.story-content p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.services-section {
  padding-top: 18px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(145deg, #ffffff, #f4f8ff);
  border: 1px solid rgba(35, 73, 119, 0.16);
  box-shadow: 0 10px 24px rgba(14, 37, 65, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(202, 167, 103, 0.35);
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.cta-section {
  display: block;
  padding-bottom: 0;
}

.cta-copy {
  width: 100%;
}

.full-width-contact {
  max-width: 100%;
}

.cta-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.contact-details {
  margin: 18px 0 20px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 640px;
}

.contact-details a,
.contact-details p {
  color: var(--text);
  text-decoration: none;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.map-frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
  width: 100%;
  min-height: 420px;
}

.map-frame iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.mini-map-frame {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 12px 26px rgba(0, 0, 0, 0.2);
  width: 100%;
  min-height: 240px !important;
  max-height: 240px !important;
  height: 240px !important;
  background: rgba(255, 255, 255, 0.03);
}

.mini-map-frame iframe {
  width: 100% !important;
  min-height: 240px !important;
  max-height: 240px !important;
  height: 240px !important;
  border: 0;
  display: block;
  filter: grayscale(0.05) contrast(1.05) saturate(0.9);
}

.locations-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.location-vertiente {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: none;
  margin: 0;
}

.location-title {
  display: inline-block;
  margin: 0 0 10px 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(202, 167, 103, 0.16), rgba(16, 43, 70, 0.92));
  border: 1px solid rgba(202, 167, 103, 0.22);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 2;
}

.location-map-shell {
  width: 100%;
  height: 240px !important;
  min-height: 240px !important;
  max-height: 240px !important;
  aspect-ratio: 16 / 9 !important;
  border-radius: 24px;
  border-color: rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.location-map-shell iframe {
  width: 100% !important;
  height: 240px !important;
  min-height: 240px !important;
  max-height: 240px !important;
  display: block;
}

.contact-form {
  padding: 24px;
  border-radius: 24px;
  background: rgba(10, 14, 20, 0.95);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  font: inherit;
  color: var(--text);
  background: rgba(255,255,255,0.03);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(202, 167, 103, 0.2);
  border-color: rgba(202, 167, 103, 0.4);
}

.page-intro {
  padding: 36px 0 24px;
  animation: fadeUp 0.75s ease both;
}

.page-intro h1 {
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  margin: 0 0 10px;
}

.page-intro p {
  margin: 0;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.8;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  padding-top: 10px;
}

.content-card,
.info-card {
  background: linear-gradient(145deg, #ffffff, #f4f8ff);
  border-radius: 20px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(34, 71, 114, 0.16);
  box-shadow: 0 10px 24px rgba(14, 38, 68, 0.1);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.content-card h3,
.info-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.service-kicker {
  margin: 0 0 7px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ad842e;
}

.service-feature-card {
  background: linear-gradient(145deg, #edf4ff, #ffffff);
  border-color: rgba(200, 162, 74, 0.34);
  box-shadow: 0 12px 28px rgba(22, 52, 88, 0.12);
}

.blue-accent-card {
  background: linear-gradient(145deg, #e8f2ff, #f8fbff);
  border-color: rgba(86, 130, 190, 0.36);
  box-shadow: 0 12px 28px rgba(22, 52, 88, 0.12);
}

.dark-card {
  background: linear-gradient(145deg, #ecf7ef, #fdf7e8);
  border-color: rgba(63, 145, 88, 0.3);
  box-shadow: 0 8px 20px rgba(28, 85, 52, 0.12);
}

.services-structured {
  gap: 16px;
}

.services-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding-top: 10px;
}

.content-card p,
.info-card p,
.info-card li {
  color: var(--muted);
  line-height: 1.8;
}

.info-card ul {
  padding-left: 18px;
}

.site-footer {
  margin-top: 48px;
  padding: 22px 0 6px;
  border-top: 1px solid rgba(27, 62, 103, 0.2);
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 45, 0.45);
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 40;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  max-width: 480px;
  width: 100%;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  border: 1px solid rgba(35, 72, 114, 0.22);
  transform: translateY(12px);
  transition: transform 0.25s ease;
}

.modal.is-open .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 1.45rem;
  cursor: pointer;
  color: var(--muted);
}

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

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(30px, 24px, 0);
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-6px);
  }
}

.lls-page {
  color: #f5f1e6;
  background:
    radial-gradient(circle at 12% 10%, rgba(190, 152, 63, 0.1), transparent 34%),
    radial-gradient(circle at 86% 14%, rgba(43, 112, 72, 0.18), transparent 38%),
    radial-gradient(circle at 24% 88%, rgba(32, 88, 58, 0.16), transparent 40%),
    linear-gradient(155deg, #0a2f1b 0%, #144a2d 45%, #1f6540 100%);
}

.lls-page::before {
  background: #1f6a45;
  opacity: 0.26;
}

.lls-page::after {
  background: #c59b43;
  opacity: 0.24;
}

.lls-page .topbar {
  background: rgba(9, 35, 22, 0.78);
  border: 1px solid rgba(210, 171, 80, 0.34);
  box-shadow: 0 14px 36px rgba(3, 17, 10, 0.42);
}

.lls-page .brand.brand-lls {
  background: linear-gradient(135deg, rgba(23, 79, 51, 0.95), rgba(198, 157, 68, 0.24));
  border-color: rgba(210, 171, 80, 0.42);
}

.lls-page .brand.brand-lls .brand-copy strong {
  color: #f4e3bc;
}

.lls-page .brand.brand-lls .brand-copy small {
  color: #e3cf98;
}

.lls-page .brand-logo {
  background: rgba(12, 48, 30, 0.82);
  border: 1px solid rgba(220, 183, 95, 0.42);
}

.lls-page .topnav a {
  color: #ead5a1;
}

.lls-page .topnav a:hover {
  color: #f7e7bf;
}

.lls-page .home-link {
  color: #e8d7aa;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

.lls-page .home-icon img {
  width: 32px;
  height: 32px;
  filter: sepia(1) saturate(3.2) hue-rotate(352deg) brightness(1.08) contrast(1.05);
}

.lls-page .home-icon {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.lls-page .eyebrow,
.lls-page .service-kicker {
  color: #d7b15c;
}

.lls-page .page-intro h1,
.lls-page h3 {
  color: #f6ebce;
}

.lls-page .page-intro p,
.lls-page .content-card p,
.lls-page .location-title {
  color: #e6dcc2;
}

.lls-page .content-card,
.lls-page .info-card,
.lls-page .dark-card,
.lls-page .service-feature-card,
.lls-page .blue-accent-card {
  background: linear-gradient(145deg, rgba(11, 48, 30, 0.9), rgba(21, 74, 47, 0.88));
  border: 1px solid rgba(211, 174, 86, 0.34);
  box-shadow: 0 14px 30px rgba(2, 15, 9, 0.35);
}

.lls-page .content-card:hover,
.lls-page .dark-card:hover,
.lls-page .service-feature-card:hover {
  border-color: rgba(230, 194, 108, 0.48);
  box-shadow: 0 18px 34px rgba(1, 12, 8, 0.42);
}

.lls-page .location-title {
  background: linear-gradient(135deg, rgba(210, 171, 80, 0.26), rgba(22, 73, 47, 0.92));
  border: 1px solid rgba(217, 181, 91, 0.38);
}

.lls-page .mini-map-frame {
  border: 1px solid rgba(212, 175, 88, 0.32);
  box-shadow: inset 0 1px 0 rgba(243, 222, 170, 0.08), 0 12px 26px rgba(0, 0, 0, 0.3);
  background: rgba(15, 52, 33, 0.72);
}

.raa-page {
  color: #1c324f;
  background:
    radial-gradient(circle at 12% 8%, rgba(139, 169, 209, 0.18), transparent 36%),
    radial-gradient(circle at 84% 16%, rgba(215, 224, 236, 0.3), transparent 38%),
    radial-gradient(circle at 24% 90%, rgba(110, 141, 184, 0.16), transparent 38%),
    linear-gradient(150deg, #f5f9ff 0%, #ebf2fc 46%, #e2ecf9 100%);
}

.raa-page::before {
  background: #7da0ce;
  opacity: 0.24;
}

.raa-page::after {
  background: #dce6f5;
  opacity: 0.28;
}

.raa-page .topbar {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(85, 119, 166, 0.3);
  box-shadow: 0 14px 36px rgba(30, 63, 107, 0.16);
}

.raa-page .brand.brand-ra {
  background: linear-gradient(135deg, rgba(234, 242, 252, 0.96), rgba(173, 194, 223, 0.34));
  border-color: rgba(88, 123, 173, 0.38);
}

.raa-page .brand.brand-ra .brand-copy strong {
  color: #123f74;
}

.raa-page .brand.brand-ra .brand-copy small {
  color: #4c678a;
}

.raa-page .brand-logo {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(94, 129, 179, 0.32);
}

.raa-page .topnav a {
  color: #1f426f;
}

.raa-page .topnav a:hover {
  color: #2f5f99;
}

.raa-page .home-link {
  color: #1e4677;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

.raa-page .home-icon {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}


.raa-page .eyebrow,
.raa-page .service-kicker {
  color: #35639d;
}

.raa-page .page-intro h1,
.raa-page h3 {
  color: #163a66;
}

.raa-page .page-intro p,
.raa-page .content-card p,
.raa-page .info-card p,
.raa-page .info-card li {
  color: #445f81;
}

.raa-page .content-card,
.raa-page .info-card,
.raa-page .dark-card,
.raa-page .service-feature-card,
.raa-page .blue-accent-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(228, 237, 249, 0.94));
  border: 1px solid rgba(106, 138, 182, 0.3);
  box-shadow: 0 14px 30px rgba(33, 66, 110, 0.12);
}

.raa-page .content-card:hover,
.raa-page .dark-card:hover,
.raa-page .service-feature-card:hover {
  border-color: rgba(83, 121, 171, 0.46);
  box-shadow: 0 18px 34px rgba(29, 62, 108, 0.18);
}

@media (max-width: 1024px) {
  .vertientes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .split-section,
  .cta-section,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }
}

.fundacion-page {
  color: #1e3556;
  background:
    radial-gradient(circle at 14% 9%, rgba(150, 179, 219, 0.16), transparent 38%),
    radial-gradient(circle at 86% 12%, rgba(217, 228, 242, 0.26), transparent 40%),
    linear-gradient(155deg, #f9fbff 0%, #f1f6fe 48%, #e9f1fd 100%);
}

.fundacion-page::before {
  background: #7d9fcb;
  opacity: 0.22;
}

.fundacion-page::after {
  background: #d7e3f6;
  opacity: 0.25;
}

.fundacion-page .topbar {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(97, 129, 173, 0.28);
  box-shadow: 0 14px 34px rgba(36, 68, 109, 0.14);
}

.fundacion-page .content-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(231, 241, 255, 0.94));
  border: 1px solid rgba(104, 136, 182, 0.24);
}

.raa-page::before,
.lls-page::before,
.fundacion-page::before {
  inset: 0;
  width: 100vw;
  height: 100vh;
  margin: 0 auto;
  border-radius: 0;
  filter: none;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.3;
}

.raa-page::before {
  background-image: url("./assets/LogoRAA.png");
}

.lls-page::before {
  background-image: url("./assets/LogoLLS.png");
}

.fundacion-page::before {
  background-image: url("./assets/LogoFundacion.jpeg");
}

.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px 10px;
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  background: rgba(19, 109, 64, 0.2);
  border: 1px solid rgba(44, 171, 98, 0.35);
  color: #d9f0e1;
  width: fit-content;
}

.wa-link:hover {
  transform: translateY(-1px);
  background: rgba(23, 131, 77, 0.3);
}

.wa-icon {
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 760px) {
  .page-shell {
    padding: 16px 16px 40px;
  }

  .topbar {
    border-radius: 24px;
    padding: 14px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .topnav {
    gap: 12px;
    flex-wrap: wrap;
  }

  .brand-pair {
    flex-wrap: wrap;
  }

  .hero,
  .stats-section {
    grid-template-columns: 1fr;
  }

  .hero-slider {
    min-height: 360px;
  }

  .vertientes-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    grid-template-columns: 1fr;
  }
}
