:root {
  --azul: #082542;
  --azul-2: #0c3558;
  --verde: #009b8f;
  --verde-2: #13b8aa;
  --verde-suave: #eafaf8;
  --gris: #f6fafc;
  --linea: #dbecef;
  --texto: #10243a;
  --texto-2: #4c5f70;
  --blanco: #ffffff;
  --sombra: 0 18px 45px rgba(8, 37, 66, 0.10);
  --sombra-suave: 0 10px 30px rgba(8, 37, 66, 0.07);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--texto);
  background: var(--blanco);
  line-height: 1.6;
}

a {
  color: inherit;
}

.page-bg {
  min-height: 100vh;
  background:
    radial-gradient(circle at 88% 23%, rgba(19, 184, 170, 0.11), transparent 24%),
    radial-gradient(circle at 4% 12%, rgba(19, 184, 170, 0.07), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f7fbfc 58%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.page-bg::before {
  content: "";
  position: absolute;
  inset: 112px auto auto -70px;
  width: 270px;
  height: 270px;
  opacity: 0.34;
  background-image: radial-gradient(var(--verde-2) 1px, transparent 1px);
  background-size: 14px 14px;
  pointer-events: none;
}

.page-bg::after {
  content: "";
  position: absolute;
  right: -180px;
  top: 155px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(19, 184, 170, 0.18);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 42px rgba(19, 184, 170, 0.025),
    inset 0 0 0 92px rgba(19, 184, 170, 0.018),
    inset 0 0 0 142px rgba(19, 184, 170, 0.014);
  pointer-events: none;
}

header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--linea);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(8, 37, 66, 0.04);
}

.top-bar {
  background: linear-gradient(90deg, #023e5a 0%, #006b6b 100%);
  color: var(--blanco);
  padding: 10px 0;
  font-size: 14px;
  font-weight: 700;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.top-bar-contact {
  display: flex;
  gap: 24px;
}

.top-bar a {
  color: var(--blanco);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s ease;
}

.top-bar a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.top-bar svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 850px) {
  .top-bar {
    display: none;
  }
}

.nav {
  max-width: 1220px;
  margin: 0 auto;
  min-height: 88px;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.header-logo {
  height: 125px; /* Increased from 105px */
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0, 155, 143, 0.15));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.brand:hover .header-logo {
  transform: scale(1.06);
}

nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 48px; /* Increased from 38px */
}

nav a {
  position: relative;
  text-decoration: none;
  font-size: 18px; /* Increased from 16px */
  font-weight: 700;
  color: var(--texto);
  padding: 8px 0;
}

nav a.active,
nav a:hover {
  color: var(--verde);
}

nav a.active::after,
nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  background: var(--verde);
  border-radius: 99px;
}

.login-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--verde);
  color: var(--verde);
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 7px;
  font-weight: 800;
  transition: 0.2s ease;
}

.login-btn:hover {
  background: var(--verde);
  color: var(--blanco);
}

.login-btn::after {
  display: none;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 28px;
}

.hero {
  padding: 78px 0 68px;
  position: relative;
  background: linear-gradient(135deg, var(--azul), var(--verde));
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 46px;
  align-items: center;
}

.hero-copy h1 {
  color: var(--blanco);
  font-size: clamp(42px, 5.4vw, 68px);
  line-height: 1.08;
  letter-spacing: -2.4px;
  margin-bottom: 24px;
  max-width: 560px;
}

.hero-copy h1 span {
  color: var(--verde-suave);
  display: block;
}

.accent-line {
  width: 58px;
  height: 3px;
  background: var(--verde-suave);
  border-radius: 999px;
  margin: 20px 0 24px;
}

.hero-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.72;
  margin-bottom: 30px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  transition: 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--verde), var(--verde-2));
  color: var(--blanco);
  box-shadow: 0 14px 30px rgba(0, 155, 143, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 155, 143, 0.26);
}

.btn-outline {
  color: var(--blanco);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
  color: var(--azul);
  background: var(--blanco);
  border-color: var(--blanco);
}

.area-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blanco);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 22px;
}

.area-title::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--blanco);
}

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

.focus-card {
  min-height: 205px;
  padding: 26px 24px;
  background: #dceef0; /* celeste claro */
  border: 1px solid rgba(0, 155, 143, 0.12);
  border-radius: 10px;
  box-shadow: var(--sombra-suave);
  transition: 0.2s ease;
}

.focus-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 155, 143, 0.42);
  box-shadow: var(--sombra);
}

.focus-card svg {
  width: 56px;
  height: 56px;
  color: var(--verde);
  margin-bottom: 20px;
  stroke-width: 1.7;
}

.focus-card h3 {
  color: var(--azul);
  font-size: 17px;
  margin-bottom: 10px;
}

.focus-card p {
  color: var(--texto-2);
  font-size: 14.5px;
  line-height: 1.62;
  min-height: 68px;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  margin-top: 10px;
  background: transparent;
  border: 1.5px solid var(--verde);
  color: var(--verde);
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-more:hover {
  background: var(--verde);
  color: var(--blanco);
}

.arrow {
  display: inline-flex;
  margin-top: 12px;
  color: var(--verde);
  font-size: 26px;
  line-height: 1;
}

.feature-strip {
  margin: 42px 0 34px;
  background: var(--blanco);
  border: 1px solid rgba(0, 155, 143, 0.18);
  border-radius: 10px;
  box-shadow: var(--sombra-suave);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
  padding: 28px 28px;
  min-height: 100px;
  border-right: 1px solid rgba(0, 155, 143, 0.18);
  transition: all 0.3s ease;
  cursor: default;
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item:hover {
  background: linear-gradient(135deg, var(--verde), var(--verde-2));
}

.feature-item:hover p,
.feature-item:hover svg {
  color: var(--blanco);
}

.feature-item svg {
  width: 44px;
  height: 44px;
  color: var(--verde);
  stroke-width: 1.7;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-item:hover svg {
  transform: scale(1.15) translateY(-2px);
}

.feature-item p {
  color: var(--texto);
  font-size: 15px;
  line-height: 1.55;
  transition: color 0.3s ease;
}

section.content-section {
  padding: 74px 0;
  border-top: 1px solid rgba(219, 236, 239, 0.7);
  background: rgba(255,255,255,0.72);
}

#servicios {
  background: linear-gradient(135deg, #f5fbfc 0%, #e8f7f6 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 155, 143, 0.08);
  border-bottom: 1px solid rgba(0, 155, 143, 0.08);
}

#servicios::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 155, 143, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

#servicios::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 155, 143, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-title h2 {
  color: var(--azul);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.16;
  letter-spacing: -0.7px;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--texto-2);
  font-size: 17px;
}

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

.info-card {
  background: var(--blanco);
  border: 1px solid rgba(0, 155, 143, 0.1);
  border-radius: 16px;
  padding: 34px 28px;
  box-shadow: 0 10px 30px rgba(8, 37, 66, 0.03);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--verde), var(--verde-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
}

.info-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(19, 184, 170, 0.06) 0%, transparent 70%);
  top: -50px;
  right: -50px;
  border-radius: 50%;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(8, 37, 66, 0.08);
  border-color: rgba(0, 155, 143, 0.3);
}

.info-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 155, 143, 0.08);
  color: var(--verde);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: 0.3s ease;
}

.info-card:hover .info-card-icon {
  background: var(--verde);
  color: var(--blanco);
  transform: rotate(-5deg) scale(1.1);
}

.info-card-icon svg {
  width: 28px;
  height: 28px;
}

.info-card:hover::before {
  transform: scaleX(1);
}

.info-card:hover::after {
  transform: scale(1.5) translate(-20px, 20px);
  background: radial-gradient(circle, rgba(19, 184, 170, 0.12) 0%, transparent 70%);
}

.info-card h3 {
  color: var(--azul);
  font-size: 21px;
  margin-bottom: 14px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-card h3::after {
  content: "→";
  font-size: 22px;
  color: var(--verde);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.info-card:hover h3 {
  color: var(--verde);
}

.info-card:hover h3::after {
  opacity: 1;
  transform: translateX(0);
}

.info-card p {
  color: var(--texto-2);
  font-size: 15.5px;
  line-height: 1.6;
}

.risk-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}

.risk-main {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  padding: 34px;
  color: var(--blanco);
  background: linear-gradient(135deg, var(--azul), var(--verde), #0a4040, var(--azul));
  background-size: 300% 300%;
  box-shadow: var(--sombra);
  animation: panGradient 12s ease infinite;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.risk-main::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  transition: transform 0.8s ease;
  pointer-events: none;
}

.risk-main:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(8, 37, 66, 0.25);
}

.risk-main:hover::before {
  transform: scale(1.3) translate(-20px, 20px);
}

@keyframes panGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.risk-main h2 {
  font-size: 34px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.risk-main p {
  color: rgba(255,255,255,0.88);
  position: relative;
  z-index: 2;
}

.risk-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.risk-item {
  position: relative;
  overflow: hidden;
  background: var(--blanco);
  border: 1px solid var(--linea);
  border-radius: 12px;
  padding: 22px;
  box-shadow: var(--sombra-suave);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.risk-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--verde);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.risk-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(8, 37, 66, 0.08);
  border-color: rgba(0, 155, 143, 0.3);
}

.risk-item:hover::before {
  transform: scaleY(1);
}

.risk-item strong {
  color: var(--verde);
  display: block;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.risk-item:hover strong {
  color: var(--azul);
}

.risk-item span {
  color: var(--texto-2);
  font-size: 14.5px;
  position: relative;
  z-index: 1;
}

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 24px 28px 34px;
  color: var(--texto-2);
  font-size: 14px;
}

footer span {
  color: var(--verde);
  margin-left: 10px;
}

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

.btn-more {
  margin-top: 16px;
  background: transparent;
  border: 1.5px solid var(--verde);
  color: var(--verde);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
  display: inline-block;
}

.btn-more:hover {
  background: var(--verde);
  color: var(--blanco);
}

.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: #FFF;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 100;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.floating-wa:hover {
  transform: scale(1.1);
}

.floating-wa svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 37, 66, 0.6);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--blanco);
  padding: 34px;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  box-shadow: var(--sombra);
  position: relative;
  transform: translateY(20px);
  transition: 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--texto-2);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--azul);
}

.video-modal-content {
  padding: 0;
  max-width: 900px;
  background: #000;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  display: flex;
}

.video-modal-content video {
  width: 100%;
  height: auto;
  max-height: 85vh;
  display: block;
  outline: none;
}

.video-modal-content .modal-close {
  top: 10px;
  right: 15px;
  color: rgba(255, 255, 255, 0.7);
  z-index: 10;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.video-modal-content .modal-close:hover {
  color: #fff;
}

.modal-content h3 {
  color: var(--azul);
  margin-bottom: 20px;
  font-size: 22px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-form label {
  font-size: 14px;
  color: var(--texto);
  font-weight: 600;
}

.modal-form input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--linea);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

.modal-form input:focus {
  border-color: var(--verde);
}

.modal-btn {
  background: #25D366;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.modal-btn:hover {
  background: #20bd5a;
}


@media (max-width: 1000px) {
  .hero-grid,
  .risk-box {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .hero-copy p {
    max-width: 780px;
  }

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

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

@media (max-width: 700px) {
  .cards-grid,
  .info-grid,
  .feature-strip {
    grid-template-columns: 1fr;
  }
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--azul);
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 37, 66, 0.4);
  backdrop-filter: blur(4px);
  z-index: 40;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 850px) {
  .nav {
    align-items: center;
  }
  

  .mobile-menu-btn {
    display: block;
    z-index: 50;
  }

  nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--blanco);
    box-shadow: -10px 0 30px rgba(8, 37, 66, 0.1);
    padding: 100px 30px 30px;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 45;
    gap: 24px;
  }

  nav ul.active {
    right: 0;
  }

  nav a {
    font-size: 18px;
    width: 100%;
  }
  
  .login-btn {
    margin-top: 10px;
    justify-content: center;
    width: 100%;
  }

  .hero {
    padding: 50px 0 40px;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 8vw, 42px);
  }

  .cards-grid,
  .info-grid,
  .feature-strip,
  .risk-list {
    grid-template-columns: 1fr;
  }

  .feature-item {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 155, 143, 0.18);
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .brand-main {
    font-size: 34px;
  }
}
/* --- FOOTER ACEDIG --- */
.main-footer {
  background: linear-gradient(135deg, #022a3d 0%, #006d64 100%);
  color: #ffffff;
  padding: 70px 0 30px;
  position: relative;
  overflow: hidden;
  border-top: 2px solid var(--verde);
}
.main-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 85% 15%, rgba(0,255,242,0.12) 0%, transparent 60%),
              radial-gradient(circle at 15% 85%, rgba(0,155,143,0.35) 0%, transparent 60%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

/* Col 1 */
.footer-logo {
  height: 100px; /* Increased from 60px */
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.footer-logo:hover {
  transform: scale(1.05);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #b3c7d6;
  margin-bottom: 24px;
  text-align: justify;
}

.social-links {
  display: flex;
  gap: 16px;
}
.social-links a {
  color: #022a3d;
  background: #fff;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  transition: all 0.3s;
}
.social-links a:hover {
  background: var(--verde);
  color: #fff;
  transform: translateY(-3px);
}
.social-links svg {
  width: 20px; height: 20px;
}

/* Titles */
.footer-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 24px;
  color: #fff;
}

/* Col 2 */
.contact-list {
  list-style: none;
  padding: 0; margin: 0;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #4eb6e6;
  line-height: 1.5;
}
.contact-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #fff;
}
.contact-list a {
  color: #4eb6e6;
  text-decoration: none;
  transition: color 0.3s;
}
.contact-list a:hover {
  color: #fff;
}

/* Col 3 */
.premium-certs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 18px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.cert-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.cert-icon-wrapper {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 155, 143, 0.15);
  color: var(--verde-2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 155, 143, 0.3);
}

.cert-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.cert-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cert-title {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.cert-sub {
  color: #83a1b5;
  font-size: 11px;
  line-height: 1.3;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #83a1b5;
  position: relative;
  z-index: 1;
}

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

/* --- NUEVO QUIENES SOMOS (REDISEÑO) --- */
.about-section {
  padding: 100px 0;
  background: #fdfdfd;
  position: relative;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.about-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  color: var(--azul);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.about-label::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--verde);
}

.about-copy h2 {
  font-size: 64px;
  color: var(--azul);
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -2px;
}

.about-copy p {
  font-size: 18px;
  color: var(--texto-2);
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.about-badges .badge {
  background: #f0f9f9;
  color: var(--azul);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 155, 143, 0.1);
}

.about-badges svg {
  width: 18px;
  height: 18px;
  color: var(--verde);
}

.about-image {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(8, 37, 66, 0.12);
  cursor: pointer;
  transform: translateZ(0);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.04);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 37, 66, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}

.about-image:hover .play-overlay {
  background: rgba(8, 37, 66, 0.35);
}

.play-btn {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--verde);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.play-btn svg {
  width: 36px;
  height: 36px;
  margin-left: 4px;
}

.about-image:hover .play-btn {
  transform: scale(1.12);
  background: var(--blanco);
  color: var(--verde-2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.pillars-section {
  margin-bottom: 100px;
}

.pillars-header {
  text-align: center;
  margin-bottom: 60px;
}

.pillars-header h2 {
  font-size: 42px;
  color: var(--azul);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.pillars-header p {
  font-size: 18px;
  color: var(--texto-2);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  background: var(--blanco);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(8, 37, 66, 0.04);
  border: 1px solid rgba(0, 155, 143, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(8, 37, 66, 0.08);
  border-color: rgba(0, 155, 143, 0.15);
}

.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--blanco);
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
}

.icon-blue { background: #006699; }
.icon-cyan { background: #0099cc; }
.icon-green { background: #33cc99; }

.pillar-card h3 {
  font-size: 24px;
  color: var(--azul);
  margin-bottom: 16px;
}

.pillar-card p {
  font-size: 16px;
  color: var(--texto-2);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pillar-link {
  color: var(--azul);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: color 0.3s;
}

.pillar-link:hover {
  color: var(--verde);
}

.about-cta {
  background: linear-gradient(90deg, #023e5a 0%, #006b6b 100%);
  padding: 60px 80px;
  border-radius: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--blanco);
  position: relative;
  overflow: hidden;
}

.about-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.about-cta-content h2 {
  font-size: 48px;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.about-cta-content p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 600px;
}

.btn-cta-alt {
  background: var(--blanco);
  color: var(--azul);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s;
  flex-shrink: 0;
  z-index: 1;
}

.btn-cta-alt:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

@media (max-width: 1000px) {
  .about-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-cta {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px;
  }
  .about-copy h2 {
    font-size: 48px;
  }
  .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }
  .about-cta-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 500px) {
  .container {
    padding: 0 20px;
  }
  .hero-copy h1 {
    font-size: 36px;
  }
  .about-copy h2 {
    font-size: 36px;
  }
  .premium-certs {
    grid-template-columns: 1fr;
  }
  .cert-item {
    padding: 14px 10px;
    gap: 12px;
    flex-direction: row;
    text-align: left;
  }
  .cert-icon-wrapper {
    width: 40px;
    height: 40px;
  }
  .cert-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }
}
