w/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", -apple-system, Roboto, Helvetica, sans-serif;
  background-color: #fff;
  color: #18181b;
}

.page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left: 80px;
  padding-right: 80px;
  margin-left: auto;
  margin-right: auto;
}

.page-content {
  align-items: stretch;
  background-color: #fff;
  display: flex;
  width: 100%;
  max-width: 1920px;
  flex-direction: column;
  overflow: hidden;
  justify-content: start;
}

/* Header styles */
.main-header {
  justify-content: center;
  align-items: stretch;
  border-bottom: 1px solid #e4e4e7;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
  background-color: #fff;
  display: flex;
  width: 100%;
  flex-direction: column;
}

/* Stock ticker */
.stock-ticker {
  background-color: rgba(30, 34, 45, 1);
  display: flex;
  min-height: 40px;
  width: 100%;
  padding: 8px 0;
  align-items: stretch;
  overflow: hidden;
  font-family: Roboto, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 400;
  justify-content: center;
}

.ticker-item {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  min-width: 240px;
  padding: 0 16px;
  align-items: center;
  gap: 8px;
  justify-content: start;
  height: 100%;
}

.ticker-symbol {
  color: #f4f4f5;
  font-feature-settings: "liga" off, "clig" off;
  font-size: 16px;
  font-weight: 500;
  align-self: stretch;
  margin: auto 0;
}

.ticker-price {
  align-self: stretch;
  display: flex;
  margin: auto 0;
  align-items: start;
  gap: 2px;
  white-space: nowrap;
  justify-content: start;
}

.price-value {
  color: #f4f4f5;
  font-feature-settings: "liga" off, "clig" off;
  font-size: 16px;
}

.price-indicator {
  color: rgba(238, 144, 3, 1);
  font-size: 10px;
}

.price-change {
  font-size: 16px;
  align-self: stretch;
  margin: auto 0;
}

.price-change.negative {
  color: rgba(242, 54, 69, 1);
}

/* Navigation */
.navigation-container {
  align-self: center;
  position: relative;
  display: flex;
  margin-top: 16px;
  width: 1320px;
  max-width: 100%;
  align-items: stretch;
  gap: 24px;
  font-family: Open Sans, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  justify-content: start;
}

.logo {
  z-index: 0;
  display: flex;
  margin: auto 0;
  width: 206px;
  flex-shrink: 0;
  height: 48px;
}

.bdm-logo-principal-01 {
  background-image: url("URL_LOGO");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.main-nav {
  z-index: 0;
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 16px;
  justify-content: start;
  flex-wrap: wrap;
  height: 100%;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.nav-links {
  align-self: stretch;
  display: flex;
  min-width: 240px;
  margin: auto 0;
  align-items: center;
  gap: 4px;
  color: #3f3f46;
  white-space: nowrap;
  justify-content: start;
  flex-wrap: wrap;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 64px;
}

.nav-link {
  align-self: stretch;
  margin: auto 0;
  padding: 24px 32px;
  gap: 8px;
  color: #3f3f46;
  text-decoration: none;
}

.nav-link.active {
  color: #141414;
}

.nav-link.cta {
  align-self: stretch;
  border-radius: 6px;
  background-color: #00ad57;
  margin: auto 0;
  padding: 16px 32px;
  gap: 8px;
  color: #ffffff;
}

.nav-link-with-icon {
  align-self: stretch;
  display: flex;
  margin: auto 0;
  padding: 24px 32px;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.dropdown-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 16px;
  align-self: stretch;
  margin: auto 0;
  flex-shrink: 0;
}

.nav-divider {
  border: 1px solid #e4e4e7;
  background-color: #e4e4e7;
  align-self: stretch;
  width: 0px;
  flex-shrink: 0;
  height: 73px;
}

.menu-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  align-self: start;
  position: absolute;
  z-index: 0;
  flex-shrink: 0;
  right: -24px;
  bottom: 24px;
  height: 24px;
}

/* Main content */
.main-content {
  align-self: center;
  display: flex;
  margin-top: 64px;
  width: 1140px;
  max-width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
}

/* Hero section */
.hero-section {
  position: relative;
  width: 100%;
  font-family: Open Sans, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 60px;
  color: #18181b;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.09px;
}

.hero-image {
  aspect-ratio: 2.13;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 6px;
  z-index: 0;
}

.hero-title {
  z-index: 0;
  margin-top: 48px;
  font-size: 60px;
  font-weight: 700;
}

.highlight {
  color: rgba(0, 200, 101, 1);
  position: relative;
  display: inline-block;
  z-index: 1;
}

.highlight-bg {
  background-color: rgba(0, 200, 101, 0.2);
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  pointer-events: none;
  transform: scaleX(1.05) scaleY(0.7);
}

.highlight-bg-1 {
  /* No extra styles needed, but keep class for possible future use */
}

.highlight-bg-2 {
  /* No extra styles needed, but keep class for possible future use */
}

/* About section */
.about-section {
  align-items: center;
  background-color: #141414;
  align-self: center;
  display: flex;
  margin-top: 80px;
  width: 100%;
  flex-direction: column;
  font-family: Open Sans, -apple-system, Roboto, Helvetica, sans-serif;
  color: #ffffff;
  text-align: center;
  justify-content: start;
}

.about-content {
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  width: 100%;
  padding: 64px 96px;
  flex-direction: column;
}

.bdm-logo-principal-01-2 {
  background-image: url("URL_LOGO_WHITE");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  min-height: 55px;
  width: 240px;
  max-width: 100%;
}

.about-text {
  align-self: stretch;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  align-self: center;
}

.section-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 29px;
  margin-top: 24px;
}

.learn-more-btn {
  align-self: stretch;
  border-radius: 6px;
  border: 1px solid #fff;
  margin-top: 48px;
  padding: 16px;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

/* History section */
.history-section {
  display: flex;
  flex-direction: column;
  margin-top: 96px;
  width: 100%;
  align-items: flex-start;
  gap: 0;
  overflow: visible;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.history-flex-container {
  display: flex;
  flex-direction: row;
  gap: 48px;
  width: 100%;
  align-items: flex-start;
}

.history-content {
  align-self: start;
  display: flex;
  min-width: 240px;
  flex-direction: column;
  align-items: stretch;
  justify-content: start;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.section-header {
  width: 100%;
  font-family: Open Sans, -apple-system, Roboto, Helvetica, sans-serif;
  font-weight: 700;
}

.section-label {
  color: #00ad57;
  font-size: 18px;
  line-height: 1;
}

.section-title {
  color: #18181b;
  font-size: 40px;
  line-height: 54px;
  letter-spacing: -0.06px;
}

.logo-container {
  align-self: flex-start;
  display: flex;
  margin-top: 32px;
  align-items: flex-start;
  gap: 24px;
  justify-content: flex-start;
}

.history-logo {
  aspect-ratio: 1.42;
  object-fit: contain;
  object-position: center;
  width: 85px;
  flex-shrink: 0;
}

.history-logo-2 {
  aspect-ratio: 1.78;
  object-fit: contain;
  object-position: center;
  width: 107px;
  flex-shrink: 0;
}

.history-image-container {
  min-width: 240px;
  font-family: Open Sans, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  color: #71717a;
  font-weight: 400;
  line-height: 1;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.founders-image {
  aspect-ratio: 0.98;
  object-fit: contain;
  object-position: center;
  width: 100%;
  border-radius: 6px;
}

.image-caption {
  margin-top: 16px;
}

/* Testimonials section */
.testimonials-section {
  margin-top: 96px;
  width: 100%;
}

.section-subtitle {
  color: #3f3f46;
  font-weight: 400;
}

.testimonials-container {
  align-items: stretch;
  border-radius: 6px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.05);
  display: flex;
  margin-top: 48px;
  width: 100%;
  gap: 24px;
  overflow: hidden;
  justify-content: start;
  flex-wrap: wrap;
}

.testimonial-image {
  aspect-ratio: 0.77;
  object-fit: contain;
  object-position: center;
  width: 331px;
  border-radius: 16px;
  min-width: 240px;
  margin: auto 0;
}

.testimonial-content {
  display: flex;
  min-width: 240px;
  padding: 0 24px;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  flex: 1;
  flex-shrink: 1;
  flex-basis: 0%;
}

.testimonial {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  flex: 1;
}

.quote-icon-container {
  border-radius: 6px;
  background-color: rgba(0, 200, 101, 0.05);
  display: flex;
  width: 32px;
  padding: 4px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 32px;
}

.quote-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 100%;
}

.testimonial-text {
  color: #52525b;
  font-family: Open Sans, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 33px;
  margin-top: 16px;
}

.testimonial-divider {
  border: 1px solid #e4e4e7;
  background-color: #e4e4e7;
  min-height: 1px;
  margin-top: 16px;
  width: 100%;
}

.testimonial-author {
  margin-top: 16px;
  width: 100%;
  font-family: Open Sans, -apple-system, Roboto, Helvetica, sans-serif;
  line-height: 1;
}

.author-name {
  color: #18181b;
  text-overflow: ellipsis;
  font-size: 24px;
  font-weight: 700;
}

.author-title {
  color: #52525b;
  font-size: 16px;
  font-weight: 400;
  margin-top: 8px;
}

.author-title strong {
  font-weight: 700;
  color: #52525b;
}

.testimonial-navigation {
  align-self: start;
  display: flex;
  margin-top: 16px;
  align-items: center;
  gap: 32px;
  justify-content: start;
}

.nav-button {
  align-items: center;
  border-radius: 6px;
  background-color: #fafafa;
  align-self: stretch;
  display: flex;
  margin: auto 0;
  padding: 8px;
  gap: 24px;
  justify-content: start;
  width: 40px;
  height: 40px;
  border: none;
  cursor: pointer;
}

.nav-icon {
  aspect-ratio: 1;
  object-fit: contain;
  object-position: center;
  width: 24px;
  align-self: stretch;
  margin: auto 0;
}

.nav-indicator {
  background-color: #e4e4e7;
  border-radius: 50%;
  align-self: stretch;
  display: flex;
  margin: auto 0;
  width: 8px;
  flex-shrink: 0;
  height: 8px;
}

.nav-indicator.active {
  border: 2px solid #00c865;
  background-color: #00c865;
}

.testimonials-slider {
  position: relative;
  width: 100%;
  min-height: 340px;
}

.testimonial-slide {
  display: none;
  transition: opacity 0.5s;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.testimonial-slide.active {
  display: flex;
  opacity: 1;
  position: relative;
}

.testimonials-slider .testimonial-navigation {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  justify-content: center;
}

/* Partners section */
.partners-section {
  justify-content: center;
  align-items: stretch;
  border-radius: 6px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.05);
  align-self: center;
  display: flex;
  margin-top: 96px;
  width: 100%;
  max-width: 1140px;
  padding: 64px 96px;
  flex-direction: column;
}

.partners-content {
  align-self: center;
  width: 900px;
  max-width: 100%;
  font-family: Open Sans, -apple-system, Roboto, Helvetica, sans-serif;
  text-align: center;
}

.partners-grid {
  display: flex;
  margin-top: 48px;
  width: 100%;
  align-items: start;
  gap: 32px 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  font-family: Open Sans, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 16px;
  color: #3f3f46;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  justify-content: start;
  flex-grow: 1;
  flex-shrink: 1;
  width: 157px;
}

.partner-logo {
  aspect-ratio: 2.82;
  object-fit: contain;
  object-position: center;
  width: 179px;
  align-self: center;
  max-width: 100%;
}

.partner-name {
  margin-top: 8px;
}

.partner-logo-container {
  align-self: center;
  display: flex;
  min-height: 63px;
  max-width: 100%;
  width: 178px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partner-logo-special {
  object-fit: contain;
  object-position: center;
  max-width: 100%;
}

/* Media section */
.media-section {
  margin-top: 96px;
  width: 100%;
  font-family: Open Sans, -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 18px;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  justify-items: center;
  align-items: start;
}

.media-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 12px;
  min-width: 0;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1/1;
  box-sizing: border-box;
}

.media-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.media-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  flex: 1;
}

.media-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  flex-wrap: nowrap;
  overflow: hidden;
}

.media-title {
  font-size: 16px;
  font-weight: 700;
  color: #18181b;
  margin: 0;
  flex: 1 1 0;
  text-align: left;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-description {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
  margin-top: 4px;
  color: #52525b;
  font-size: 15px;
  text-align: left;
}

.media-source-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 4px;
}

/* Team section */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 16px;
  width: 220px;
  box-sizing: border-box;
  margin-bottom: 24px;
}

.member-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 12px;
}

.member-bio {
  width: 100%;
  max-height: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  white-space: normal;
  margin-bottom: 16px;
  font-size: 15px;
  color: #52525b;
}

.details-link {
  display: flex;
  align-items: center;
  color: #00ad57;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  gap: 6px;
}

.details-icon {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(44%) sepia(99%) saturate(749%)
    hue-rotate(97deg) brightness(97%) contrast(101%);
}

.backoffice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.backoffice-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 16px;
  width: 220px;
  box-sizing: border-box;
  margin-bottom: 24px;
}

.member-role {
  width: 100%;
  max-height: 48px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
  margin-bottom: 12px;
  font-size: 15px;
  color: #52525b;
  text-align: center;
}

.social-icons {
  display: flex;
  flex-direction: row;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

@media (max-width: 600px) {
  .page-container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .main-content {
    width: 100%;
    margin-top: 32px;
    padding: 0;
  }
  .about-content {
    padding: 32px 8px;
  }
  .hero-title {
    font-size: 32px;
    margin-top: 24px;
  }
  .section-title {
    font-size: 22px;
    line-height: 1.2;
  }
  .section-label {
    font-size: 14px;
  }
  .section-description {
    font-size: 15px;
    margin-top: 12px;
  }
  .hero-image {
    border-radius: 4px;
  }
  .about-section {
    margin-top: 48px;
    padding: 0;
  }
  .history-section {
    margin-top: 48px;
  }
  .history-flex-container {
    flex-direction: column;
  }
  .history-content,
  .history-image-container {
    width: 100%;
    display: block;
  }
  .history-content {
    margin-bottom: 0;
  }
  .history-image-container {
    margin-top: 16px;
  }
  .history-text {
    order: 1;
  }
  .history-image-container {
    order: 2;
    margin-top: 16px;
  }
  .history-content {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .section-header {
    width: 100%;
    text-align: left;
    margin-bottom: 0;
  }
  .founders-image,
  .image-caption {
    width: 100%;
    display: block;
    margin: 0 auto 8px auto;
  }
  .history-text {
    display: block;
    width: 100%;
    margin-top: 8px;
  }
  .history-text-full {
    display: block;
    width: 100%;
    margin-top: 8px;
  }
  .history-flex-container {
    flex-direction: column;
    gap: 16px;
  }
  .history-image-container {
    order: 1;
    width: 100%;
  }
  .history-content {
    order: 2;
    width: 100%;
  }
  .logo-container {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }
  .section-header,
  .history-text,
  .section-description {
    width: 100%;
    text-align: left;
  }
  .testimonials-section {
    margin-top: 48px;
  }
  .testimonials-container {
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }
  .testimonial-image {
    width: 100%;
    min-width: 0;
    border-radius: 8px;
  }
  .testimonial-content {
    padding: 0;
  }
  .testimonials-slider {
    min-height: 0;
  }
  .testimonial-slide {
    position: static;
    width: 100%;
  }
  .partners-section {
    padding: 32px 8px;
    margin-top: 48px;
  }
  .partners-content {
    width: 100%;
  }
  .partners-grid {
    gap: 16px 8px;
  }
  .media-section {
    margin-top: 48px;
  }
  .media-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .media-card {
    max-width: 100%;
    aspect-ratio: unset;
    width: 100%;
    padding: 8px;
  }
  .media-image {
    aspect-ratio: 1/1;
    border-radius: 6px;
  }
  .media-header {
    gap: 6px;
  }
  .media-source-logo {
    width: 24px;
    height: 24px;
  }
  .team-grid,
  .backoffice-grid {
    flex-direction: column;
    gap: 12px;
  }
  .team-member,
  .backoffice-member {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
  }
  .member-image {
    border-radius: 6px;
  }
  .member-bio,
  .member-role {
    font-size: 14px;
    max-height: 72px;
    -webkit-line-clamp: 4;
  }
  .details-link {
    font-size: 15px;
  }
  .details-icon {
    width: 16px;
    height: 16px;
  }
  .social-icons {
    gap: 6px;
  }
  .main-footer {
    padding: 16px 0;
  }
  .footer-content {
    flex-direction: column;
    gap: 16px;
  }
  .footer-links {
    flex-direction: column;
    gap: 8px;
  }
  .footer-column {
    margin-bottom: 8px;
  }
  .logo-banner {
    width: 100vw;
    margin-left: calc(-1 * (100vw - 100%) / 2);
    display: flex;
    justify-content: center;
  }
  .banner-image {
    width: 100vw !important;
    max-width: 100vw;
    height: auto;
    display: block;
  }
}
