:root {
  --blue-400: #60a5fa;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-950: #172554;
 
  --slate-900: #04091f; 
  --gray-600: #4b5563;
  --gray-200: #e5e7eb;

  --radius-xl: 1rem;
  --shadow-lg: 0 10px 25px rgba(0,0,0,.15);
  --shadow-xl: 0 25px 50px rgba(0,0,0,.25);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Source Sans 3', sans-serif;
}

body {
  background: #ffffff;
  color: #1e293b;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

/* HERO */
.hero {
  padding: 120px 0;
  background: linear-gradient(135deg, #020617, #1d305d, #020617);
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 20px;
}

.hero h1 span {
  color: #60a5fa
}

.hero p {
  font-size: 1.25rem;
  color: #cbd5f5;
  max-width: 700px;
  margin: auto;
}


/* TEAM */
.team {
  padding: 80px 0;
  background: linear-gradient(135deg, #f1f5f9, #eff6ff);
}

.team-header {
  text-align: center;
  margin-bottom: 50px;
}

.team-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.team-header p {
  color: #475569;
  font-size: 1.1rem;
}

.team-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.team-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2,6,23,0.85), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  color: white;
}

.overlay h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.overlay p {
  color: #e5e7eb;
}



/* ANIMACIONES */
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(
    to right,
    var(--slate-900),
    var(--blue-950),
    var(--slate-900)
  );
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
}

/* Container */
.nav-container {
  max-width: 1280px;
  margin: auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 350px;
  margin-top: 30px;/* controla el tamaño */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* efecto bonito */
.logo img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

@media (max-width: 1024px) {
  .logo img {
    height: 10rem;
    transform: scale(1.5);
    pointer-events: none;
  }
}

/* Desktop links */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  position: relative;
  color: #e5e7eb;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--blue-400);
}

.nav-link.active {
  color: var(--blue-400);
}

/* Underline animation */
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--blue-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Mobile menu button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  transition: color 0.3s ease;
}

.menu-btn:hover {
  color: white
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown .arrow {
  font-size: 0.7rem;
  margin-left: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 250%;
  left: 200%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 280px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
  opacity: 0;
  visibility: hidden;
  transform-origin: top;
  transition: all .25s ease;
  z-index: 1000;
}

.dropdown-menu a {
  text-decoration: none;
  display: block;
  padding: 12px 16px;
  color: #1e293b;
  font-size: 0.9rem;
  transition: background .2s, color .2s;
}

/* Preparar el enlace para la línea */
.dropdown-menu a {
  position: relative;
  padding-left: 26px; /* espacio para la línea */
}

/* Línea decorativa oculta */
.dropdown-menu a::before {
  content: "|";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: currentColor; /* mismo color del texto */
  opacity: 0;
  transition: opacity .2s ease;
}

/* Mostrar línea al pasar el mouse */
.dropdown-menu a:hover::before {
  opacity: 1;
}


.dropdown-menu a:hover {
  color: #2563eb;
}

/* Mostrar dropdown */
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
  background: #04091f57;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.mobile-menu.open {
  max-height: 600px;
}

.mobile-link {
  display: block;
  padding: 0.9rem 1.5rem;
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, background 0.3s ease;
}

.mobile-link:hover {
  color: var(--blue-400);
  background: rgba(59, 130, 246, 0.08);
}

.mobile-link.active {
  color: var(--blue-400);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .mobile-dropdown .arrow {
    font-size: 0.7rem;
  }
}

.mobile-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-toggle {
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding-left: 12px;
}

.mobile-submenu a {
  margin-left: 20px;
  text-decoration: none;
  display: block;
  padding: 10px;
  font-size: .9rem;
  color: #cbd5f5;
}

.mobile-submenu a:hover {
  color: #fff;
}

/* abierto */
.mobile-dropdown.open .mobile-submenu {
  max-height: 500px;
}

.footer {
  background: linear-gradient(
    to right,
    var(--slate-900),
    var(--blue-950),
    var(--slate-900)
  );
  color: white;
}

.footer-container {
  max-width: 1280px;
  margin: auto;
  padding: 3rem 1.5rem 2rem;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

/* Titles */
.footer-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-title span {
  color: var(--blue-400);
}

.footer-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Text */
.footer-text {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* Contact */
.footer-contact {
  display: grid;
  gap: 0.6rem;
}

.contact-item {
  align-items: center;
  gap: 0.5rem;
  color: #d1d5db;
  font-size: 0.95rem;
}

.contact-item .icon {
  font-size: 1rem;
}

/* Links */
.footer-links,
.footer-services {
  list-style: none;
  padding: 0;
}

.footer-links li,
.footer-services li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--blue-400);
}

.footer-services a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-services a:hover {
  color: var(--blue-400);
}


/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  color: #9ca3af;
  font-size: 0.9rem;
}

/* =========================
   TEAM SECTION
========================= */

.team-section {
  background: #f8fafc; /* slate-50 */
  padding: 6rem 1rem;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* =========================
   TOP AREA
========================= */

.team-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  margin-bottom: 5rem;
}

.team-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  position: relative;
  top: -100px;
}

.team-text p {
  color: #475569;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  position: relative;
  top: -100px;
}



/* =========================
   IMAGE BLOCK
========================= */


/* Overlay */


/* =========================
   TEAM CARDS
========================= */

.team-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.member {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.member:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

.member-img {
  height: 190px;
  background: linear-gradient(135deg, #dbeafe, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-img svg {
  width: 64px;
  height: 64px;
  stroke: #94a3b8;
  fill: none;
  stroke-width: 2;
}

.member-body {
  padding: 1.5rem;
  text-align: center;
}

.member-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.member-body span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.member-body p {
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .team-top {
    grid-template-columns: 1fr;
  }

  .team-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-image img {
    height: 420px;
  }
}

@media (max-width: 600px) {
  .team-stats {
    grid-template-columns: 1fr;
  }

  .team-cards {
    grid-template-columns: 1fr;
  }

  .team-text h2 {
    font-size: 2rem;
  }

  .team-image img {
    height: 360px;
  }
}

.stats-section {
  position: relative;
  padding: 5rem 1.5rem;
  background-color: #0f172a;
  color: white;
  overflow: hidden;
}

/* Fondo degradado */
.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1e3a8a, #0f172a);
  z-index: 0;
}

.stats-container {
  max-width: 1280px;
  margin: auto;
  position: relative;
  z-index: 1;
}

/* Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

/* Desktop */
@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card */
.stat-card {
  padding: 1.5rem;
}

.stat-icon {
  font-size: 2rem;
  color: #93c5fd;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #bfdbfe;
  font-weight: 500;
}

/* Estado inicial */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Cuando entra en viewport */
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Leadership Section ===== */
.leadership-section {
  padding: 5rem 0;
  background: #ffffff;
  border-top: 1px solid #f1f5f9;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
}

.section-header p {
  margin-top: 1rem;
  color: #64748b;
  font-size: 1.1rem;
}

/* Card */
.leader-card {
  position: relative;
  background: linear-gradient(to right, #0f172a, #1e3a8a);
  border-radius: 24px;
  padding: 3rem;
  color: white;
  box-shadow: 0 25px 50px rgba(0,0,0,.25);
  overflow: hidden;
}

/* Background image */
.leader-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.leader-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.leader-content {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .leader-content {
    flex-direction: column;
    text-align: center;
  }
}

/* Photo */
.photo-wrapper {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #60a5fa;
  box-shadow: 0 25px 50px rgba(0,0,0,.4);
  transition: transform .3s ease;
}

.photo-wrapper:hover {
  transform: scale(1.05);
}

.photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info */
.leader-info h3 {
  font-size: 2.5rem;
  margin-bottom: .5rem;
}

.leader-role {
  color: #93c5fd;
  font-weight: 600;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 1.5rem;
}

.divider {
  width: 80px;
  height: 4px;
  background: #3b82f6;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.leader-info p {
  color: #e5e7eb;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Badges */
.leader-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge {
  background: #ffffff;
  color: #0f172a;
  padding: .6rem 1rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 10px 20px rgba(0,0,0,.2);
}

.badge i {
  color: #2563eb;
}

/* ===== About Section ===== */
.about-section {
  padding: 5rem 0;
  background: #ffffff;
}

/* Grid */
.about-grid {
  display: flex;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
  }
}

/* Text */
.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
}

.title-line {
  width: 80px;
  height: 4px;
  background: #2563eb;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1rem;
}

/* Image */
.about-image {
  position: relative;
  width: 100%;
}

.image-bg {
  position: absolute;
  inset: 0;
  background: #2563eb;
  border-radius: 20px;
  transform: rotate(3deg);
  opacity: 0.1;
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 40px rgba(0,0,0,.2);
}

/* ===== Misión & Visión ===== */
.mission-vision {
  padding: 5rem 0;
  background: #ebf5ff; /* slate-50 */
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.mv-card {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 20px 30px rgba(0,0,0,.08);
  border-left: 5px solid transparent;
  transition: transform .3s ease, box-shadow .3s ease;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 45px rgba(0,0,0,.12);
}

/* Borders */
.border-blue {
  border-left-color: #2563eb;
}

.border-dark {
  border-left-color: #1e293b;
}

/* Header */
.mv-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.mv-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

/* Icons */
.mv-icon {
  font-size: 2.2rem;
  margin-right: 1rem;
}

.mv-icon.blue {
  color: #2563eb;
}

.mv-icon.dark {
  color: #1e293b;
}

/* Text */
.mv-card p {
  color: #4b5563;
  line-height: 1.8;
  font-size: 1.05rem;
}

.valores {
  padding: 80px 20px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.section-header p {
  color: #64748b;
  max-width: 600px;
  margin: auto;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.valor-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.valor-card:hover {
  border-color: #3b82f6;
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
  transform: translateY(-6px);
}

.valor-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.valor-card p {
  font-size: 14px;
  color: #64748b;
}

.icon {
  font-size: 36px;
  color: #2563eb;
  margin-bottom: 16px;
  transition: transform 0.3s ease;
}

.valor-card:hover .icon {
  transform: scale(1.15);
}

/* =========================
   Sección pilares
   ========================= */

.pilares-section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
}

.section-header p {
  margin-top: 1rem;
  color: #64748b;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid */
.pilares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* Card */
.pilar-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pilar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Icon */
.icon {
  margin-bottom: 1.5rem;
}

.icon i {
  font-size: 3rem;
  color: #60a5fa;
}

/* Text */
.pilar-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.pilar-card p {
  color: #475569;
  line-height: 1.7;
}

/* =========================
   Animación scroll
   ========================= */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


/* SECTION */
.why-cpa {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  color: #fff;
}

/* CONTAINER */
.why-cpa .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* HEADER */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header1 h2 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 2rem;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* CARD */
.why-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ICON */
.why-card i {
  font-size: 2rem;
  color: #60a5fa;
  margin-bottom: 1rem;
}

/* TEXT */
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.why-card p {
  font-size: .9rem;
  color: #dbeafe;
  line-height: 1.5;
}

/* SECTION */
.about-section {
  padding: 5rem 0; /* py-20 */
  background-color: #ffffff;
}

/* CONTAINER */
.about-container {
  max-width: 80rem; /* max-w-7xl */
  margin: 0 auto;
  padding: 0 1rem;
}

/* HEADER */
.about-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.about-icon {
  font-size: 2.5rem; /* w-10 h-10 */
  color: #2563eb; /* blue-600 */
  margin-right: 1rem;
}

.about-header h2 {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700;
  color: #0f172a; /* slate-900 */
  margin: 0;
}

/* GRID */
.about-grid {
  grid-template-columns: 1fr;
  gap: 3rem; /* gap-12 */
}

/* TEXT */
.about-column p {
  font-size: 1.125rem; /* text-lg */
  color: #4b5563; /* gray-600 */
  line-height: 1.75; /* leading-relaxed */
  margin-bottom: 1.5rem;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ANIMATION */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
