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

:root {
  --primary: #1479b8;
  --primary-dark: #075b94;
  --primary-light: #e4f4fb;
  --secondary: #a7cf3a;
  --logo-blue-dark: #1479b8;
  --logo-blue-light: #22aee4;
  --logo-green: #a7cf3a;
  --secondary-soft: #fff1d6;
  --ink: #12282b;
  --text: #4f6264;
  --muted: #758789;
  --surface: #ffffff;
  --surface-soft: #f4f8f7;
  --border: #dce7e5;
  --shadow: 0 24px 70px rgba(13, 57, 62, .12);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 12px 16px;
  color: #fff;
  background: var(--primary-dark);
  border-radius: 10px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: 140px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(220, 231, 229, .9);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 30px rgba(7, 63, 70, .09);
}

.site-header .container {
  width: min(calc(100% - 34px), 1450px);
}

.contact-bar {
  color: #fff;
  background: linear-gradient(90deg, var(--logo-blue-dark), var(--logo-blue-light));
}

.contact-bar-inner {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.header-contact,
.header-socials {
  display: flex;
  align-items: center;
}

.header-contact {
  flex-wrap: wrap;
  gap: 5px 22px;
}

.header-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .01em;
}

.header-contact svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-socials {
  gap: 10px;
}

.social-button {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  transition: transform .2s ease, background .2s ease;
}

.social-button:hover,
.social-button:focus-visible {
  color: var(--primary-dark);
  background: var(--logo-green);
  outline: none;
  transform: translateY(-2px);
}

.social-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-button .social-fill {
  fill: currentColor;
  stroke: none;
}

.nav-wrap {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  flex: 0 0 84px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  min-width: 0;
  display: grid;
  line-height: 1.05;
}

.brand-name {
  display: block;
  max-width: none;
  white-space: nowrap;
  font-family: "Manrope", sans-serif;
  font-size: clamp(.78rem, 1.03vw, 1rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.015em;
}

.logo-blue-dark { color: var(--logo-blue-dark); }
.logo-blue-light { color: var(--logo-blue-light); }
.logo-green { color: var(--logo-green); }

.brand-slogan {
  margin-top: 5px;
  font-family: "Manrope", sans-serif;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .025em;
}

.brand-nit {
  margin-top: 4px;
  color: #536568;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .035em;
}

.main-nav > ul,
.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 10px;
  color: #344d50;
  background: transparent;
  border: 0;
  border-radius: 10px;
  font-size: .86rem;
  font-weight: 600;
  transition: color .2s ease, background .2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
  color: var(--primary);
  background: var(--surface-soft);
  outline: none;
}

.main-nav .nav-cta {
  margin-left: 5px;
  padding-inline: 18px;
  color: #fff;
  background: var(--primary);
}

.main-nav .nav-cta:hover,
.main-nav .nav-cta:focus-visible {
  color: #fff;
  background: var(--primary-dark);
}

.dropdown {
  position: relative;
}

.dropdown-toggle svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform .2s ease;
}

.dropdown.open .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 220px;
  padding: 9px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(16, 48, 51, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  width: 100%;
  padding: 10px 12px;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  background: var(--surface-soft);
  border: 0;
  border-radius: 12px;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: var(--primary-dark);
  transition: transform .25s, opacity .25s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}



.institutional-slider {
  position: relative;
  padding: 178px 0 36px;
  background:
    radial-gradient(circle at 12% 15%, rgba(216, 155, 50, .10), transparent 25%),
    linear-gradient(180deg, #f7fbfb 0%, #eef7f6 100%);
}

.slider-frame {
  position: relative;
  padding: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(11,95,103,.10);
  border-radius: 34px;
  box-shadow: 0 24px 80px rgba(10, 56, 61, .12);
}

.slider-viewport {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 28px;
}

.slider-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 28px;
  padding: 46px 54px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .55s ease, visibility .55s ease, transform .55s ease;
  transform: translateX(18px);
}

.slider-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.slide-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide-backdrop::before,
.slide-backdrop::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.slide-summary {
  background: linear-gradient(135deg, rgba(7,63,70,.95), rgba(11,95,103,.90) 55%, rgba(68,188,233,.86));
}
.slide-summary::before {
  width: 380px; height: 380px; right: -80px; top: -80px;
  background: rgba(189, 232, 74, .16);
}
.slide-summary::after {
  width: 240px; height: 240px; left: 42%; bottom: -110px;
  border: 1px solid rgba(255,255,255,.20);
}

.slide-formacion {
  background: linear-gradient(135deg, rgba(10,83,155,.95), rgba(56,165,222,.88));
}
.slide-formacion::before { width: 260px; height: 260px; right: 5%; top: 8%; background: rgba(255,255,255,.12); }
.slide-formacion::after { width: 200px; height: 200px; left: 50%; bottom: -70px; background: rgba(189,232,74,.20); }

.slide-bachillerato {
  background: linear-gradient(135deg, rgba(20,117,186,.95), rgba(91,197,238,.88));
}
.slide-bachillerato::before { width: 290px; height: 290px; right: -40px; top: -30px; background: rgba(255,255,255,.14); }
.slide-bachillerato::after { width: 180px; height: 180px; left: 48%; bottom: -40px; border: 1px solid rgba(255,255,255,.26); }

.slide-asesoria {
  background: linear-gradient(135deg, rgba(6,70,92,.96), rgba(41,143,189,.90));
}
.slide-asesoria::before { width: 320px; height: 320px; right: -20px; bottom: -100px; background: rgba(189,232,74,.17); }
.slide-asesoria::after { width: 170px; height: 170px; left: 56%; top: 10%; background: rgba(255,255,255,.12); }

.slide-social {
  background: linear-gradient(135deg, rgba(8,91,99,.96), rgba(95,185,89,.88));
}
.slide-social::before { width: 280px; height: 280px; right: 4%; top: 2%; background: rgba(255,255,255,.12); }
.slide-social::after { width: 220px; height: 220px; left: 50%; bottom: -75px; background: rgba(68,188,233,.18); }

.slide-content,
.slide-visual {
  position: relative;
  z-index: 1;
}

.slide-content {
  color: #fff;
}

.slide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.88);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.slide-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: rgba(255,255,255,.85);
}

.slider-slide h2 {
  margin: 18px 0 16px;
  max-width: 640px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.05rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.slider-slide p {
  max-width: 600px;
  margin: 0;
  color: rgba(255,255,255,.92);
  font-size: 1.02rem;
  line-height: 1.7;
}

.slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.slide-tags span {
  padding: 9px 14px;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: .81rem;
  font-weight: 700;
}

.slide-visual {
  display: grid;
  place-items: center;
}

.slide-photo {
  width: min(100%, 520px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: 0 22px 48px rgba(0,0,0,.18);
}


.slide-visual-logo img {
  width: min(100%, 250px);
  padding: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,.14);
}

.visual-card-illustration {
  position: relative;
  width: min(100%, 340px);
  height: 300px;
  border-radius: 28px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 20px 44px rgba(0,0,0,.14);
  overflow: hidden;
}

.visual-card-illustration::before,
.visual-card-illustration::after,
.visual-card-illustration span {
  content: "";
  position: absolute;
  display: block;
}

.training-illustration::before {
  inset: auto 24px 34px 24px;
  height: 88px;
  border-radius: 18px;
  background: rgba(255,255,255,.20);
}
.training-illustration::after {
  left: 38px; right: 38px; top: 45px; height: 86px;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(189,232,74,.55), rgba(255,255,255,.22));
}
.training-illustration span:nth-child(1) { width: 60px; height: 60px; left: 42px; bottom: 88px; border-radius: 50%; background: #fff; box-shadow: 95px 0 0 rgba(255,255,255,.96), 190px 0 0 rgba(255,255,255,.92); }
.training-illustration span:nth-child(2) { width: 88px; height: 62px; left: 28px; bottom: 36px; border-radius: 26px 26px 16px 16px; background: rgba(255,255,255,.92); box-shadow: 92px 0 0 rgba(255,255,255,.88), 185px 0 0 rgba(255,255,255,.84); }
.training-illustration span:nth-child(3) { width: 86px; height: 8px; right: 35px; top: 74px; border-radius: 999px; background: rgba(255,255,255,.96); box-shadow: 0 24px 0 rgba(255,255,255,.70), -60px 60px 0 rgba(255,255,255,.45); }

.school-illustration::before { left: 28px; right: 28px; bottom: 28px; height: 110px; border-radius: 20px; background: rgba(255,255,255,.18); }
.school-illustration::after { left: 86px; top: 48px; width: 170px; height: 110px; border-radius: 22px; background: rgba(255,255,255,.26); }
.school-illustration span:nth-child(1) { width: 72px; height: 72px; left: 42px; top: 62px; border-radius: 50%; background: #fff; box-shadow: 172px 0 0 rgba(255,255,255,.96); }
.school-illustration span:nth-child(2) { width: 110px; height: 85px; left: 26px; bottom: 36px; border-radius: 30px 30px 18px 18px; background: rgba(255,255,255,.92); box-shadow: 168px 0 0 rgba(255,255,255,.88); }
.school-illustration span:nth-child(3) { width: 88px; height: 8px; left: 118px; top: 78px; border-radius: 999px; background: rgba(189,232,74,.92); box-shadow: 0 24px 0 rgba(255,255,255,.82), 0 48px 0 rgba(255,255,255,.60); }

.consulting-illustration::before { inset: 42px 36px auto 36px; height: 155px; border-radius: 22px; background: rgba(255,255,255,.18); }
.consulting-illustration::after { width: 120px; height: 120px; left: 34px; bottom: 32px; border-radius: 24px; background: rgba(189,232,74,.82); }
.consulting-illustration span:nth-child(1) { width: 140px; height: 12px; right: 42px; top: 70px; border-radius: 999px; background: rgba(255,255,255,.95); box-shadow: 0 26px 0 rgba(255,255,255,.78), 0 52px 0 rgba(255,255,255,.55); }
.consulting-illustration span:nth-child(2) { width: 132px; height: 78px; right: 28px; bottom: 34px; border-radius: 28px 28px 16px 16px; background: rgba(255,255,255,.90); }
.consulting-illustration span:nth-child(3) { width: 54px; height: 54px; left: 66px; bottom: 120px; border-radius: 50%; background: #fff; box-shadow: 170px 42px 0 rgba(255,255,255,.96); }

.social-illustration::before { left: 36px; right: 36px; bottom: 30px; height: 92px; border-radius: 22px; background: rgba(255,255,255,.16); }
.social-illustration::after { width: 124px; height: 124px; right: 26px; top: 36px; border-radius: 50%; background: rgba(255,255,255,.18); }
.social-illustration span:nth-child(1) { width: 64px; height: 64px; left: 44px; top: 64px; border-radius: 50%; background: #fff; box-shadow: 94px 16px 0 rgba(255,255,255,.96), 188px 6px 0 rgba(255,255,255,.90); }
.social-illustration span:nth-child(2) { width: 84px; height: 60px; left: 28px; bottom: 42px; border-radius: 28px 28px 16px 16px; background: rgba(255,255,255,.92); box-shadow: 92px 10px 0 rgba(255,255,255,.88), 184px 0 0 rgba(255,255,255,.84); }
.social-illustration span:nth-child(3) { width: 72px; height: 72px; right: 54px; bottom: 34px; border-radius: 18px; background: rgba(189,232,74,.94); }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-top: 18px;
}

.slider-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: 0 10px 22px rgba(9, 59, 63, .08);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  color: #fff;
  background: var(--primary);
  outline: none;
  transform: translateY(-2px);
}

.slider-arrow svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  background: rgba(11,95,103,.22);
  border: 0;
  border-radius: 50%;
  transition: transform .2s ease, background .2s ease;
}

.slider-dot.is-active {
  width: 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--logo-blue-dark), var(--logo-green));
}

.slider-dot:hover,
.slider-dot:focus-visible {
  outline: none;
  transform: scale(1.06);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 105px 0 80px;
  background:
    radial-gradient(circle at 10% 10%, rgba(216, 155, 50, .13), transparent 27%),
    linear-gradient(135deg, #f8fbfa 0%, #edf7f5 52%, #fefaf1 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to top, #fff, transparent);
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  pointer-events: none;
}

.hero-shape-one {
  width: 460px;
  height: 460px;
  right: -180px;
  top: 90px;
  border: 1px solid rgba(11, 95, 103, .12);
}

.hero-shape-two {
  width: 260px;
  height: 260px;
  left: -100px;
  bottom: 30px;
  background: rgba(216, 155, 50, .07);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

.eyebrow.light {
  color: #d6f4f0;
}

.hero h1,
.section-heading h2,
.about-copy h2,
.consulting-copy h2,
.contact-copy h2 {
  margin: 18px 0 20px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
}

.hero h1 {
  max-width: 710px;
  font-size: clamp(2.8rem, 5vw, 5.15rem);
}

.hero h1 span {
  color: var(--primary);
}

.hero-copy > p {
  max-width: 640px;
  margin: 0;
  color: var(--text);
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.button {
  min-height: 51px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 14px 30px rgba(11, 95, 103, .22);
}

.button-primary:hover {
  background: var(--primary-dark);
}

.button-secondary {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, .76);
  border-color: var(--border);
}

.button-light {
  color: var(--primary-dark);
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

.button.full {
  width: 100%;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 42px;
  color: var(--muted);
  font-size: .86rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.hero-trust b {
  color: var(--primary-dark);
  font-size: 1.13rem;
}

.hero-visual {
  position: relative;
  min-height: 530px;
  display: grid;
  place-items: center;
}

.main-card {
  position: relative;
  width: min(100%, 455px);
  padding: 38px;
  color: #fff;
  background:
    linear-gradient(155deg, rgba(255,255,255,.05), transparent 40%),
    linear-gradient(145deg, var(--primary), var(--primary-dark));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 38px 38px 38px 9px;
  box-shadow: 0 36px 80px rgba(7, 63, 70, .28);
}

.main-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -22px;
  top: -22px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
}

.visual-label {
  color: #bfe8e4;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.main-card h2 {
  max-width: 350px;
  margin: 16px 0 28px;
  font-family: "Manrope", sans-serif;
  font-size: 1.65rem;
  line-height: 1.25;
}

.impact-list {
  display: grid;
  gap: 12px;
}

.impact-list > div {
  display: grid;
  grid-template-columns: 43px 1fr;
  align-items: center;
  gap: 13px;
  padding: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 15px;
}

.impact-icon {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  background: #fff;
  border-radius: 12px;
  font-weight: 800;
}

.impact-list p {
  display: grid;
  margin: 0;
  line-height: 1.35;
}

.impact-list small {
  margin-top: 3px;
  color: #cfe6e4;
}


.section {
  padding: 105px 0;
}

.section-heading {
  margin-bottom: 50px;
}

.section-heading.centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.about-copy h2,
.consulting-copy h2,
.contact-copy h2 {
  font-size: clamp(2.1rem, 3.8vw, 3.45rem);
}

.section-heading p,
.about-copy p,
.consulting-copy p,
.contact-copy p {
  color: var(--text);
  font-size: 1.03rem;
}

.section-heading.centered p {
  max-width: 680px;
  margin-inline: auto;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1fr .7fr;
  align-items: end;
  gap: 80px;
}

.section-heading.split h2 {
  margin-bottom: 0;
}

.section-heading.split > p {
  margin: 0 0 8px;
}

.cards-grid {
  display: grid;
  gap: 22px;
}

.cards-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  min-height: 355px;
  padding: 33px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(16, 65, 69, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #b9d6d2;
  box-shadow: var(--shadow);
}

.card-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 18px;
}

.card-icon svg {
  width: 33px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-number {
  position: absolute;
  right: 27px;
  top: 25px;
  color: #d9e6e4;
  font-family: "Manrope", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
}

.service-card h3,
.formation-card h3,
.consulting-item h3,
.social-card h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.25;
}

.service-card h3 {
  margin: 30px 0 12px;
  font-size: 1.46rem;
}

.service-card p {
  margin: 0 0 24px;
  color: var(--text);
}

.service-card a,
.formation-card > a {
  color: var(--primary);
  font-weight: 800;
}

.service-card a span {
  display: inline-block;
  margin-left: 5px;
  transition: transform .2s;
}

.service-card a:hover span {
  transform: translateX(4px);
}

.about {
  background: var(--surface-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 85px;
}

.about-visual {
  position: relative;
  min-height: 520px;
}

.photo-placeholder {
  min-height: 510px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 75% 25%, rgba(216,155,50,.35), transparent 28%),
    linear-gradient(145deg, rgba(7,63,70,.7), rgba(7,63,70,.96)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.04) 0 2px, transparent 2px 18px);
  border-radius: 32px 32px 32px 8px;
  box-shadow: var(--shadow);
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  top: 35px;
  left: 48px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
}

.photo-placeholder span {
  color: #bfe8e4;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.photo-placeholder strong {
  max-width: 380px;
  margin-top: 14px;
  font-family: "Manrope", sans-serif;
  font-size: 2.05rem;
  line-height: 1.22;
}

.experience-badge {
  position: absolute;
  right: -22px;
  bottom: -28px;
  width: 185px;
  padding: 23px;
  background: var(--secondary);
  border-radius: 22px 22px 8px 22px;
  box-shadow: 0 18px 42px rgba(105, 69, 15, .23);
}

.experience-badge strong,
.experience-badge span {
  display: block;
}

.experience-badge strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
}

.experience-badge span {
  margin-top: 5px;
  color: #4e3916;
  font-size: .83rem;
  line-height: 1.4;
}

.about-copy .lead {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 600;
}

.about-tabs {
  display: flex;
  gap: 8px;
  margin: 32px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.tab-button {
  padding: 9px 14px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-weight: 800;
}

.tab-button.active {
  color: #fff;
  background: var(--primary);
}

.tab-panel {
  color: var(--text);
  padding: 4px 2px;
}

.formation {
  background: #fff;
}

.formation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.formation-card {
  position: relative;
  padding: 34px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .25s, box-shadow .25s;
}

.formation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(14, 65, 69, .1);
}

.formation-card.featured {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
}

.formation-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.formation-index {
  color: var(--secondary);
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
}

.formation-tag {
  padding: 6px 10px;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
}

.featured .formation-tag {
  color: #fff;
  background: rgba(255,255,255,.12);
}

.formation-card h3 {
  margin: 25px 0 10px;
  font-size: 1.6rem;
}

.formation-card p,
.formation-card li {
  color: var(--text);
}

.formation-card.featured p,
.formation-card.featured li {
  color: #c9dcda;
}

.formation-card ul {
  margin: 22px 0 25px;
  padding-left: 20px;
}

.formation-card li + li {
  margin-top: 7px;
}

.formation-card.featured > a {
  color: #ffd88d;
}

.consulting {
  color: #fff;
  background:
    radial-gradient(circle at 0 100%, rgba(216,155,50,.15), transparent 28%),
    linear-gradient(135deg, var(--primary-dark), #092f34);
}

.consulting-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.consulting-copy {
  position: sticky;
  top: 130px;
}

.consulting-copy h2 {
  margin-top: 18px;
}

.consulting-copy p {
  color: #bdd2d0;
}

.consulting-copy .button {
  margin-top: 15px;
}

.consulting-list {
  display: grid;
  gap: 16px;
}

.consulting-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 19px;
  padding: 25px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  transition: background .2s, transform .2s;
}

.consulting-item:hover {
  background: rgba(255,255,255,.1);
  transform: translateX(5px);
}

.consulting-item > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--primary-dark);
  background: var(--secondary);
  border-radius: 15px;
  font-weight: 800;
}

.consulting-item h3 {
  margin: 0 0 7px;
  font-size: 1.13rem;
}

.consulting-item p {
  margin: 0;
  color: #bed1d0;
  font-size: .93rem;
}

.social {
  background: var(--surface-soft);
}

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

.social-card {
  min-height: 280px;
  padding: 27px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 21px;
  transition: transform .25s, box-shadow .25s;
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(15, 62, 66, .09);
}

.social-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 14px;
  font-weight: 800;
}

.social-card:nth-child(even) .social-icon {
  color: var(--primary-dark);
  background: var(--secondary);
}

.social-card h3 {
  margin: 25px 0 10px;
  font-size: 1.17rem;
}

.social-card p {
  margin: 0;
  color: var(--text);
  font-size: .94rem;
}

.social-banner {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 32px 38px;
  color: #fff;
  background: var(--primary-dark);
  border-radius: 24px 24px 24px 8px;
}

.social-banner span {
  color: #9fd8d3;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.social-banner h3 {
  margin: 7px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 13px;
  margin-top: 34px;
}

.contact-details > a,
.contact-details > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 15px;
}

.contact-details > a > span,
.contact-details > div > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--primary);
  border-radius: 13px;
  font-weight: 800;
}

.contact-details div div,
.contact-details a div {
  display: grid;
}

.contact-details small {
  color: var(--muted);
}

.contact-details strong {
  color: var(--ink);
  overflow-wrap: anywhere;
  font-size: .93rem;
}

.contact-form {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 25px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--surface-soft);
  border: 1px solid var(--border);
  border-radius: 11px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}

.contact-form textarea {
  resize: vertical;
  min-height: 135px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,95,103,.1);
}

.contact-form .invalid {
  border-color: #bd3c3c;
  box-shadow: 0 0 0 3px rgba(189,60,60,.08);
}

.form-note {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.45;
}

.form-status {
  min-height: 24px;
  margin-top: 9px;
  color: var(--primary);
  font-size: .86rem;
  font-weight: 700;
}

.site-footer {
  padding: 70px 0 0;
  color: #bed0cf;
  background: #092f34;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .68fr .78fr 1.35fr;
  gap: 42px;
  padding-bottom: 50px;
}

.footer-brand .brand-logo {
  width: 76px;
  height: 76px;
  flex-basis: 76px;
}

.footer-brand .brand-name {
  font-size: .72rem;
}

.footer-brand .brand-slogan {
  font-size: .78rem;
}

.footer-brand .brand-nit {
  color: #b9ccca;
  font-size: .68rem;
}

.footer-grid > div:first-child > p {
  max-width: 380px;
  margin-top: 22px;
}

.footer-grid h3 {
  margin: 0 0 17px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-grid p {
  margin: 0;
}


.footer-contact-list {
  display: grid;
  gap: 12px;
}

.footer-contact-item {
  width: 100%;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 8px 0;
  color: #d5e4e3;
}

.footer-contact-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #092f34;
  background: var(--logo-green);
  border-radius: 11px;
}

.footer-contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-item > span:last-child {
  min-width: 0;
  display: grid;
  line-height: 1.35;
}

.footer-contact-item small {
  color: #8fb2af;
  font-size: .72rem;
}

.footer-contact-item strong {
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.footer-location {
  padding-bottom: 48px;
}

.footer-location-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.footer-location-label {
  color: var(--logo-green);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-location-heading h3 {
  margin: 5px 0 0;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
}

.footer-location-heading a {
  color: #fff;
  font-size: .86rem;
  font-weight: 700;
}

.footer-location-heading a:hover {
  color: var(--logo-green);
}

.footer-map-frame {
  height: 320px;
  overflow: hidden;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px 22px 22px 7px;
}

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

.footer-bottom {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .84rem;
}

.footer-bottom a {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1050px) {
  .brand-name {
    max-width: none;
    font-size: .7rem;
  }

  .brand-slogan {
    font-size: .76rem;
  }

  .brand-nit {
    display: block;
    font-size: .65rem;
  }

  .main-nav a,
  .dropdown-toggle {
    padding-inline: 7px;
    font-size: .78rem;
  }

  .hero-grid,
  .about-grid,
  .consulting-grid,
  .contact-grid {
    gap: 50px;
  }

  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  html {
    scroll-padding-top: 170px;
  }

  .brand-name {
    font-size: clamp(.61rem, 1.8vw, .79rem);
  }

  .brand-slogan {
    font-size: .76rem;
  }

  .brand-nit {
    font-size: .65rem;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: var(--mobile-header-height, 116px) 0 0;
    padding: 18px 20px 40px;
    background: rgba(255,255,255,.98);
    transform: translateX(100%);
    transition: transform .28s ease;
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav > ul {
    width: min(100%, 540px);
    margin-inline: auto;
    display: block;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 15px 12px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: 1rem;
  }

  .main-nav .nav-cta {
    justify-content: center;
    margin: 18px 0 0;
    border-radius: 12px;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0 0 0 18px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    overflow: hidden;
    transition: max-height .25s ease;
  }

  .dropdown.open .dropdown-menu {
    max-height: 260px;
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .dropdown-menu a {
    font-size: .92rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .about-grid,
  .consulting-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 480px;
  }

  .cards-grid.three {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .section-heading.split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-visual {
    width: min(100%, 590px);
    margin-inline: auto;
  }

  .consulting-copy {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .contact-bar-inner {
    min-height: 0;
    padding-block: 5px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px 12px;
  }

  .header-contact {
    justify-content: center;
    gap: 3px 12px;
  }

  .header-contact a {
    font-size: .72rem;
  }

  .header-contact svg {
    width: 16px;
    height: 16px;
  }

  .social-button {
    width: 31px;
    height: 31px;
  }

  .social-button svg {
    width: 17px;
    height: 17px;
  }

  .nav-wrap {
    min-height: 82px;
    gap: 7px;
  }

  .brand {
    gap: 5px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .brand-name {
    font-size: clamp(.49rem, 2.12vw, .64rem);
    letter-spacing: -.03em;
  }

  .brand-slogan {
    margin-top: 3px;
    font-size: .64rem;
  }

  .brand-nit {
    margin-top: 2px;
    font-size: .57rem;
  }

  .hero {
    padding-top: 90px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  .hero-copy > p {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-trust {
    gap: 13px 20px;
  }

  .hero-visual {
    min-height: 450px;
  }

  .main-card {
    padding: 27px 20px;
    border-radius: 27px 27px 27px 8px;
  }

  .main-card h2 {
    font-size: 1.35rem;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .about-copy h2,
  .consulting-copy h2,
  .contact-copy h2 {
    font-size: 2.2rem;
  }

  .formation-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 430px;
  }

  .photo-placeholder {
    min-height: 420px;
    padding: 28px;
  }

  .photo-placeholder strong {
    font-size: 1.55rem;
  }

  .experience-badge {
    right: 10px;
    bottom: -30px;
  }

  .about-copy {
    margin-top: 20px;
  }

  .about-tabs {
    overflow-x: auto;
  }

  .consulting-item {
    grid-template-columns: 50px 1fr;
    padding: 20px;
  }

  .consulting-item > span {
    width: 46px;
    height: 46px;
  }

  .social-banner {
    align-items: flex-start;
    flex-direction: column;
    padding: 26px;
  }

  .social-banner .button {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 23px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 25px;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-location-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-map-frame {
    height: 280px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0;
  }
}



@media (max-width: 850px) {
  .institutional-slider {
    padding-top: 188px;
  }

  .slider-viewport {
    min-height: 560px;
  }

  .slider-slide {
    grid-template-columns: 1fr;
    padding: 38px 30px;
  }

  .slide-visual {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .institutional-slider {
    padding-top: calc(var(--mobile-header-height, 160px) + 22px);
    padding-bottom: 18px;
  }

  .slider-frame {
    padding: 12px;
    border-radius: 24px;
  }

  .slider-viewport {
    min-height: 590px;
    border-radius: 20px;
  }

  .slider-slide {
    padding: 28px 18px 24px;
  }

  .slider-slide h2 {
    font-size: 1.72rem;
  }

  .slider-slide p {
    font-size: .95rem;
  }

  .slide-tags {
    gap: 8px;
  }

  .slide-tags span {
    padding: 7px 11px;
    font-size: .72rem;
  }

  .visual-card-illustration {
    width: 100%;
    max-width: 270px;
    height: 220px;
  }

  .slide-photo {
    width: 100%;
    max-width: 320px;
    border-radius: 18px;
  }

  .slide-visual-logo img {
    width: min(100%, 190px);
  }

  .slider-controls {
    gap: 10px;
    padding-top: 14px;
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }

  .slider-dot.is-active {
    width: 26px;
  }
}


@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* Botón flotante de WhatsApp */
.whatsapp-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 11px;
  color: #fff;
  background: #25d366;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(7, 63, 70, .28);
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  color: #fff;
  background: #1faf54;
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(7, 63, 70, .34);
}

.whatsapp-button svg {
  width: 38px;
  height: 38px;
  fill: #fff;
}

.whatsapp-button .whatsapp-phone {
  fill: #25d366;
}

@media (max-width: 620px) {
  .whatsapp-button {
    right: 15px;
    bottom: 15px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    justify-content: center;
    padding: 8px;
  }

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

  .whatsapp-button svg {
    width: 39px;
    height: 39px;
  }
}


/* Información institucional ampliada */
.tab-panel h3 {
  margin: 0 0 10px;
  color: var(--primary-dark);
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
}

.tab-panel p {
  margin: 0;
  text-align: justify;
}


.principles-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin-top: 15px;
}

.principles-list article {
  min-height: 116px;
  padding: 15px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.principles-list strong,
.principles-list span {
  display: block;
}

.principles-list strong {
  margin-bottom: 5px;
  color: var(--primary-dark);
  font-family: "Manrope", sans-serif;
  font-size: .91rem;
}

.principles-list span {
  color: var(--text);
  font-size: .82rem;
  line-height: 1.45;
  text-align: justify;
}

/* Contador de visitas */
.visitor-counter-section {
  display: flex;
  justify-content: center;
  padding: 4px 0 34px;
}

.visitor-counter-card {
  min-width: 245px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 13px 20px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
}

.visitor-counter-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: #092f34;
  background: var(--logo-green);
  border-radius: 12px;
}

.visitor-counter-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visitor-counter-copy {
  display: grid;
  line-height: 1.15;
}

.visitor-counter-copy small {
  color: #9ebbb8;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.visitor-counter-copy strong {
  margin-top: 5px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
  letter-spacing: .08em;
}

@media (max-width: 620px) {
  .principles-list {
    grid-template-columns: 1fr;
  }

  .principles-list article {
    min-height: auto;
  }

  .visitor-counter-card {
    width: 100%;
  }
}
