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

  :root {
      --navy: #112040;
      /* rgb(0.07,0.13,0.25) */
      --navy-mid: #1C477E;
      /* rgb(0.11,0.28,0.49) */
      --teal: #063231;
      /* rgb(0.02,0.20,0.19) */
      --light-bg: #F1F7FF;
      /* rgb(0.95,0.97,1.00) */
      --white: #ffffff;
      --linkedin: #4B9ED9;
      /* rgb(0.29,0.62,0.85) */
      --stat-blue: #1F3B8A;
      /* rgb(0.12,0.23,0.54) */
      --transition: 0.3s ease;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Open Sans', sans-serif;
      background: var(--light-bg);
      color: var(--teal);
      -webkit-font-smoothing: antialiased;
  }

  /* ── TOP BAR (inside dark header, above nav) ─────────────────── */
  .topbar {
      background: var(--navy);
      width: 100%;
      padding: 16px 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
  }

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

  .topbar__item {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 8px;
      color: var(--white);
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 26px;
      text-decoration: none;
  }

  .topbar__item svg {
      flex-shrink: 0;
  }

  .topbar__social {
      display: flex;
      align-items: center;
      gap: 8px;
  }

  .topbar__social-btn {
      width: 44px;
      height: 44px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--linkedin);
      transition: opacity var(--transition);
      text-decoration: none;
  }

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

  .topbar__social-btn:hover {
      opacity: 0.8;
  }

  /* ── NAV ──────────────────────────────────────────────────────── */
  .nav {
      background: var(--navy);
      width: 100%;
      padding: 0 80px;
      display: flex;
      align-items: center;
      gap: 10px;
      height: 64px;
  }

  .nav__logo {
      display: flex;
      align-items: center;
      text-decoration: none;
  }

  /* FUNDES wordmark — white SVG from Figma vectors (simplified) */
  .nav__logo-svg {
      height: 32px;
      fill: var(--white);
  }

  /* ── DARK HERO SECTION ────────────────────────────────────────── */
  .hero {
      background: var(--navy);
      width: 100%;
      padding: 40px 80px 84px;
      display: flex;
      flex-direction: column;
      gap: 106px;
      overflow: visible;
      height: auto;
  }

  /* Book + text row */
  .hero__body {
      display: flex;
      align-items: center;
      gap: 0;
      width: 1280px;
      max-width: 100%;
      margin: 0 auto;
  }

  /* Book illustration (left) */
  .hero__book {
      flex-shrink: 0;
      width: 454px;
      height: 509px;
      position: relative;
  }

  .hero__book-cover {
      width: 360px;
      height: 463px;
      background: var(--white);
      border-radius: 4px;
      box-shadow: -8px 8px 32px rgba(0, 0, 0, 0.45), 4px -2px 0 2px #e0e8f0;
      position: absolute;
      right: 0;
      top: 0;
      overflow: hidden;
      display: flex;
      flex-direction: column;
  }

  .hero__book-spine {
      position: absolute;
      left: 0;
      top: 16px;
      width: 22px;
      height: 489px;
      background: linear-gradient(to right, #b0bdd0, #d8e2ef);
      border-radius: 2px 0 0 2px;
  }

  .hero__book-cover-inner {
      flex: 1;
      background: linear-gradient(160deg, var(--navy) 0%, #1a3a6e 60%, #0d2a50 100%);
      padding: 32px 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
  }

  .hero__book-badge {
      display: inline-block;
      background: var(--linkedin);
      color: var(--white);
      font-family: 'Poppins', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 3px;
      width: fit-content;
  }

  .hero__book-title {
      font-family: 'Poppins', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.3;
      margin-top: 20px;
  }

  .hero__book-logo {
      font-family: 'Poppins', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.6);
      letter-spacing: 2px;
  }

  /* Text content (right) */
  .hero__text {
      flex: 1;
      padding-left: 80px;
      padding-right: 80px;
      display: flex;
      flex-direction: column;
      gap: 24px;
  }

  .hero__title {
      font-family: 'Poppins', sans-serif;
      font-size: 64px;
      font-weight: 600;
      line-height: 1.1;
      color: var(--white);
  }

  .hero__desc {
      font-family: 'Open Sans', sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 1.7;
      color: var(--white);
  }

  .btn-download {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--linkedin);
      color: var(--navy);
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 600;
      padding: 16px 32px;
      border-radius: 8px;
      text-decoration: none;
      width: fit-content;
      border: none;
      cursor: pointer;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  }

  .btn-download:hover {
      background: #3a8ec8;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(75, 158, 217, 0.35);
  }

  .btn-download svg {
      flex-shrink: 0;
  }

  /* Authors section (inside dark hero) */
  .authors {
      width: 1280px;
      max-width: 100%;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 40px;
  }

  .authors__title {
      font-family: 'Poppins', sans-serif;
      font-size: 36px;
      font-weight: 600;
      color: var(--white);
  }

  .authors__grid {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
  }

  .author-card {

      border-radius: 8px;
      padding: 15px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      width: 259px;
  }

  .author-card__photo {
      width: 196px;
      height: 196px;
      border-radius: 6px;
      object-fit: cover;
      object-position: center top;
      filter: saturate(0);
  }

  .author-card__info {
      display: flex;
      flex-direction: column;
      gap: 8px;
  }

  .author-card__name-row {
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .author-card__name {
      font-family: 'Poppins', sans-serif;
      font-size: 24px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
  }

  .author-card__linkedin {
      width: 29px;
      height: 29px;
      background: var(--linkedin);
      border-radius: 5px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      flex-shrink: 0;
      transition: opacity var(--transition);
  }

  .author-card__linkedin:hover {
      opacity: 0.8;
  }

  .author-card__about {
      display: flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      color: var(--white);
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 700;
      background: none;
      border: none;
  }

  .author-card__about svg {
      transition: transform var(--transition);
  }

  .author-card__about.is-open svg {
      transform: rotate(180deg);
  }

  .author-card__bio {
      display: none;
      font-family: 'Open Sans', sans-serif;
      font-size: 14px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.75);
      padding-top: 8px;
  }

  .author-card__bio.is-open {
      display: block;
  }

  /* Hallazgos section (inside dark hero) */
  .hallazgos {
      width: 1280px;
      max-width: 100%;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 40px;
  }

  .hallazgos__title {
      font-family: 'Poppins', sans-serif;
      font-size: 32px;
      font-weight: 600;
      color: var(--white);
  }

  .hallazgos__grid {
      display: flex;
      gap: 32px;
  }

  .hallazgo-card {
      flex: 1;
      background: var(--white);
      border-radius: 8px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
  }

  .hallazgo-card__number {
      font-family: 'Poppins', sans-serif;
      font-size: 64px;
      font-weight: 700;
      color: #1E3A8A;
      line-height: 1;
  }

  .hallazgo-card__label {
      font-family: 'Poppins', sans-serif;
      font-size: 24px;
      font-weight: 600;
      color: var(--navy-mid);
  }

  /* ── SOBRE FUNDES SECTION ─────────────────────────────────────── */
  .sobre {
      background: var(--light-bg);
      padding: 87px 80px;
      display: flex;
      flex-direction: column;
      gap: 87px;
  }

  .sobre__header {
      display: flex;
      flex-direction: column;
      gap: 40px;
  }

  .sobre__title {
      font-family: 'Poppins', sans-serif;
      font-size: 48px;
      font-weight: 700;
      color: var(--navy-mid);
  }

  .sobre__subtitle-block {
      display: flex;
      flex-direction: column;
      gap: 24px;
  }

  .sobre__subtitle {
      font-family: 'Poppins', sans-serif;
      font-size: 32px;
      font-weight: 700;
      color: var(--navy-mid);
  }

  .sobre__body {
      font-family: 'Open Sans', sans-serif;
      font-size: 18px;
      line-height: 1.7;
      color: var(--teal);
      max-width: 1280px;
  }

  /* Stats row */
  .stats-row {
      display: flex;
      gap: 24px;
  }

  .stat-card {
      background: var(--navy);
      border-radius: 8px;
      padding: 40px 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      flex: 1;
  }

  .stat-card__number {
      font-family: 'Poppins', sans-serif;
      font-size: 48px;
      font-weight: 500;
      color: var(--white);
      line-height: 1;
  }

  .stat-card__label {
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 600;
      color: var(--white);
      line-height: 1.3;
  }

  /* ── PARTNERS SECTION (Section light) ────────────────────────── */
  .partners {
      background: var(--light-bg);
      padding: 0 80px 87px;
  }

  .partners__inner {
      display: flex;
      flex-direction: column;
      gap: 40px;
  }

  .partners__counter {
      display: flex;
      align-items: baseline;
      gap: 0;
      justify-content: center;
  }

  .partners__counter-text {
      font-family: 'Poppins', sans-serif;
      font-size: 80px;
      font-weight: 700;
      color: #28283F;
      line-height: 1;
  }

  .ctcen {
      text-align: center;
  }

  /* Animated counter number */
  .counter-wrapper {
      height: 96px;
      overflow: hidden;
      display: inline-block;
      vertical-align: bottom;
  }

  .counter-strip {
      display: flex;
      flex-direction: column;
      transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .counter-strip span {
      font-family: 'Poppins', sans-serif;
      font-size: 80px;
      font-weight: 700;
      color: #28283F;
      height: 96px;
      line-height: 96px;
      display: block;
      text-align: center;
  }

  .partners__tagline {
      font-family: 'Poppins', sans-serif;
      font-size: 24px;
      font-weight: 700;
      color: #28283F;
  }

  /* Logo carousel */
  .logos-track-outer {
      overflow: hidden;
      width: 100%;
  }

  .logos-track {
      display: flex;
      align-items: center;
      gap: 80px;
      animation: marquee 22s linear infinite;
      width: max-content;
  }

  .logos-track:hover {
      animation-play-state: paused;
  }

  @keyframes marquee {
      0% {
          transform: translateX(0);
      }

      100% {
          transform: translateX(-50%);
      }
  }

  .logos-track img {
      height: 48px;
      filter: grayscale(1) opacity(0.65);
      object-fit: contain;
      transition: filter var(--transition);
  }

  .logos-track img:hover {
      filter: grayscale(0) opacity(1);
  }

  /* ── SABER MÁS BUTTON ─────────────────────────────────────────── */
  .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--linkedin);
      color: var(--navy);
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 600;
      padding: 16px 32px;
      border-radius: 8px;
      text-decoration: none;
      width: fit-content;
      border: none;
      cursor: pointer;
      margin: 0 auto;
      display: flex;
      transition: background var(--transition), transform var(--transition);
  }

  .btn-primary:hover {
      background: #3a8ec8;
      transform: translateY(-2px);
  }

  /* ── CTA / NEWSLETTER ─────────────────────────────────────────── */
  .cta {
      position: relative;
      background: var(--navy);
      padding: 130px 125px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .cta__waves {
      position: absolute;
      inset: 0;
      pointer-events: none;
  }


  .cta__waves::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url(/wp-content/uploads/2026/03/patron-de-lineas-blanco.png) no-repeat left -63% top 129%,
          url(/wp-content/uploads/2026/03/patron-de-lineas-blanco.png) no-repeat right -46% bottom 138%;
      opacity: 0.15;
      pointer-events: none;
  }



  .cta__inner {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1272px;
      display: flex;
      flex-direction: column;
      gap: 60px;
  }

  .cta__title {
      font-family: 'Poppins', sans-serif;
      font-size: 36px;
      font-weight: 600;
      color: var(--white);
      text-align: center;
  }

  .cta__form {
      display: flex;
      flex-direction: column;
      gap: 48px;
  }

  .cta__fields {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
  }

  .cta__input {
      flex: 1;
      min-width: 355px;
      height: 56px;
      background: white;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      padding: 0 24px;
      font-family: 'Open Sans', sans-serif;
      font-size: 16px;
      color: black;
      outline: none;
      transition: border-color var(--transition);
  }

  .cta__input::placeholder {
      color: black;
  }

  .cta__input:focus {
      border-color: var(--linkedin);
  }

  .cta__bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
      flex-direction: column;
  }

  .cta__checkbox {
      display: flex;
      align-items: center;
      gap: 16px;
      cursor: pointer;
      color: var(--white);
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      font-weight: 600;
  }

  .cta__checkbox input {
      width: 20px;
      height: 20px;
      accent-color: var(--linkedin);
      cursor: pointer;
  }

  .btn-subscribe {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--linkedin);
      color: var(--navy);
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 600;
      padding: 16px 32px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition: background var(--transition), transform var(--transition);
  }

  .btn-subscribe:hover {
      background: #3a8ec8;
      transform: translateY(-2px);
  }



  /* ── RESPONSIVE ───────────────────────────────────────────────── */
  @media (max-width: 1200px) {
      .hero {
          padding: 40px 40px 60px;
      }

      .topbar {
          padding: 16px 40px;
      }

      .nav {
          padding: 0 40px;
      }

      .hero__title {
          font-size: 48px;
      }

      .hero__book {
          width: 320px;
          height: 400px;
      }

      .hero__book-cover {
          width: 280px;
          height: 380px;
      }

      .hallazgos__grid {
          flex-wrap: wrap;
      }

      .sobre {
          padding: 60px 40px;
      }

      .partners {
          padding: 0 40px 60px;
      }

      .cta {
          padding: 80px 80px;
      }

      .stats-row {
          flex-wrap: wrap;
      }
  }

  @media (max-width: 900px) {
      .topbar {
          display: none;
      }

      .hero__body {
          flex-direction: column;
          align-items: flex-start;
      }

      .hero__book {
          width: 280px;
          height: 360px;
          margin-bottom: 32px;
      }

      .hero__text {
          padding-left: 0;
          padding-right: 0;
      }

      .hero__title {
          font-size: 36px;
      }

      .authors__grid {
          flex-wrap: wrap;
      }

      .author-card {
          width: calc(50% - 20px);
      }

      .hallazgos__grid {
          flex-direction: column;
      }

      .stats-row {
          flex-wrap: wrap;
      }

      .stat-card {
          min-width: calc(50% - 12px);
      }

      .cta {
          padding: 80px 40px;
      }

      .cta__fields {
          flex-direction: column;
      }
  }

  @media (max-width: 600px) {
      .nav {
          padding: 0 20px;
      }

      .hero {
          padding: 32px 20px 48px;
      }

      .hero__title {
          font-size: 28px;
      }

      .hero__desc {
          font-size: 15px;
      }

      .hero__book {
          width: 220px;
          height: 300px;
      }

      .hero__book-cover {
          width: 210px;
          height: 290px;
      }

      .authors__grid {
          flex-direction: column;
      }

      .author-card {
          width: 100%;
      }

      .sobre {
          padding: 48px 20px;
      }

      .sobre__title {
          font-size: 32px;
      }

      .sobre__subtitle {
          font-size: 22px;
      }

      .partners {
          padding: 0 20px 48px;
      }

      .partners__counter-text {
          font-size: 25px;
      }

      .counter-wrapper {
          height: 68px;
      }

      .hero__book img {
          width: 100%;
      }

      .counter-strip span {
          font-size: 25px;
          height: 68px;
          line-height: 68px;
      }

      .hallazgo-card__number {
          font-size: 48px;
      }

      .stat-card__number {
          font-size: 36px;
      }

      .cta {
          padding: 64px 20px;
      }

      .cta__title {
          font-size: 24px;
      }

      .cta__bottom {
          flex-direction: column;
          align-items: flex-start;
      }
  }

  form {
      background-color: rgb(229 237 248 / 0%);
      width: 100%;
      padding: 40px;
      border-radius: 10px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }