:root {
  /* Espacios y paleta principal */
  --margin-h: 64px;
  --green-neutral: #6da08d;
  --green-medium: #269069;
  --green-high: #0bcf7d;
  --blue-dark: #0f2631;
  --white-neutral: #cecece;
  --bg-gradient-start: #0d3d39;
  --bg-gradient-end: #0f2631;
  --testimonial-accent-color: #f35874;

  /* Breakpoints */
  --bp-desktop: 1440px;
  --bp-tablet: 1024px;
  --bp-mobile: 430px;

  /* Container padding */
  --container-padding: clamp(16px, 5vw, 64px);
}

/* =======================================================================================================================
   RESET & BASE
   ======================================================================================================================= */
body {
  margin: 0;
  padding: 0;
  font-family: "Wix Madefor Display", -apple-system, Roboto, Helvetica,
    sans-serif;
  color: var(--white-neutral);
  background: var(--blue-dark);
}

/* Base styles to prevent horizontal scroll */
html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* =======================================================================================================================
   HEADER & FOOTER
   ======================================================================================================================= */

/* Header styles are now in layout.css */
/* Footer styles are now in layout.css */

/* =======================================================================================================================
   HERO SOLANA AI SECTION
   ======================================================================================================================= */
.hero-solana-ai {
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(122deg, #0F2631 0%, #0D3D39 50%, rgba(55, 74, 83, 0.00) 100%);
  padding: 128px var(--container-padding);
  box-sizing: border-box;
}

.hero-solana-ai__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-sizing: border-box;
  padding: 0;
}

.hero-solana-ai__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 80px var(--container-padding);
}

.hero-solana-ai__title {
  font-family: Inter, sans-serif;
  font-size: 65px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(
    122deg,
    #fff 0%,
    #0bcf7d 50%,
    rgba(55, 74, 83, 0) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: heroTitleAppear 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s forwards;
}

.hero-solana-ai__title .hero-solana-ai__title--white {
  background: #BAC0C7;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-solana-ai__title span {
  display: block;
  background: linear-gradient(116deg, #22C55E 34.13%, #3B82F6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes heroTitleAppear {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  50% {
    opacity: 0.7;
    transform: translateY(10px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-solana-ai__description {
  color: #BAC0C7;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
  max-width: 600px;
}

.hero-solana-ai__actions {
  display: flex;
  gap: 24px;
  margin: 0;
}

.hero-solana-ai__btn {
  border-radius: 10px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  padding: 12px 32px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: box-shadow 0.2s, background 0.2s;
  max-width: 350px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-solana-ai__btn--outline {
  border: 1px solid #0BCF7D;
  color: #0BCF7D;
  background: transparent;
}

.hero-solana-ai__btn--gradient {
  background: linear-gradient(106deg, #2BF29F 0%, #09A664 100%);
  color: #151515;
  border: none;
  max-width: 350px;
  width: 100%;
}

.hero-solana-ai__btn--outline:hover {
  background: rgba(11, 207, 125, 0.08);
}

.hero-solana-ai__btn--gradient:hover {
  box-shadow: 0 2px 16px 0 rgba(43, 242, 159, 0.15);
}

.hero-solana-ai__features {
  display: flex;
  gap: 32px;
  margin-top: 8px;
}

.hero-solana-ai__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #868E96;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
}

.hero-solana-ai__feature svg {
  flex-shrink: 0;
}

.hero-solana-ai__image-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hero-solana-ai__image-mobile {
  display: none;
}

.hero-solana-ai__image-desktop img {
  max-width: 800px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(21, 21, 21, 0.12);
}

/* =======================================================================================================================
   SOLANA PLATFORM SECTION
   ======================================================================================================================= */
.solana-platform-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 80px var(--container-padding);
  background: radial-gradient(
    85% 140% at 85% 11.01%,
    #28524f 1.33%,
    #0f2631 76.63%
  );
  box-sizing: border-box;
}

.solana-platform-section__container {
  width: 100%;
  max-width: 1280px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  gap: 40px;
}

.solana-platform-section__title {
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
  background: linear-gradient(90deg, #BDFEE3 15.45%, #5CDFA8 50.25%, #A169E7 85.05%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.solana-platform-section__cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.solana-platform-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid #5B6167;
  background: #0A1921;
  box-shadow: 0px 3px 2.5px 0px rgba(15, 38, 49, 0.30);
  padding: 20px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.5s;
}

.solana-platform-card:hover {
  background: #0F2733;
  border: 1px solid #5CDFA8;
}

.solana-platform-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.solana-platform-card__icon {
  display: flex;
  width: 160px;
  height: 170px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 5px;
}

.solana-platform-card__title {
  color: #09A664;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  margin: 0 0 8px 0;
}

.solana-platform-card:hover .solana-platform-card__title {
  color: #5CDFA8;
}

.solana-platform-card__desc {
  color: #C8CACC;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
}

.solana-platform-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

/* =======================================================================================================================
   IDEA MAINNET SECTION
   ======================================================================================================================= */
.idea-mainnet-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background: #0A1921;
  padding: 80px var(--container-padding);
  box-sizing: border-box;
}

.idea-mainnet-section__container {
  width: 100%;
  max-width: 1280px;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  gap: 40px;
}

.idea-mainnet-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.idea-mainnet-section__title {
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
  background: linear-gradient(90deg, #BDFEE3 15.45%, #0BCF7D 50.25%, #9846FF 85.05%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.idea-mainnet-section__line {
  width: 200px;
  height: 5px;
  border-radius: 9999px;
  background: #269069;
  margin: 0 auto 0px auto;
}

.idea-mainnet-section__desc {
  color: #BAC0C7;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  margin: 0;
}

.idea-mainnet-section__cards {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.idea-mainnet-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  border: 1px solid #173B4C;
  background: #0F2631;
  padding: 20px 15px;
  box-sizing: border-box;
  min-width: 0;
  gap: 20px;
}

.idea-mainnet-card--purple:hover {
  border: 1px solid #c084fc;
  background: linear-gradient(180deg, #0f2631 0%, #3a284d 100%);
  box-shadow: 0px 6px 13px 0px #c084fc26, 0px 23px 23px 0px #c084fc21,
    0px 52px 31px 0px #c084fc14, 0px 93px 37px 0px #c084fc05,
    0px 145px 41px 0px #c084fc02;
}

.idea-mainnet-card--green:hover {
  border: 1px solid #0BCF7D;
  background: linear-gradient(180deg, #0f2631 0%, #022617 100%);
  box-shadow: 0px 8px 18px 0px #0BCF7D1A, 0px 33px 33px 0px #0BCF7D17,
    0px 74px 45px 0px #0BCF7D0D, 0px 132px 53px 0px #0BCF7B03,
    0px 206px 58px 0px #0BCF7B02;
}
    
.idea-mainnet-card--blue:hover {
  border: 1px solid #60A5FA;
  background: linear-gradient(180deg, #0F2631 0%, #173B4D 100%);
  box-shadow: 0px 9px 19px 0px #60A5FA1A, 0px 35px 35px 0px #60A5FA17,
    0px 78px 47px 0px #60A5FA0D, 0px 139px 56px 0px #60A5FA03,
    0px 218px 61px 0px #60A5FA02;
}

.idea-mainnet-card--pink:hover {
  border: 1px solid #F472B6;
  background: linear-gradient(180deg, #0F2631 0%, #331826 100%);
  box-shadow: 0px 9px 19px 0px #F472B61A, 0px 35px 35px 0px #F472B617,  
    0px 78px 47px 0px #F472B60D, 0px 139px 56px 0px #F472B603,
    0px 218px 61px 0px #F472B602;
}

.idea-mainnet-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.idea-mainnet-card__icon--purple svg {
  width: 80px;
  height: 80px;
  display: block;
}
.idea-mainnet-card__icon--green svg {
  width: 80px;
  height: 80px;
  display: block;
}
.idea-mainnet-card__icon--blue svg {
  width: 80px;
  height: 80px;
  display: block;
}
.idea-mainnet-card__icon--pink svg {
  width: 80px;
  height: 80px;
  display: block;
}

.idea-mainnet-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.idea-mainnet-card__title {
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  white-space: nowrap;
  margin: 0;
}
.idea-mainnet-card__title--purple {
  color: #C084FC;
}
.idea-mainnet-card__title--green {
  color: #4ADE80;
}
.idea-mainnet-card__title--blue {
  color: #60A5FA;
}
.idea-mainnet-card__title--pink {
  color: #F472B6;
}

.idea-mainnet-card__desc {
  color: #BAC0C7;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px;
  margin: 0;
}

.carousel-spacer {
  display: none;
}

/* =======================================================================================================================
   TESTIMONIALS SECTION
   ======================================================================================================================= */
.testimonials-section {
  width: 100%;
  background: #0C2029;
  padding: 80px 0;
  box-sizing: border-box;
}

.testimonials-section__container {
  gap: 20px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
  padding: 0 var(--container-padding);
  overflow-x: visible;
}

.testimonial-card {
  background-color: #17384c;
  border: 1px solid #5b6167;
  border-radius: 10px;
  padding: 20px;
  width: 400px;
  max-width: 400px;
  min-width: 400px;
  height: 240px;
  min-height: 240px;
  max-height: 240px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.testimonial-card:hover {
  background: #1F4F66;
  border: 1px solid #60A5FA;
}

.testimonial-card__text {
  color: #BAC0C7;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 5px;
  position: relative;
  z-index: 100;
  letter-spacing: 0.05em;
}

.testimonial-card__quote-mark {
  color: #18494e;
  font-size: 80px;
  font-weight: bold;
  position: absolute;
  left: -25px;
  top: 10px;
  font-weight: 400;
  font-style: italic;
  font-family: 'Inter', monospace;
  z-index: -1;
}

.testimonial-card__user {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1F1F1F;
  line-height: 25px;
  text-align: center;
  opacity: 1;
  flex-shrink: 0;
}

.testimonial-card__user-info {
  display: flex;
  flex-direction: column;
}

.testimonial-card__user-name {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--testimonial-accent-color);
  line-height: 20px;
}

.testimonial-card__logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-card__logo {
  height: 15px;
  width: auto;
  color: var(--testimonial-accent-color);
}

.testimonial-card__logo-name {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--testimonial-accent-color);
  line-height: 20px;
}

.testimonial-card__yellow-badge {
  display: inline-flex;
  align-items: center;
  color: #FDE047;
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  border-radius: 5px;
  background: rgba(253, 224, 71, 0.10);
  padding: 2px 8px 2px 4px;
}

/* =======================================================================================================================
   BRANDS SECTION
   ======================================================================================================================= */
.brands-section {
  overflow: hidden;
  width: 100%;
  background: #0C2029;
  padding: 0 0 80px 0;
  box-sizing: border-box;
  position: relative;
}

.brands-section__carousel {
  display: flex;
  align-items: center;
  width: max-content;
  animation: brands-carousel 30s linear infinite;
  gap: 0;
}

.brands-section__carousel-inner {
  padding-right: 120px;
  display: flex;
  align-items: center;
  gap: 120px;
}

.brand-logo {
  width: auto;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

.brand-logo img, .brand-logo svg {
  max-width: 200px;
  max-height: 48px;
  width: 100%;
  height: auto;
  display: block;
}

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

/* =======================================================================================================================
   CÓDIGO HUB SECTION
   ======================================================================================================================= */
.codigo-hub-section {
  width: 100%;
  background: linear-gradient(150deg, #0F2631 19.87%, rgba(4, 69, 42, 0.50) 47.29%, rgba(15, 38, 49, 0.50) 83.25%);
  padding: 80px 0;
  box-sizing: border-box;
}

.codigo-hub-section__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.codigo-hub-section__title {
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px;
  background: linear-gradient(90deg, #BDFEE3 15.45%, #0BCF7D 50.25%, #9846FF 85.05%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.codigo-hub-section__line {
  width: 220px;
  height: 6px;
  border-radius: 9999px;
  background: var(--green-medium, #269069);
  margin: 0 auto 32px auto;
}

.codigo-hub-section__desc {
  color: var(--black-200, #BAC0C7);
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  margin-bottom: 56px;
}

.codigo-hub-section__image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.codigo-hub-section__image-bg {
  border-radius: 20px;
  border: var(--stroke-weight-1, 1px) solid var(--product-default, #0BCF7D);
  background: rgba(21, 21, 21, 0.00);
  box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 900px;
}

.codigo-hub-section__image {
  border-radius: 10px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* =======================================================================================================================
   BUILD DEPLOY SECTION
   ======================================================================================================================= */
.build-deploy-section {
  width: 100%;
  background: linear-gradient(135deg, rgba(20, 83, 45, 0.50) 0%, rgba(30, 58, 138, 0.50) 100%);
  padding: 80px var(--container-padding);
  box-sizing: border-box;
}

.build-deploy-section__container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  padding: 0 24px;
}

.build-deploy-section__title {
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  margin-bottom: 24px;
}

.build-deploy-section__title-gradient {
  background: linear-gradient(90deg, #BDFEE3 15.45%, #0BCF7D 50.25%, #9846FF 85.05%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.build-deploy-section__title-white {
  color: var(--black-100, #F8F8F8);
  font-family: Inter, sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
}

.build-deploy-section__desc {
  color: var(--black-200, #BAC0C7);
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  margin-bottom: 48px;
}

.build-deploy-section__actions {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.build-deploy-section__btn {
  border-radius: 10px;
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  padding: 16px 48px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
}

.build-deploy-section__btn--outline {
  border: var(--stroke-weight-1, 1px) solid var(--product-default, #0BCF7D);
  color: var(--product-default, #0BCF7D);
  background: transparent;
}

.build-deploy-section__btn--gradient {
  background: linear-gradient(106deg, #2BF29F 0%, #09A664 100%);
  color: var(--black-900, #151515);
  border: none;
}

.build-deploy-section__btn--outline:hover {
  background: rgba(11, 207, 125, 0.08);
}

.build-deploy-section__btn--gradient:hover {
  box-shadow: 0 2px 16px 0 rgba(43, 242, 159, 0.15);
}

.build-deploy-section__checks {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.build-deploy-section__check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--black-200, #BAC0C7);
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}

.build-deploy-section__check svg {
  flex-shrink: 0;
}

/* =======================================================================================================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================================================================================================= */

/* TABLET - 1024px */

/* MOBILE - 768px */
@media (max-width: 1024px) {
  /* Ocultar saltos de línea en mobile */
  br {
    display: none;
  }
  
  /* Hero Section */
  .hero-solana-ai {
    margin-top: 50px;
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .hero-solana-ai__container {
    flex-direction: column;
    gap: 20px;
  }

  .hero-solana-ai__content {
    gap: 10px;
  }
  
  .hero-solana-ai__title {
    font-size: 45px;
  }
  
  .hero-solana-ai__description {
    font-size: 15px;
    line-height: 125%;
  }
  
  .hero-solana-ai__btn {
    font-size: 16px;
    padding: 15px 25px;
    max-width: 350px;
    width: 100%;
  }
  
  .hero-solana-ai__features {
    flex-direction: row;
    justify-content: center;
  }
  
  .hero-solana-ai__image-desktop {
    display: none;
  }
  
  .hero-solana-ai__image-mobile {
    display: block;
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-right: -10px;  
    padding-top: 5px;
    padding-bottom: 5px;
  }
  
  .hero-solana-ai__image-mobile img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(21, 21, 21, 0.12);
  }  

  .hero-solana-ai__actions {
    width: 100%;
    display: flex;
    align-items: center;
  }

  .hero-solana-ai__content {
    padding: 0px;
  }

  /* Solana Platform Section */
  .solana-platform-section {
    padding: 40px 10px;
  }
  
  .solana-platform-section__title {
    font-size: 30px;
    line-height: 35px;
  }
  
  .solana-platform-section__container {
    padding: 0;
  }
  
  .solana-platform-section__cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .solana-platform-card {
    padding: 10px;
    gap: 10px;
  }

  .solana-platform-card__title {
    font-size: 15px;
    line-height: 20px;
  }

  .solana-platform-card__desc {
    font-size: 12px;
    line-height: 15px;
    font-weight: 400;
  }

  /* Idea Mainnet Section */
  .idea-mainnet-section {
    padding: 40px 10px 0px 10px;
    overflow: visible; 
  }

  .idea-mainnet-section__container {
    padding: 0;
    overflow: visible; 
  }
  
  .idea-mainnet-section__title {
    font-family: Fira Code, sans-serif;
    font-size: 30px;
    line-height: 35px;
    font-weight: 600;
  }

    .idea-mainnet-section__header {
    gap: 10px;
  }

  .idea-mainnet-section__line {
    width: 100px;
    height: 2.5px;
  }

  .idea-mainnet-card__icon, .idea-mainnet-card__icon--purple, .idea-mainnet-card__icon--green, .idea-mainnet-card__icon--blue, .idea-mainnet-card__icon--pink {
    width: 60px;
    height: 60px;
  }

  .idea-mainnet-card {
    gap: 10px;
    padding: 20px 15px;
  }

  .idea-mainnet-card__title {
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
  }

  .idea-mainnet-card__desc {
    font-size: 15px;
    line-height: 20px;
    font-weight: 400;
  }
  
  .idea-mainnet-section__desc {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 125%;
  }
     .idea-mainnet-section__cards {
     /* Resetear completamente el grid */
     display: flex !important;
     grid-template-columns: unset !important;
     
     /* Configuración del carrusel */
     overflow-x: auto;
     overflow-y: visible; /* Permitir desborde vertical para sombras de las cards*/
     scroll-snap-type: x mandatory;
     gap: 16px;
     padding-bottom: 60px; /* Solo padding para las sombras */
     width: 100%;
          
     /* Scroll suave moderno */
     scroll-behavior: smooth;
     -webkit-overflow-scrolling: touch;
     
     /* Ocultar scrollbar */
     scrollbar-width: none;
     -ms-overflow-style: none;
   }
   
   .idea-mainnet-section__cards::-webkit-scrollbar {
     display: none;
   }
   
   .idea-mainnet-card {
     flex: 0 0 240px; /* Ancho fijo de 240px */
     scroll-snap-align: center;
     min-width: 0;
   }

   /* Espaciadores invisibles para centrar primera y última card */
   .carousel-spacer {
     flex: 0 0 calc(50% - 120px);
     height: 1px;
     min-width: 0;
     display: block;
   }
   
   /* Contenedor del carrusel */
   .idea-mainnet-carousel {
     position: relative;
     width: 100%;
     overflow: visible; /* Permitir desborde de sombras */
   }
   
   /* Controles de navegación modernos */
   .carousel-nav {
     position: absolute;
     background: rgba(0, 0, 0, 0.1);
     top: 50%;
     transform: translateY(calc(-50% - 30px));
     border: none;
     border-radius: 50%;
     width: 44px;
     height: 44px;
     display: none;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 10;
     transition: all 0.2s ease;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
   }
   
   .carousel-nav:hover {
     transform: translateY(calc(-50% - 30px)) scale(1.05);
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
   }
   
   .carousel-nav--prev {
     left: 10px;
   }
   
   .carousel-nav--next {
     right: 10px;
   }
   
   .carousel-nav svg {
     width: 18px;
     height: 18px;
   }
  
  .idea-mainnet-card__title {
    font-size: 15px;
    line-height: 20px;
  }

  /* Testimonials Section */

  .testimonials-section {
    padding: 40px 10px;
  }

  .testimonials-section__container {
    flex-direction: column;
    gap: 20px;
    padding: 0;
    flex-wrap: nowrap;
  }
  
  .testimonial-card {
    padding: 10px;
    gap: 10px;
    width: 100%;
    min-width: 100%;
    /* max-width: 100%; */
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .testimonial-card__text {
    font-size: 15px;
    line-height: 20px;
  }

  .testimonial-card__user {

  }

  .testimonial-card__user-name {
    font-size: 10px;
    line-height: 12.5px;  }

  .testimonial-card__quote-mark {
    font-size: 60px;
    left: -8px;
  }

  /* Brands Section */
  .brands-section {
    padding: 20px 0px 60px 0px;
  }

  .brands-section__carousel-inner {
    gap: 40px;
    padding-right: 40px;
  }
  
  .brand-logo {
    min-height: 40px;
  }
  
  .brand-logo img, .brand-logo svg {
    max-height: 40px;
  }
  
  .brands-section__carousel {
    animation-duration: 18s;
  }

  /* Código Hub Section */
    .codigo-hub-section {
    padding: 40px 10px;
  }

  .codigo-hub-section__container {
    padding: 0;
  }
  
  .codigo-hub-section__title {
    font-family: Fira Code, sans-serif;
    font-size: 30px;
    line-height: 35px;
    font-weight: 600;
    margin
    : 0;
  }

  .codigo-hub-section__header {
  display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0 0px 20px 0px;
  }

 .codigo-hub-section__line {
    width: 100px;
    height: 2.5px;
    margin: 0;
  }
  
  .codigo-hub-section__desc {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 125%;
    margin: 0;
  }
  
  .codigo-hub-section__image-bg {
    padding: 4px;
  }

  /* Build Deploy Section */
  .build-deploy-section {
    padding: 40px 0px;
  }

  .build-deploy-section__container {
    padding: 0;
    gap: 20px;
  }
  
  .build-deploy-section__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }
  
  .build-deploy-section__title,
  .build-deploy-section__title-white {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 45px;
    line-height: 125%;
    margin: 0;
    text-align: start;
  }
  
  .build-deploy-section__desc {
    margin: 0;
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 125%;
    text-align: start;
  }

  .build-deploy-section__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .build-deploy-section__btn {
    padding: 15px 20px;
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 125%;
    width: calc(100% - 40px);
    text-align: center;
  }
  
  .build-deploy-section__actions {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding-left: 10px;
    padding-right: 10px;
    gap: 10px;
    margin-bottom: 0px;
  }
  
  .build-deploy-section__checks {
    gap: 10px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 25px;
    text-align: center;
    vertical-align: middle;
    margin: 0px;
  }

  .build-deploy-section__check {
    font-size: 15px;
    line-height: 25px;
    text-align: center;
    vertical-align: middle;
  }

  /* Scroll reveal classes */
  .reveal {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.05s;
  }

  .reveal-left {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.1s;
  }

  .reveal-right {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.1s;
  }

  .reveal-bottom {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.15s;
  }
}

/* =======================================================================================================================
   ANIMATIONS & UTILITIES
   ======================================================================================================================= */

/* Scroll reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.2s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.3s;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0s;
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.3s;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0s;
}

.reveal-bottom {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition-delay: 0.4s;
}

.reveal-bottom.active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

/* Card animations */
.solana-platform-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.solana-platform-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Active link styles */
.main-header__link.w--current, .footer__link.w--current {
  color: var(--green-high) !important;
}

/* Button hover effects */
.build-deploy-section__btn,
.hero-solana-ai__btn,
.main-header__start-btn,
.footer__link,
.mobile-menu__start-btn {
  text-decoration: none !important;
  transition: all 0.3s ease;
}

/* Carrusel infinito de testimonios */
.testimonials-carousel {
  overflow: hidden;
  width: 100%;
  background: #0C2029;
  position: relative;
  padding: 0;
}
.testimonials-carousel__inner {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  width: max-content;
  animation: testimonials-carousel 60s linear infinite;
  gap: 20px;
}
.testimonials-carousel .testimonial-card {
  min-width: 400px;
  max-width: 400px;
  width: 400px;
  box-sizing: border-box;
}
@keyframes testimonials-carousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* Ajuste para que las tarjetas no se rompan en móvil */
@media (max-width: 991px) {
  .testimonials-carousel__inner {
    gap: 10px;
  }
  .testimonials-carousel .testimonial-card {
    min-width: 80vw;
    max-width: 80vw;
    width: 80vw;
  }
}
