/* ==========================================================================
   CSS Variables - Mobile Optimization Values
   ========================================================================== */
:root {
  --mobile-padding-lateral: 40px;
  --mobile-padding-lateral-small: 20px;
  --mobile-title-size: 24px;
  --mobile-text-size: 16px;
  --mobile-card-padding: 1.25rem 1rem;
  --mobile-card-radius: 1rem;
  --mobile-section-padding: 3rem 0;
  --mobile-section-padding-small: 2.5rem 0;
  /* Premium card (Seguridad / Comienza a invertir) - mismo criterio que Bolsa Millonaria */
  --premium-card-gradient: linear-gradient(180deg, rgb(24, 82, 52) 0%, rgb(21, 54, 37) 22%, rgb(23, 35, 29) 48%, rgb(26, 26, 26) 72%, #191919 100%);
  --about-radius-xl: 1.5rem;
  --about-transition: all 0.3s ease;
}

/* ==========================================================================
   Button Styles
   ========================================================================== */
.button-solid {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  color: #191919;
  padding: 16px 32px;
  gap: 8px;
  width: 171px;
  height: 56px;
  border-radius: 30px;
  cursor: pointer;
  border: 0;
  background: #02FB7E;
  touch-action: manipulation;
  transition: all 0.5s;
}

.button-solid:hover {
  background: #F2FFF9;
}

.button-solid:disabled {
  background: #333333;
  color: #B0B0B0;
}

.button-solid:disabled .button-solid-icon {
  filter: invert(95%) sepia(0%) saturate(2581%) hue-rotate(0deg) brightness(76%) contrast(89%);
}

.button-stroke {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
  color: #02FB7E;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding: 16px 32px;
  gap: 8px;
  width: 171px;
  height: 56px;
  border: 1px solid #02FB7E;
  border-radius: 30px;
  cursor: pointer;
  background: transparent;
  touch-action: manipulation;
  transition: all 0.5s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.button-stroke .button-stroke-icon {
  filter: invert(77%) sepia(80%) saturate(2895%) hue-rotate(95deg) brightness(105%) contrast(98%);
}

/* ==========================================================================
   About Header Section - Estilos copiados de FAQ
   ========================================================================== */

/* AI Assistant Badge */
.ai-assistant-badge {
  margin: 0 auto;
  padding: 8px 16px;
  border-radius: 9999px; /* rounded-full */
  border: 1px solid rgb(44, 44, 44); /* border-neutral-800 - más visible */
  background-color: rgba(25, 25, 25, 0.7); /* bg-neutral-900/50 - más visible */
  margin-bottom: 24px; /* mb-6 */
  margin-top: 20px; /* Removed top margin */
  width: fit-content;
  position: relative;
  z-index: 10;
  line-height: 1;
}

.sparkles-icon {
  width: 16px;
  height: 16px;
  color: rgb(2, 251, 126); /* brand color */
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
}

.ai-assistant-text {
  font-size: 14px; /* text-sm */
  color: rgb(227, 227, 227); /* text-neutral-300 - más claro */
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

/* About Header */
.about-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 16px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about-title {
  font-size: 60px;
  font-weight: bold;
  font-family: "DM Sans", sans-serif;
  color: rgb(227, 227, 227) !important; /* text-neutral-300 - force visibility */
  margin: 0 0 16px 0;
  padding: 0;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

.about-title-highlight {
  color: rgb(2, 251, 126);
}

.about-subtitle {
  font-size: 18px;
  font-family: "DM Sans", sans-serif;
  color: rgb(170, 170, 170) !important; /* text-secondary - más suave, menos cansino */
  margin: 0 0 32px 0;
  padding: 1% 10%;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

/* About CTA Button */
.about-cta {
  display: flex;
  justify-content: center;
  margin: 0;
  width: 100%;
}

.about-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 140px;
  height: 48px;
  padding: 0 24px;
  background-color: rgb(2, 251, 126);
  color: rgb(25, 25, 25);
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: nowrap;
}

.about-cta-button:hover {
  background-color: rgb(3, 202, 98);
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(2, 251, 126, 0.2);
}

.about-cta-button:active {
  transform: translateY(0);
}

.about-cta-arrow {
  width: 16px;
  height: 16px;
  color: rgb(25, 25, 25);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.about-cta-button:hover .about-cta-arrow {
  transform: translateX(2px);
}

/* ==========================================================================
   About Statistics Section
   ========================================================================== */

.about-stats {
  padding: 0 0 2.5rem 0;
  margin-top: -0.5rem;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem; /* gap-6 */
  max-width: 70rem; /* Reducido de 80rem para hacerlas más estrechas */
  margin: 0 auto; /* mx-auto */
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .about-stats-grid {
    grid-template-columns: repeat(3, 1fr); /* md:grid-cols-3 */
  }
}

.about-stats-card {
  backdrop-filter: blur(12px); /* backdrop-blur-md */
  border: 1px solid;
  border-radius: 1.5rem; /* rounded-3xl */
  padding: 1.75rem 1.5rem; /* Más padding vertical (1.75rem) que horizontal (1.5rem) */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-stats-text-top {
  font-size: 0.875rem; /* text-sm */
  color: rgb(163, 163, 163); /* text-neutral-400 */
  margin-bottom: 0.75rem; /* mb-3 */
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  margin-top: 0;
}

.about-stats-number {
  font-size: 3rem; /* text-5xl */
  font-weight: bold;
  margin-bottom: 0.75rem; /* mb-3 */
  color: rgb(2, 251, 126);
  font-family: "DM Sans", sans-serif;
  line-height: 1;
}

@media (min-width: 768px) {
  .about-stats-number {
    font-size: 3.75rem; /* md:text-6xl */
  }
}

.about-stats-text-bottom {
  font-size: 0.875rem; /* text-sm */
  color: rgb(163, 163, 163); /* text-neutral-400 */
  position: relative;
  z-index: 10;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  margin: 0;
}

/* ==========================================================================
   About Partners Section
   ========================================================================== */

.about-partners {
  padding: 4rem 0; /* py-16 */
}

.about-partners-container {
  max-width: 1200px; /* container */
  margin: 0 auto; /* mx-auto */
  padding: 0 1rem; /* px-4 */
}

/* Header */
.about-partners-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-partners-title {
  font-size: 1.875rem; /* text-3xl */
  font-weight: bold;
  color: rgb(255, 255, 255); /* text-white */
  margin-bottom: 0.75rem; /* mb-3 */
  font-family: "DM Sans", sans-serif;
  margin-top: 0;
}

@media (min-width: 768px) {
  .about-partners-title {
    font-size: 2.25rem; /* md:text-4xl */
  }
}

.about-partners-subtitle {
  color: rgb(163, 163, 163); /* text-neutral-400 */
  font-size: 1.125rem; /* text-lg */
  max-width: 42rem; /* max-w-2xl */
  margin: 0 auto; /* mx-auto */
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

/* Carousel */
.about-partners-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem; /* mb-12 */
}

.about-partners-scroll {
  display: flex;
  animation: scroll-carousel 20s linear infinite;
}

@keyframes scroll-carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Partner Card */
.about-partner-card {
  flex-shrink: 0;
  margin: 0 0.75rem; /* mx-3 */
}

.about-partner-content {
  background-color: rgba(23, 23, 23, 0.3); /* bg-neutral-900/30 */
  border: 1px solid rgb(38, 38, 38); /* border-neutral-800 */
  border-radius: 0.5rem; /* rounded-lg */
  padding: 1.5rem; /* p-6 */
  height: 8rem; /* h-32 */
  width: 12rem; /* w-48 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease; /* transition-all duration-300 */
}

.about-partner-content:hover {
  border-color: rgba(2, 251, 126, 0.5); /* hover:border-green-500/50 */
}

.about-partner-logo {
  max-height: 2.5rem; /* max-h-10 */
  width: auto; /* w-auto */
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.about-partner-card:hover .about-partner-logo {
  opacity: 1; /* group-hover:opacity-100 */
}

.about-partner-type {
  color: rgb(115, 115, 115); /* text-neutral-500 */
  font-size: 0.75rem; /* text-xs */
  margin-top: 0.5rem; /* mt-2 */
  font-family: "DM Sans", sans-serif;
}

/* Trust Badges */
.about-trust-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem; /* gap-4 */
  margin-top: 3rem; /* mt-12 */
}

.about-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem; /* px-4 py-2 */
  background-color: rgba(23, 23, 23, 0.5); /* bg-neutral-900/50 */
  border-radius: 0.5rem; /* rounded-lg */
  border: 1px solid rgb(38, 38, 38); /* border-neutral-800 */
}

.about-trust-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.about-trust-text {
  color: rgb(212, 212, 212); /* text-neutral-300 */
  font-size: 0.875rem; /* text-sm */
  font-family: "DM Sans", sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-title {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .about-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 0.5rem;
  }

  .about-header {
    margin-bottom: 1.5rem;
    padding: 0 20px;
  }

  /* Stats Section - Mobile Optimization */
  .about-stats {
    padding: 2.5rem 0;
  }

  .about-stats-grid {
    padding: 0 var(--mobile-padding-lateral);
    max-width: 100%;
    gap: 1rem;
  }

  .about-stats-card {
    padding: var(--mobile-card-padding);
    border-radius: var(--mobile-card-radius);
  }

  .about-stats-number {
    font-size: 2.25rem;
  }

  .about-stats-text-top,
  .about-stats-text-bottom {
    font-size: 0.8125rem;
  }

  /* Partners Section - Mobile Optimization */
  .about-partners {
    padding: 3rem 0;
  }

  .about-partners-container {
    padding: 0 var(--mobile-padding-lateral-small);
  }

  .about-partners-header {
    padding: 0 var(--mobile-padding-lateral-small);
  }

  .about-partners-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .about-partners-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0;
  }

  /* Media Section (Prensa) - Mobile Optimization */
  .about-media-section {
    padding: 3rem 0;
  }

  .about-media-header {
    padding: 0 var(--mobile-padding-lateral);
    margin-bottom: 1.5rem;
  }

  .about-media-title {
    font-size: var(--mobile-title-size);
    margin-bottom: 0.5rem;
  }

  .about-media-subtitle {
    font-size: var(--mobile-text-size);
    line-height: 1.5;
    padding: 0;
  }

  .about-media-grid {
    max-width: 100%;
    padding: 0 var(--mobile-padding-lateral);
    gap: 1rem;
  }

  .about-media-card {
    padding: var(--mobile-card-padding);
    min-height: auto;
    border-radius: var(--mobile-card-radius);
  }

  .about-media-logo {
    height: 3.5rem;
    top: 1.25rem;
    left: 1rem;
    border-radius: 0.5rem;
  }

  .about-media-card-title {
    font-size: 1rem;
    margin-top: 4.5rem;
    line-height: 1.3;
  }

  .about-media-link {
    font-size: 0.8125rem;
    margin-top: 0.75rem;
  }

  /* Investors Section - Mobile Optimization */
  .about-investors-section {
    padding: 3rem 0;
  }

  .about-investors-header {
    padding: 0 var(--mobile-padding-lateral);
    margin-bottom: 0;
  }

  .about-investors-title {
    font-size: var(--mobile-title-size);
    margin-bottom: 0.5rem;
  }

  .about-investors-subtitle {
    font-size: var(--mobile-text-size);
    line-height: 1.5;
    padding: 0;
    margin-bottom: 4.5rem;
  }

  .about-investors-grid {
    max-width: 100%;
    padding: 0 var(--mobile-padding-lateral);
    gap: 1rem;
    margin-top: 80px;
  }

  .about-investors-card-content {
    padding: var(--mobile-card-padding);
    min-height: auto;
    border-radius: var(--mobile-card-radius);
    box-shadow: none;
  }

  .about-investors-card:hover .about-investors-card-content {
    border-color: rgba(2, 251, 126, 0.1);
    transform: none;
    box-shadow: none;
  }

  .about-investors-logo-container {
    height: 3.5rem;
    margin-bottom: 0.75rem;
  }

  .about-investors-logo {
    max-height: 3.5rem;
    border-radius: 0.5rem;
  }

  .about-investors-name {
    font-size: 16px;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  .about-investors-description {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Timeline Section - Hidden on Mobile */
  .about-timeline-section {
    display: none;
  }

  /* Security Section - Mobile Optimization */
  .about-security-section {
    padding: 3rem 0;
  }

  .about-security-grid {
    padding: 0 var(--mobile-padding-lateral);
    gap: 2rem;
  }

  .about-security-content {
    text-align: center;
  }

  .about-security-title {
    font-size: var(--mobile-title-size);
    margin-bottom: 0.75rem;
    text-align: center;
  }

  .about-security-separator {
    margin: 0 auto 0.75rem;
  }

  .about-security-description {
    font-size: var(--mobile-text-size);
    line-height: 1.5;
    text-align: center;
  }

  .about-security-features {
    text-align: left;
  }

  /* CTA Section - Mobile Optimization */
  .about-cta-section {
    padding: 3rem 0;
  }

  .about-cta-grid {
    padding: 0 var(--mobile-padding-lateral);
    gap: 2rem;
  }

  .about-cta-content {
    text-align: center;
  }

  .about-cta-title {
    font-size: var(--mobile-title-size);
    line-height: 1.3;
    text-align: center;
  }

  .about-cta-description {
    font-size: var(--mobile-text-size);
    line-height: 1.5;
    text-align: center;
  }
}

.button-stroke:hover {
  color: #F2FFF9;
  border: 1px solid #F2FFF9;
}

.button-stroke:hover .button-stroke-icon {
  filter: invert(89%) sepia(13%) saturate(281%) hue-rotate(80deg) brightness(110%) contrast(109%);
}

.button-stroke:disabled {
  color: #B0B0B0;
  border: 1px solid #B0B0B0;
}

.button-stroke:disabled .button-stroke-icon {
  filter: invert(94%) sepia(0%) saturate(306%) hue-rotate(209deg) brightness(78%) contrast(79%);
}

.container {
  display: flex;
  gap: 132px;
  flex-direction: column;
  align-items: center;
}

.we-are {
  display: flex;
  flex-direction: column;
  padding-top: 52px;
  gap: 52px;
  padding-left: 16px;
  padding-right: 16px;
  align-items: center;
}

.we-are div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.we-are .title {
  display: inline;
  font-family: "Formula Condensed";
  font-style: normal;
  font-weight: 700;
  font-size: 48px;
  line-height: 130%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0px;
  color: #FFFFFF;
}

.we-are .title span {
  color: #02FB7E;
}

.we-are p {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  color: #E3E3E3;
  margin: 0px;
}

.we-are img {
  width: 267.14px;
  height: 220px;
}

.allies {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 16px;
  padding-right: 16px;
}

.allies-title {
  position: relative;
}

.allies-title .title {
  display: inline;
  position: relative;
  font-family: "Formula Condensed";
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 130%;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0px;
  color: #E3E3E3;
  z-index: 1;
}

.allies-title hr {
  position: absolute;
  width: 115px;
  height: 24px;
  left: 128px;
  bottom: 7px;
  border: 0px;
  background-color: rgba(3, 151, 74, 0.6);
  z-index: 0;
}

.allies p {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #E3E3E3;
  margin: 0px;
}

.carousel-we-are {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 132px;
  text-align: center;
  gap: 48px;
  height: 144px;
}

.slider {
  width: 100%;
  height: auto;
  margin: 0px;
  overflow: hidden;
}

.slider .slide-track {
  display: flex;
  animation: scroll 40s linear infinite;
  -webkit-animation: scroll 40s linear infinite;
  width: 1965.28px;
  height: 50px;
  gap: 32px;
  padding-left: 32px;
}

.slider .slide img {
  height: 50px;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1190px);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1190px);
  }
}

/* Media section */
.about-media-section {
    padding: 4rem 0;
}

.about-media-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-media-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin-bottom: 0.75rem;
    font-family: "DM Sans", sans-serif;
}

.about-media-subtitle {
    color: rgb(163, 163, 163);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
    font-family: "DM Sans", sans-serif;
    padding-bottom: 2.5rem;
}

.about-media-grid {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-media-card {
    background: rgba(23, 23, 23, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(2, 251, 126, 0.1);
    border-radius: 1.5rem;
    padding: 1.75rem 1.5rem;
    min-height: 14rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.about-media-card:hover {
    border-color: rgba(115, 115, 115, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(2, 251, 126, 0.05);
    transform: translateY(-0.25rem);
}

.about-media-logo {
    position: absolute;
    top: 1.75rem;
    left: 1.5rem;
    height: 5.5rem;
    width: auto;
    border-radius: 0.75rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.about-media-card:hover .about-media-logo {
    opacity: 1;
}

.about-media-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin-bottom: auto;
    line-height: 1.4;
    margin-top: 6rem;
    font-family: "DM Sans", sans-serif;
}

.about-media-link {
    color: rgb(163, 163, 163);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    font-family: "DM Sans", sans-serif;
    margin-top: auto;
    align-self: flex-start;
}

.about-media-link:hover {
    color: rgb(2, 251, 126);
}

.about-media-link-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.about-media-link:hover .about-media-link-icon {
    transform: translate(2px, -2px);
}


/* Responsive adjustments for media section */
@media (min-width: 768px) {
    .about-media-title {
        font-size: 2.25rem;
    }

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

/* Mobile adjustments for media section - Consolidated */

@media (max-width: 480px) {
    .about-media-section {
        padding: var(--mobile-section-padding-small);
    }

    .about-media-header {
        padding: 0 var(--mobile-padding-lateral);
    }

    .about-media-title {
        font-size: var(--mobile-title-size);
        margin-bottom: 0.5rem;
    }

    .about-media-subtitle {
        font-size: var(--mobile-text-size);
        line-height: 1.5;
        padding: 0;
    }

    .about-media-grid {
        padding: 0 var(--mobile-padding-lateral);
        gap: 1rem;
    }

    .about-media-card {
        padding: var(--mobile-card-padding);
        min-height: auto;
        border-radius: var(--mobile-card-radius);
    }

    .about-media-logo {
        height: 3rem;
        top: 1rem;
        left: 1rem;
        border-radius: 0.5rem;
    }

    .about-media-card-title {
        font-size: 0.9375rem;
        margin-top: 4rem;
        line-height: 1.3;
    }

    .about-media-link {
        font-size: 0.75rem;
    }
}

/* Timeline section */
.about-timeline-section {
    padding: 4rem 0;
}

.about-timeline-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.about-timeline-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin-bottom: 0.75rem;
    font-family: "DM Sans", sans-serif;
}

.about-timeline-subtitle {
    color: rgb(163, 163, 163);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
    font-family: "DM Sans", sans-serif;
}

/* Badge común para años */
.about-timeline-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: bold;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
    background-color: rgba(2, 251, 126, 0.1);
    color: rgb(2, 251, 126);
    border: 1px solid rgba(2, 251, 126, 0.2);
    font-family: "DM Sans", sans-serif;
}

/* Animación fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* VERSIÓN MÓVIL */
.about-timeline-mobile {
    display: block;
    position: relative;
}

.about-timeline-mobile-line {
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(2, 251, 126, 0.3), rgba(2, 251, 126, 0.3), transparent);
}

.about-timeline-mobile-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-timeline-mobile-card {
    position: relative;
    padding-left: 3rem;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.about-timeline-mobile-dot {
    position: absolute;
    left: 13px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgb(2, 251, 126);
    background-color: rgb(25, 25, 25);
    box-shadow: 0 0 0 3px rgba(2, 251, 126, 0.1);
}

.about-timeline-mobile-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin-bottom: 0.5rem;
    font-family: "DM Sans", sans-serif;
}

.about-timeline-mobile-description {
    color: rgb(163, 163, 163);
    font-size: 0.875rem;
    line-height: 1.625;
    font-family: "DM Sans", sans-serif;
}

/* VERSIÓN DESKTOP */
.about-timeline-desktop {
    display: none;
    position: relative;
    padding: 0 11rem;
}

.about-timeline-desktop-line {
    position: absolute;
    left: 10%;
    right: 10%;
    top: 50%;
    height: 2px;
    transform: translateY(-50%);
    background: linear-gradient(to right, transparent, rgba(2, 251, 126, 0.3), rgba(2, 251, 126, 0.3), transparent);
}

.about-timeline-desktop-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.about-timeline-desktop-card {
    position: relative;
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.about-timeline-desktop-card-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 6rem;
}

.about-timeline-desktop-card-top .about-timeline-desktop-content {
    text-align: center;
    margin-bottom: 5rem;
}

.about-timeline-desktop-card-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 6rem;
}

.about-timeline-desktop-card-bottom .about-timeline-desktop-content {
    text-align: center;
    margin-top: 5rem;
}

.about-timeline-desktop-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgb(2, 251, 126);
    background-color: rgb(25, 25, 25);
    box-shadow: 0 0 0 3px rgba(2, 251, 126, 0.1);
    transition: all 0.3s ease;
}

.about-timeline-desktop-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin-bottom: 0.5rem;
    font-family: "DM Sans", sans-serif;
}

.about-timeline-desktop-description {
    color: rgb(163, 163, 163);
    font-size: 0.75rem;
    line-height: 1.625;
    font-family: "DM Sans", sans-serif;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .about-timeline-title {
        font-size: 2.25rem;
    }

    .about-timeline-mobile {
        display: none;
    }

    .about-timeline-desktop {
        display: block;
    }
}

/* Investors section */
.about-investors-section {
    padding: 4rem 0;
}

.about-investors-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-investors-title {
    font-size: 60px;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin-bottom: 0.75rem;
    font-family: "DM Sans", sans-serif;
}

.about-investors-subtitle {
    color: rgb(163, 163, 163);
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
    font-family: "DM Sans", sans-serif;
}

.about-investors-separator {
    height: 0.25rem;
    width: 6rem;
    margin: 1rem auto 0;
    border-radius: 9999px;
    background-color: rgb(2, 251, 126);
}

.about-investors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 70rem;
    margin: 0 auto;
}

.about-investors-card {
    position: relative;
    opacity: 1;
}

.about-investors-card-content {
    background: rgba(23, 23, 23, 0.3);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(2, 251, 126, 0.1);
    border-radius: 1.5rem;
    padding: 1.5rem;
    height: auto;
    min-height: 12rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.about-investors-card:hover .about-investors-card-content {
    border-color: rgba(2, 251, 126, 0.3);
    transform: translateY(-2px);
}

.about-investors-logo-container {
    height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.about-investors-logo {
    max-height: 5.5rem;
    width: auto;
    object-fit: contain;
    border-radius: 0.75rem;
}

.about-investors-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin-bottom: 0.5rem;
    text-align: center;
    font-family: "DM Sans", sans-serif;
}

.about-investors-description {
    color: rgb(163, 163, 163);
    font-size: 0.875rem;
    margin-bottom: auto;
    text-align: center;
    font-family: "DM Sans", sans-serif;
    flex-grow: 1;
}

.about-investors-badge-container {
    text-align: center;
    margin-top: 1rem;
    flex-shrink: 0;
}

.about-investors-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: rgba(2, 251, 126, 0.1);
    color: rgb(2, 251, 126);
    border: 1px solid rgba(2, 251, 126, 0.2);
    font-family: "DM Sans", sans-serif;
}

/* Responsive adjustments for investors section */
@media (min-width: 768px) {
    .about-investors-title {
        font-size: 2.25rem;
    }

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

@media (max-width: 480px) {
    .about-investors-section {
        padding: var(--mobile-section-padding-small);
    }

    .about-investors-header {
        padding: 0 var(--mobile-padding-lateral);
        margin-bottom: 0;
    }

    .about-investors-subtitle {
        margin-bottom: 4rem;
        font-size: var(--mobile-text-size);
    }

    .about-investors-title {
        font-size: var(--mobile-title-size);
        margin-bottom: 0.5rem;
    }

    .about-investors-grid {
        padding: 0 var(--mobile-padding-lateral);
        gap: 1rem;
        margin-top: 80px;
    }

    .about-investors-card-content {
        padding: var(--mobile-card-padding);
        min-height: auto;
        border-radius: var(--mobile-card-radius);
        box-shadow: none;
    }

    .about-investors-card:hover .about-investors-card-content {
        border-color: rgba(2, 251, 126, 0.1);
        transform: none;
        box-shadow: none;
    }

    .about-investors-logo-container {
        height: 3rem;
        margin-bottom: 0.625rem;
    }

    .about-investors-logo {
        max-height: 3rem;
        border-radius: 0.5rem;
    }

    .about-investors-name {
        font-size: 15px;
        margin-bottom: 0.4375rem;
        font-weight: 600;
    }

    .about-investors-description {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Security section */
.about-security-section {
    padding: 5rem 0;
    position: relative;
}

.about-security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
}

.about-security-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-security-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: rgb(255, 255, 255);
    margin-bottom: 0.25rem;
    font-family: "DM Sans", sans-serif;
}

.about-security-separator {
    height: 0.25rem;
    width: 6rem;
    border-radius: 9999px;
    background-color: rgb(2, 251, 126);
    margin-bottom: 0.75rem;
}

.about-security-description {
    color: rgb(163, 163, 163);
    font-size: 1.125rem;
    line-height: 1.625;
    font-family: "DM Sans", sans-serif;
}

.about-security-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.about-security-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-security-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
    background-color: rgba(2, 251, 126, 0.1);
}

.about-security-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: rgb(2, 251, 126);
}

.about-security-feature-text {
    flex: 1;
}

.about-security-feature-title {
    color: rgb(255, 255, 255);
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-family: "DM Sans", sans-serif;
}

.about-security-feature-description {
    color: rgb(163, 163, 163);
    font-size: 0.875rem;
    font-family: "DM Sans", sans-serif;
}

.about-security-image-container {
    position: relative;
}

/* Premium card: mismo tamaño que antes (1:1 como CTA / imagen anterior), imagen con cover */
.about-security-image-card {
    padding: 0;
    overflow: hidden;
    aspect-ratio: 1;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    background: var(--premium-card-gradient);
    border-radius: var(--about-radius-xl);
    border: none;
    outline: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18), 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: box-shadow var(--about-transition);
}

.about-security-image-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-security-image-area {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    display: block;
}

.about-security-image {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
    display: block;
    vertical-align: top;
}

/* Responsive adjustments for security section */
@media (min-width: 1024px) {
    .about-security-title {
        font-size: 2.25rem;
    }

    .about-security-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .about-security-section {
        padding: var(--mobile-section-padding-small);
    }

    .about-security-grid {
        padding: 0 var(--mobile-padding-lateral);
        gap: 1.75rem;
    }

    .about-security-content {
        text-align: center;
    }

    .about-security-title {
        font-size: var(--mobile-title-size);
        text-align: center;
    }

    .about-security-separator {
        margin: 0 auto 0.75rem;
    }

    .about-security-description {
        font-size: var(--mobile-text-size);
        text-align: center;
    }

    .about-security-features {
        text-align: left;
        gap: 0.75rem;
    }

    .about-security-feature {
        gap: 0.75rem;
    }

    .about-security-feature-icon {
        width: 2rem;
        height: 2rem;
    }

    .about-security-icon {
        width: 1rem;
        height: 1rem;
    }
}

/* CTA section */
.about-cta-section {
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.about-cta-container {
    position: relative;
    z-index: 10;
}

.about-cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
}

.about-cta-image-column {
    position: relative;
    order: 2;
}

/* Premium card: mismo estilo que Seguridad (gradiente, sin bordes, imagen al borde) */
.about-cta-image-card {
    padding: 0;
    overflow: hidden;
    aspect-ratio: 1;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    background: var(--premium-card-gradient);
    border-radius: var(--about-radius-xl);
    border: none;
    outline: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18), 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: box-shadow var(--about-transition);
}

.about-cta-image-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.about-cta-image-area {
    width: 100%;
    height: 100%;
    border-radius: 0;
    overflow: hidden;
    display: block;
}

.about-cta-image {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    display: block;
    vertical-align: top;
}

.about-cta-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    order: 1;
}

.about-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    background-color: rgba(2, 251, 126, 0.1);
    border: 1px solid rgba(2, 251, 126, 0.2);
    width: fit-content;
}

.about-cta-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: rgb(2, 251, 126);
    animation: pulse 2s infinite;
}

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

.about-cta-badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgb(2, 251, 126);
    font-family: "DM Sans", sans-serif;
}

.about-cta-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: rgb(255, 255, 255);
    line-height: 1.25;
    font-family: "DM Sans", sans-serif;
}

.about-cta-title-highlight {
    color: rgb(2, 251, 126);
}

.about-cta-description {
    color: rgb(163, 163, 163);
    line-height: 1.625;
    font-family: "DM Sans", sans-serif;
}

.about-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-cta-button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    height: 3rem;
    border-radius: 0.375rem;
    padding: 0 2rem;
    background-color: rgb(2, 251, 126);
    color: rgb(25, 25, 25);
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.about-cta-button-primary:hover {
    background-color: rgb(3, 202, 98);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.about-cta-button-primary:hover .about-cta-button-icon {
    transform: translateX(0.25rem);
}

.about-cta-button-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s ease;
}

.about-cta-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    height: 3rem;
    border-radius: 0.375rem;
    padding: 0 2rem;
    background-color: transparent;
    color: rgb(2, 251, 126);
    border: 2px solid rgb(2, 251, 126);
    text-decoration: none;
    font-family: "DM Sans", sans-serif;
}

.about-cta-button-secondary:hover {
    background-color: rgba(2, 251, 126, 0.1);
}

/* Responsive adjustments for CTA section */
@media (min-width: 640px) {
    .about-cta-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .about-cta-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .about-cta-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-cta-image-column {
        order: 1;
    }

    .about-cta-content {
        order: 2;
    }
}

@media (max-width: 480px) {
    .about-cta-section {
        padding: var(--mobile-section-padding-small);
    }

    .about-cta-grid {
        padding: 0 var(--mobile-padding-lateral);
        gap: 1.75rem;
    }

    .about-cta-content {
        text-align: center;
        gap: 1.25rem;
    }

    .about-cta-badge {
        margin: 0 auto;
    }

    .about-cta-title {
        font-size: var(--mobile-title-size);
        text-align: center;
    }

    .about-cta-description {
        font-size: var(--mobile-text-size);
        text-align: center;
    }

    .about-cta-buttons {
        gap: 0.75rem;
    }
}

/*# sourceMappingURL=about.css.map */
