/*
Theme Name: Atlantis Centro de Innovación
Theme URI: https://atlantis.mdp.edu.ar
Author: Centro Atlantis UNMdP
Description: Theme oficial del Centro de Innovación Atlantis - Universidad Nacional de Mar del Plata. Diseño V4 con Gutenberg.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: atlantis
*/

/* ============================================
   ATLANTIS - Centro de Innovación UNMdP
   Hoja de estilos principal
   ============================================ */

/* --- Google Font --- */

/* --- Variables de diseño --- */
:root {
  /* Colores principales */
  --navy-dark: #161765;
  --navy-mid: #1B1B4F;
  --purple: #47349C;
  --blue-accent: #34AADC;
  --green: #37A961;
  --green-hover: #2d8a4f;

  /* Grises */
  --gray-dark: #333333;
  --gray-mid: #5F5F5F;
  --gray-light: #737373;
  --gray-border: #BBBBBB;
  --gray-bg: #F5F5F5;
  --white: #FFFFFF;

  /* Tipografía */
  --font-main: 'Montserrat', sans-serif;

  /* Espaciado */
  --header-height: 80px;
  --topbar-height: 36px;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-dark);
  background: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--navy-dark);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  font-size: 12px;
  color: var(--white);
}

.topbar a {
  color: var(--white);
  opacity: 0.8;
}

.topbar a:hover {
  opacity: 1;
}

.topbar__social {
  display: flex;
  gap: 12px;
}

.topbar__social a {
  font-size: 14px;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  background: var(--navy-dark);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 20px;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav__item {
  position: relative;
}

.nav__link {
  display: block;
  padding: 10px 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.nav__link:hover {
  border-bottom-color: var(--green);
  color: var(--green);
}

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  border-radius: 0 0 4px 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.3s ease;
  z-index: 9999;
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--gray-dark);
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid var(--gray-bg);
  transition: all 0.2s ease;
}

.nav__dropdown a:hover {
  background: var(--gray-bg);
  color: var(--green);
  padding-left: 24px;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 500px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.hero__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 32px;
  opacity: 0.9;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn--green {
  background: var(--green);
  color: var(--white);
}

.btn--green:hover {
  background: var(--green-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(55, 169, 97, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--outline:hover {
  background: var(--white);
  color: var(--navy-dark);
}

.btn--navy {
  background: var(--navy-dark);
  color: var(--white);
}

.btn--navy:hover {
  background: var(--navy-mid);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 60px 0;
}

.section--gray {
  background: var(--gray-bg);
}

.section--navy {
  background: var(--navy-dark);
  color: var(--white);
}

.section--green {
  background: var(--green);
  color: var(--white);
}

.section__title {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--navy-dark);
}

.section--navy .section__title,
.section--green .section__title {
  color: var(--white);
}

.section__subtitle {
  font-size: 16px;
  text-align: center;
  color: var(--gray-mid);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   ICON GRID (¿Tenés un proyecto?)
   ============================================ */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.icon-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.icon-grid__img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.icon-grid__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy-dark);
  line-height: 1.3;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-banner__text {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy-dark);
}

/* ============================================
   CARDS
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card__body {
  padding: 20px;
}

.card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.card__text {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.5;
}

/* ============================================
   TEAM GRID
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
  text-align: center;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.team-member__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--green);
}

.team-member__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-dark);
}

.team-member__role {
  font-size: 12px;
  color: var(--gray-light);
}

/* ============================================
   INFO BLOCKS (Misión, Visión, etc.)
   ============================================ */
.info-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-block {
  padding: 30px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 4px solid var(--green);
}

.info-block__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 12px;
}

.info-block__text {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.7;
}

/* ============================================
   SERVICES LIST (Preincubación, Incubación)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}

.service-item__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.service-item__text {
  font-size: 13px;
  color: var(--gray-mid);
}

/* ============================================
   PROJECT LOGOS GRID
   ============================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 20px;
  text-align: center;
}

.project-logo {
  padding: 16px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: transform 0.2s;
}

.project-logo:hover {
  transform: scale(1.05);
}

.project-logo img {
  max-height: 60px;
  max-width: 100%;
}

.project-logo span {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-dark);
}

/* ============================================
   TIMELINE / CRONOGRAMA
   ============================================ */
.timeline {
  max-width: 700px;
  margin: 0 auto;
}

.timeline__item {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-bg);
}

.timeline__date {
  min-width: 140px;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
}

.timeline__label {
  font-size: 14px;
  color: var(--gray-dark);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--gray-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-main);
  font-size: 14px;
  border: 1px solid var(--gray-border);
  border-radius: 4px;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-light);
  color: var(--white);
  text-align: center;
  padding: 40px 20px 24px;
}

.footer__fundador {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  opacity: 0.8;
}

.footer__logo {
  max-height: 80px;
  margin: 0 auto 20px;
}

.footer__address {
  font-size: 13px;
  opacity: 0.8;
  margin-bottom: 16px;
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.footer__social a {
  color: var(--white);
  font-size: 18px;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.footer__social a:hover {
  opacity: 1;
}

/* ============================================
   GREEN BANNER
   ============================================ */
.green-banner {
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
}

/* ============================================
   PAGE HEADER (subpáginas)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--purple));
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.page-header__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-header__breadcrumb {
  font-size: 13px;
  opacity: 0.7;
}

.page-header__breadcrumb a {
  color: var(--white);
  opacity: 0.8;
}

.page-header__breadcrumb a:hover {
  opacity: 1;
}

/* ============================================
   TABLE
   ============================================ */
.table-styled {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.table-styled th {
  background: var(--navy-dark);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
}

.table-styled td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--gray-bg);
  font-size: 14px;
}

.table-styled tr:nth-child(even) {
  background: var(--gray-bg);
}

/* ============================================
   UTILITY
   ============================================ */
.text-center { text-align: center; }
.text-green { color: var(--green); }
.text-navy { color: var(--navy-dark); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--navy-dark);
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  }

  .nav.active {
    display: flex;
  }

  .nav__toggle {
    display: block;
  }

  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    margin-top: 4px;
  }

  .nav__dropdown a {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.1);
  }

  .hero {
    height: 350px;
  }

  .hero__title {
    font-size: 24px;
  }

  .icon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .cta-banner__text {
    font-size: 22px;
  }

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

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

  .icon-grid__img {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero__title {
    font-size: 20px;
  }
}
/* ============================================
   ATLANTIS V4 — Diseño creativo / Tendencias 2026
   Standalone: no depende de v2.css
   Replicable en WordPress con Elementor Pro
   ============================================ */

/* --- Variables extendidas --- */
:root {
  --v4-navy: #0c0e3a;
  --v4-navy-light: #1a1d5e;
  --v4-purple: #6c5ce7;
  --v4-purple-light: #a29bfe;
  --v4-green: #00d2a0;
  --v4-green-dark: #00b88c;
  --v4-blue: #0984e3;
  --v4-orange: #f39c12;
  --v4-pink: #fd79a8;
  --v4-text: #2d3436;
  --v4-text-light: #636e72;
  --v4-bg: #fafbfc;
  --v4-card-bg: rgba(255,255,255,0.7);
  --v4-glass: rgba(255,255,255,0.12);
  --v4-glass-border: rgba(255,255,255,0.18);
  --v4-radius: 16px;
  --v4-radius-sm: 10px;
  --v4-shadow: 0 8px 32px rgba(12,14,58,0.08);
  --v4-shadow-hover: 0 16px 48px rgba(12,14,58,0.14);
  --v4-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Animaciones --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.v4-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--v4-transition);
}

.v4-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   HERO V4: Full viewport, inmersivo
   ============================================ */
.hero-v4 {
  position: relative;
  z-index: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--v4-navy);
}

.hero-v4__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-faro.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}

.hero-v4__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(12,14,58,0.95) 0%,
    rgba(108,92,231,0.6) 40%,
    rgba(0,210,160,0.3) 100%);
}

/* Decorative orb */
.hero-v4__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}

.hero-v4__orb--1 {
  width: 500px;
  height: 500px;
  background: var(--v4-purple);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-v4__orb--2 {
  width: 300px;
  height: 300px;
  background: var(--v4-green);
  bottom: -50px;
  left: 10%;
  animation: float 6s ease-in-out infinite 1s;
}

.hero-v4__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-v4__text {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-v4__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--v4-glass);
  border: 1px solid var(--v4-glass-border);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--v4-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-v4__label::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--v4-green);
  animation: pulse 2s infinite;
}

.hero-v4__title {
  font-size: 52px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-v4__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--v4-green), var(--v4-purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-v4__desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-v4__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Hero right: profile cards */
.hero-v4__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  animation: fadeInUp 0.8s ease forwards 0.3s;
  opacity: 0;
}

.profile-card {
  background: var(--v4-glass);
  border: 1px solid var(--v4-glass-border);
  backdrop-filter: blur(16px);
  border-radius: var(--v4-radius);
  padding: 28px 22px;
  text-align: center;
  cursor: pointer;
  transition: var(--v4-transition);
  text-decoration: none;
  color: white;
}

.profile-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.profile-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 14px;
}

.profile-card--emp .profile-card__icon { background: rgba(0,210,160,0.2); color: var(--v4-green); }
.profile-card--inv .profile-card__icon { background: rgba(9,132,227,0.2); color: var(--v4-blue); }
.profile-card--emp2 .profile-card__icon { background: rgba(108,92,231,0.2); color: var(--v4-purple-light); }
.profile-card--fin .profile-card__icon { background: rgba(243,156,18,0.2); color: var(--v4-orange); }

.profile-card__name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-card__hint {
  font-size: 11px;
  opacity: 0.6;
  font-weight: 400;
}

/* ============================================
   BUTTONS V4
   ============================================ */
.btn-v4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--v4-radius-sm);
  text-decoration: none;
  transition: var(--v4-transition);
  cursor: pointer;
  border: none;
}

.btn-v4--primary {
  background: var(--v4-green);
  color: var(--v4-navy);
}

.btn-v4--primary:hover {
  background: var(--v4-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,210,160,0.4);
}

.btn-v4--ghost {
  background: var(--v4-glass);
  border: 1px solid var(--v4-glass-border);
  color: white;
  backdrop-filter: blur(10px);
}

.btn-v4--ghost:hover {
  background: rgba(255,255,255,0.2);
}

.btn-v4--outline-dark {
  background: transparent;
  border: 2px solid var(--v4-navy);
  color: var(--v4-navy);
}

.btn-v4--outline-dark:hover {
  background: var(--v4-navy);
  color: white;
}

/* ============================================
   METRICS V4: Glassmorphism strip
   ============================================ */
.metrics-v4 {
  position: relative;
  margin-top: -50px;
  z-index: 10;
  padding: 0 40px;
}

.metrics-v4__inner {
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  border-radius: var(--v4-radius);
  box-shadow: var(--v4-shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.metrics-v4__item {
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.metrics-v4__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: #eee;
}

.metrics-v4__num {
  font-size: 32px;
  font-weight: 800;
  color: var(--v4-navy);
  margin-bottom: 4px;
}

.metrics-v4__num span { color: var(--v4-green); }

.metrics-v4__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--v4-text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================
   ABOUT V4
   ============================================ */
.about-v4 {
  padding: 80px 40px;
  background: var(--v4-bg);
}

.about-v4__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-v4__eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--v4-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.about-v4__title {
  font-size: 34px;
  font-weight: 800;
  color: var(--v4-navy);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.about-v4__text {
  font-size: 15px;
  color: var(--v4-text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-v4__areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.area-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  background: white;
  border-radius: var(--v4-radius-sm);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: var(--v4-transition);
  text-align: center;
}

.area-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--v4-shadow);
}

.area-chip img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.area-chip span {
  font-size: 10px;
  font-weight: 600;
  color: var(--v4-text);
  line-height: 1.2;
}

/* ============================================
   USER ZONES V4: Full-width alternating
   ============================================ */
.zone-v4 {
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.zone-v4:nth-child(even) {
  background: var(--v4-bg);
}

.zone-v4__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.zone-v4__inner--reverse {
  direction: rtl;
}

.zone-v4__inner--reverse > * {
  direction: ltr;
}

.zone-v4__content {
  position: relative;
}

.zone-v4__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.zone-v4--emp .zone-v4__badge { background: rgba(0,210,160,0.1); color: var(--v4-green-dark); }
.zone-v4--inv .zone-v4__badge { background: rgba(9,132,227,0.1); color: var(--v4-blue); }
.zone-v4--biz .zone-v4__badge { background: rgba(108,92,231,0.1); color: var(--v4-purple); }
.zone-v4--fin .zone-v4__badge { background: rgba(243,156,18,0.1); color: var(--v4-orange); }

.zone-v4__title {
  font-size: 30px;
  font-weight: 800;
  color: var(--v4-navy);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.zone-v4__desc {
  font-size: 15px;
  color: var(--v4-text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* CTA chips v4 */
.chips-v4 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-v4 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--v4-radius-sm);
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--v4-transition);
  border: none;
  cursor: pointer;
}

.chip-v4 i { font-size: 12px; }

.zone-v4--emp .chip-v4 { background: var(--v4-green); color: var(--v4-navy); }
.zone-v4--emp .chip-v4:hover { background: var(--v4-green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,210,160,0.35); }

.zone-v4--inv .chip-v4 { background: var(--v4-blue); color: white; }
.zone-v4--inv .chip-v4:hover { background: #0771c4; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(9,132,227,0.35); }

.zone-v4--biz .chip-v4 { background: var(--v4-purple); color: white; }
.zone-v4--biz .chip-v4:hover { background: #5a4bd1; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(108,92,231,0.35); }

.zone-v4--fin .chip-v4 { background: var(--v4-orange); color: var(--v4-navy); }
.zone-v4--fin .chip-v4:hover { background: #e08e0b; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(243,156,18,0.35); }

/* Visual card v4 */
.visual-v4 {
  position: relative;
}

.visual-v4__card {
  border-radius: var(--v4-radius);
  overflow: hidden;
  box-shadow: var(--v4-shadow);
  transition: var(--v4-transition);
}

.visual-v4__card:hover {
  box-shadow: var(--v4-shadow-hover);
  transform: translateY(-4px);
}

.visual-v4__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.visual-v4__overlay {
  padding: 20px 24px;
  background: white;
  font-size: 13px;
  color: var(--v4-text-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.visual-v4__overlay i {
  color: var(--v4-green);
  font-size: 16px;
}

/* Decorative dot accent */
.visual-v4__accent {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  opacity: 0.15;
  z-index: -1;
}

.zone-v4--emp .visual-v4__accent { background: var(--v4-green); top: -20px; right: -20px; }
.zone-v4--inv .visual-v4__accent { background: var(--v4-blue); bottom: -20px; left: -20px; }
.zone-v4--biz .visual-v4__accent { background: var(--v4-purple); top: -20px; right: -20px; }
.zone-v4--fin .visual-v4__accent { background: var(--v4-orange); bottom: -20px; left: -20px; }

/* ============================================
   CTA FINAL V4
   ============================================ */
.cta-v4 {
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--v4-navy);
  color: white;
}

.cta-v4__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    var(--v4-navy) 0%,
    var(--v4-navy-light) 50%,
    var(--v4-purple) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
}

.cta-v4__content {
  position: relative;
  z-index: 2;
}

.cta-v4__title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.cta-v4__desc {
  font-size: 16px;
  opacity: 0.7;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-v4__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER V4
   ============================================ */
.footer-v4 {
  background: #080a2e;
  color: rgba(255,255,255,0.6);
  padding: 40px;
  text-align: center;
}

.footer-v4__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-v4__logo {
  height: 40px;
  margin: 0 auto 16px;
  display: block;
  opacity: 0.5;
}

.footer-v4__text {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-v4__text a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}

.footer-v4__text a:hover { color: var(--v4-green); }

.footer-v4__social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-v4__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--v4-transition);
}

.footer-v4__social a:hover {
  background: var(--v4-green);
  color: var(--v4-navy);
}

/* ============================================
   RESPONSIVE V4
   ============================================ */
@media (max-width: 900px) {
  .hero-v4__content {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    gap: 40px;
  }

  .hero-v4__title { font-size: 34px; }

  .hero-v4__cards {
    max-width: 400px;
  }

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

  .about-v4__inner,
  .zone-v4__inner,
  .zone-v4__inner--reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    direction: ltr;
  }

  .about-v4__areas-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .zone-v4__title { font-size: 24px; }

  .visual-v4 { max-width: 450px; }

  .cta-v4__title { font-size: 26px; }
}

@media (max-width: 500px) {
  .hero-v4__title { font-size: 28px; }

  .hero-v4__cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .profile-card { padding: 20px 14px; }
  .profile-card__icon { width: 40px; height: 40px; font-size: 18px; }

  .metrics-v4 { padding: 0 16px; }
  .metrics-v4__num { font-size: 26px; }

  .about-v4 { padding: 50px 20px; }
  .about-v4__title { font-size: 26px; }
  .about-v4__areas-grid { grid-template-columns: repeat(3, 1fr); }

  .zone-v4 { padding: 50px 20px; }

  .cta-v4 { padding: 60px 20px; }
}


/* ============================================
   WORDPRESS / GUTENBERG OVERRIDES
   ============================================ */

/* Site structure */
.site-header {
  background: var(--navy-dark);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.site-header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  padding: 0 20px;
}

/* WordPress nav menus — mapeo de clases WP a clases del diseño */
.nav.menu { display: flex; align-items: center; gap: 0; list-style: none; }
.nav.menu > li { position: relative; list-style: none; }
.nav.menu > li > a { display: block; padding: 10px 16px; color: var(--white); font-size: 14px; font-weight: 500; border-bottom: 3px solid transparent; transition: all 0.3s ease; }
.nav.menu > li:hover > a,
.nav.menu > li.current-menu-item > a,
.nav.menu > li.current-menu-ancestor > a { border-bottom-color: var(--v4-green); color: var(--v4-green); }
.nav.menu .sub-menu { position: absolute; top: 100%; left: 0; min-width: 220px; background: white; box-shadow: 0 4px 20px rgba(0,0,0,0.15); border-radius: 0 0 4px 4px; opacity: 0; visibility: hidden; transform: translateY(-5px); transition: all 0.3s ease; z-index: 9999; list-style: none; padding: 0; }
.nav.menu > li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav.menu .sub-menu li { list-style: none; }
.nav.menu .sub-menu a { display: block; padding: 10px 20px; color: var(--gray-dark); font-size: 13px; border-bottom: 1px solid var(--gray-bg); transition: all 0.2s ease; }
.nav.menu .sub-menu a:hover { background: var(--gray-bg); color: var(--v4-green); padding-left: 24px; }

/* Gutenberg editor */
.wp-site-blocks { padding: 0; }
.page-content { max-width: 860px; margin: 0 auto; padding: 60px 20px; }
.page-content > * + * { margin-top: 20px; }
.page-content h1, .page-content h2, .page-content h3, .page-content h4 { color: var(--v4-navy); font-weight: 700; line-height: 1.3; }
.page-content h1 { font-size: 32px; } .page-content h2 { font-size: 26px; } .page-content h3 { font-size: 21px; } .page-content h4 { font-size: 18px; }
.page-content p { font-size: 16px; color: var(--v4-text-light); line-height: 1.8; }
.page-content a { color: var(--v4-green-dark); text-decoration: underline; text-underline-offset: 3px; }
.page-content a:hover { color: var(--v4-navy); }
.page-content ul, .page-content ol { padding-left: 24px; }
.page-content li { font-size: 15px; color: var(--v4-text-light); line-height: 1.8; list-style: disc; }
.page-content ol li { list-style: decimal; }
.page-content blockquote { border-left: 4px solid var(--v4-green); padding: 16px 24px; background: var(--v4-bg); border-radius: 0 var(--v4-radius-sm) var(--v4-radius-sm) 0; font-style: italic; color: var(--v4-text-light); }
.page-content img { border-radius: var(--v4-radius-sm); }
.wp-block-button__link { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--v4-green); color: var(--v4-navy) !important; font-weight: 600; border-radius: var(--v4-radius-sm); text-decoration: none !important; transition: var(--v4-transition); }
.wp-block-button__link:hover { background: var(--v4-green-dark); transform: translateY(-2px); }
.alignwide { margin-left: calc(-1 * (860px - 100%) / 2); margin-right: calc(-1 * (860px - 100%) / 2); max-width: 1200px; }
.alignfull { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); max-width: 100vw; width: 100vw; }

/* Page header (páginas internas) */
.page-header { background: linear-gradient(135deg, var(--v4-navy), var(--v4-navy-light) 60%, var(--v4-purple)); color: white; padding: 70px 20px; text-align: center; }
.page-header__title { font-size: 36px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.5px; }
.page-header__breadcrumb { font-size: 13px; opacity: 0.65; }
.page-header__breadcrumb a { color: white; opacity: 0.85; }

/* Archive / posts grid */
.archive-section { max-width: 1200px; margin: 60px auto; padding: 0 20px; }
.archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.post-card { background: white; border-radius: var(--v4-radius); overflow: hidden; box-shadow: var(--v4-shadow); transition: var(--v4-transition); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--v4-shadow-hover); }
.post-card__thumb img { width: 100%; height: 200px; object-fit: cover; }
.post-card__body { padding: 24px; }
.post-card__meta { font-size: 12px; color: var(--v4-text-light); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.post-card__title { font-size: 17px; font-weight: 700; color: var(--v4-navy); margin-bottom: 10px; line-height: 1.3; }
.post-card__title a { color: inherit; text-decoration: none; }
.post-card__title a:hover { color: var(--v4-green-dark); }
.post-card__excerpt { font-size: 14px; color: var(--v4-text-light); line-height: 1.6; }

/* 404 */
.not-found-section { text-align: center; padding: 100px 20px; }
.not-found-section .error-code { font-size: 100px; font-weight: 800; color: var(--v4-green); line-height: 1; margin-bottom: 16px; }
.not-found-section h1 { font-size: 28px; color: var(--v4-navy); margin-bottom: 16px; }
.not-found-section p { color: var(--v4-text-light); margin-bottom: 32px; }

/* Site footer */
.site-footer { background: #080a2e; color: rgba(255,255,255,0.6); padding: 40px; text-align: center; }

/* ============================================
   SERVICE CARD GRID (Preincubación / Incubación)
   ============================================ */
.service-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  text-align: center;
  margin: 40px 0;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card__img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.service-card__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-dark);
  line-height: 1.5;
}

.service-card__desc {
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.5;
}

/* ============================================
   FUNDING (Financiamiento)
   ============================================ */
/* Organismos Públicos — label + botones en fila */
.funding-link-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.funding-link-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.funding-link-label {
  min-width: 90px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-dark);
  padding-top: 10px;
  flex-shrink: 0;
}

.funding-link-item .funding-btn {
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .funding-link-item { flex-direction: column; gap: 8px; }
  .funding-link-label { padding-top: 0; }
}

.funding-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.funding-role {
  background: var(--gray-bg);
  border-radius: 8px;
  padding: 36px 30px;
  text-align: center;
}

.funding-role__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.funding-role__text {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.7;
}

.funding-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 30px 0;
}

.funding-stage {
  text-align: center;
  padding: 24px 16px;
  border-radius: 8px;
  background: var(--navy-dark);
  color: var(--white);
}

.funding-stage__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

.funding-opportunities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 30px 0;
}

.funding-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--green);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.funding-btn:hover {
  background: var(--green-hover);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================
   TERCER NIVEL DE DROPDOWN
   ============================================ */
.nav__dropdown .nav__item {
  position: relative;
}

.nav__dropdown .nav__dropdown {
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 0;
}

@media (max-width: 768px) {
  .funding-roles,
  .funding-stages { grid-template-columns: 1fr; }

  .nav__dropdown .nav__dropdown {
    left: 0;
    top: auto;
    border-radius: 4px;
    margin-top: 4px;
    margin-left: 16px;
  }
}

/* ==========================================
   PROJECTS LOGO GRID
   ========================================== */
.projects-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  margin: 40px auto;
}

.project-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.project-logo-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  padding: 10px;
  transition: box-shadow 0.25s;
}

.project-logo-item:hover img {
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.project-logo-caption {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.3;
}

@media (max-width: 600px) {
  .projects-logos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================
   STARTUP MODAL
   ========================================== */
.startup-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.startup-modal.is-open {
  display: flex;
}

.startup-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.startup-modal__box {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px 36px;
  z-index: 1;
}

.startup-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--gray-mid);
  transition: color 0.2s;
}

.startup-modal__close:hover { color: var(--navy-dark); }

.startup-modal__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e8e8;
}

.startup-modal__logo {
  max-width: 160px;
  max-height: 100px;
  object-fit: contain;
}

.startup-modal__name {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-dark);
  letter-spacing: 1px;
  margin: 0;
}

.startup-modal__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-bottom: 16px;
}

.startup-modal__meta-item {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.5;
}

.startup-modal__meta-item strong {
  color: var(--navy-dark);
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.startup-modal__desc {
  font-size: 15px;
  color: var(--navy-dark);
  line-height: 1.7;
  margin: 16px 0;
  padding: 16px;
  background: var(--gray-bg, #f5f7f9);
  border-radius: 8px;
  border-left: 3px solid var(--green);
}

.startup-modal__section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-mid);
  margin: 24px 0 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.startup-modal__team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.team-member {
  text-align: center;
  padding: 20px 16px;
  background: var(--gray-bg, #f5f7f9);
  border-radius: 8px;
}

.team-member__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 10px;
  display: block;
}

.team-member__photo--placeholder {
  background: var(--navy-dark, #1a2e4a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
}

.team-member__name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 4px;
}

.team-member__role {
  font-size: 12px;
  color: var(--gray-mid);
  margin: 0;
  line-height: 1.5;
}

.startup-modal__tagline {
  font-size: 13px;
  color: var(--gray-mid);
  font-style: italic;
  margin: 0;
}

.startup-modal__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 12px 0 20px;
}

.startup-modal__contact a {
  font-size: 13px;
  color: var(--green);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.startup-modal__contact a:hover { text-decoration: underline; }

.startup-awards {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 13px;
}

.startup-awards th {
  background: var(--navy-dark);
  color: var(--white);
  padding: 8px 12px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.startup-awards td {
  padding: 8px 12px;
  border-bottom: 1px solid #eee;
  color: var(--gray-mid);
  vertical-align: top;
}

.startup-awards td:first-child {
  font-weight: 700;
  color: var(--navy-dark);
  white-space: nowrap;
}

.startup-awards tr:last-child td { border-bottom: none; }

.startup-awards tr:nth-child(even) td { background: var(--gray-bg, #f5f7f9); }

.team-member__spec {
  font-size: 11px;
  color: var(--green);
  margin: 3px 0 0;
  font-style: italic;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .startup-modal__meta { grid-template-columns: 1fr; }
  .startup-modal__team { grid-template-columns: 1fr; }
  .startup-modal__box { padding: 28px 20px; }
  .startups-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}

/* ==========================================
   ACTIVIDADES INSTITUCIONALES
   ========================================== */
.actividades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 28px;
  margin: 40px 0;
}

.actividad-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 36px 24px;
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.actividad-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.10);
  border-color: var(--green);
  color: inherit;
  text-decoration: none;
}

.actividad-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.actividad-card__icon i {
  font-size: 24px;
  color: var(--white);
}

.actividad-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0;
  line-height: 1.3;
}

.actividad-card__desc {
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.6;
  margin: 0;
}

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

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