/* ==========================================================================
   Fondo Vista - CSS Optimizado
   ========================================================================== */

:root {
  /* Brand Colors */
  --fv-primary: rgb(2, 251, 126);
  --fv-primary-alpha-05: rgba(2, 251, 126, 0.05);
  --fv-primary-alpha-10: rgba(2, 251, 126, 0.1);
  --fv-primary-alpha-15: rgba(2, 251, 126, 0.15);
  --fv-primary-alpha-20: rgba(2, 251, 126, 0.2);
  --fv-primary-alpha-25: rgba(2, 251, 126, 0.25);
  --fv-primary-alpha-30: rgba(2, 251, 126, 0.3);
  --fv-primary-alpha-40: rgba(2, 251, 126, 0.4);

  /* Background Colors */
  --fv-bg-dark: rgba(23, 23, 23, 0.3);
  --fv-bg-dark-40: rgba(23, 23, 23, 0.4);
  --fv-bg-card: rgba(38, 38, 38, 0.5);
  --fv-bg-card-60: rgba(38, 38, 38, 0.6);

  /* Text Colors */
  --fv-text-white: rgb(255, 255, 255);
  --fv-text-white-hex: #FFFFFF;
  --fv-text-light: rgb(227, 227, 227);
  --fv-text-muted: rgb(170, 170, 170);
  --fv-text-muted-hex: #AAAAAA;
  --fv-text-gray: rgb(163, 163, 163);
  --fv-text-gray-light: #B0B0B0;
  --fv-text-strikethrough: rgb(115, 115, 115);

  /* Border Colors */
  --fv-border-card: rgba(76, 76, 76, 1);
  --fv-border-card-hover: rgba(115, 115, 115, 1);
  --fv-border-subtle: rgba(255, 255, 255, 0.05);

  /* Typography */
  --fv-font-family: "DM Sans", sans-serif;

  /* Spacing */
  --fv-spacing-xs: 0.25rem;
  --fv-spacing-sm: 0.5rem;
  --fv-spacing-md: 1rem;
  --fv-spacing-lg: 1.5rem;
  --fv-spacing-xl: 2rem;
  --fv-spacing-2xl: 2.5rem;
  --fv-spacing-3xl: 3rem;
  --fv-spacing-4xl: 4rem;
  --fv-spacing-5xl: 5rem;

  /* Border Radius */
  --fv-radius-sm: 0.5rem;
  --fv-radius-md: 0.75rem;
  --fv-radius-lg: 1rem;
  --fv-radius-xl: 1.5rem;
  --fv-radius-full: 9999px;
  --fv-radius-button: 30px;

  /* Layout */
  --fv-max-width: 1400px;
  --fv-max-width-content: 72rem;
  --fv-max-width-text: 42rem;

  /* Transitions */
  --fv-transition: all 0.3s ease;
  --fv-transition-icon: all 0.4s ease;

  /* Blur */
  --fv-blur-sm: blur(4px);
  --fv-blur-md: blur(12px);

  /* Mobile Overrides */
  --fv-mobile-padding: 20px;
  --fv-mobile-title-size: 36px;
  --fv-mobile-text-size: 16px;
  --fv-mobile-section-title: 24px;
  --fv-mobile-section-text: 15px;
  --fv-mobile-card-max-width: 320px;
  --fv-mobile-image-card-width: 85%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.welcome-funds-vista {
  position: relative;
  padding: var(--fv-spacing-2xl) var(--fv-spacing-md);
  max-width: var(--fv-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--fv-spacing-lg);
}

.welcome-funds-vista-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  order: 1;
  flex: 1;
}

.welcome-funds-vista-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  order: 2;
  flex: 1;
}

.welcome-text-funds-vista {
  display: flex;
  flex-direction: column;
  gap: var(--fv-spacing-md);
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.welcome-mockup_funds_vista_desktop {
  display: block;
  width: 100%;
  max-width: 320px;
  max-height: 450px;
  height: auto;
  object-fit: contain;
  margin: 0;
  align-self: flex-start;
  transform: translateY(-10px);
}

#button-download-fund {
  margin-bottom: 130px;
  margin-top: 24px;
  height: 56px;
  width: 204px;
  left: 0px;
  top: 159px;
  border-radius: var(--fv-radius-button);
  padding: 16px 32px;
}

.funds-vista-title {
  color: var(--fv-text-white-hex);
  font-family: var(--fv-font-family);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: none;
  margin: 0 0 var(--fv-spacing-lg) 0;
  padding: 0;
}

.funds-vista-description {
  font-family: var(--fv-font-family);
  font-size: clamp(0.9375rem, 1.8vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--fv-text-muted-hex);
  padding: 0;
  max-width: 600px;
  margin: 0 0 var(--fv-spacing-xl) 0;
}

.funds-vista-cta-wrapper {
  margin-top: var(--fv-spacing-sm);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.funds-vista-features-section {
  padding: var(--fv-spacing-4xl) var(--fv-spacing-md);
  max-width: var(--fv-max-width);
  margin: 0 auto;
}

.funds-vista-features-container {
  width: 100%;
}

.funds-vista-features-header {
  text-align: center;
  margin-bottom: var(--fv-spacing-3xl);
}

.funds-vista-features-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--fv-text-white);
  margin-bottom: var(--fv-spacing-md);
  font-family: var(--fv-font-family);
  margin-top: 0;
}

.funds-vista-features-subtitle {
  color: var(--fv-text-gray);
  font-size: 1.125rem;
  max-width: var(--fv-max-width-text);
  margin: 0 auto;
  font-family: var(--fv-font-family);
  line-height: 1.6;
}

.funds-vista-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--fv-spacing-lg);
  max-width: 1200px;
  margin: 0 auto;
}

.funds-vista-feature-card {
  background: var(--fv-bg-dark);
  backdrop-filter: var(--fv-blur-md);
  border: 1px solid var(--fv-primary-alpha-10);
  border-radius: var(--fv-radius-xl);
  padding: var(--fv-spacing-xl) var(--fv-spacing-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--fv-spacing-md);
  transition: var(--fv-transition);
}

.funds-vista-feature-card:hover {
  border-color: var(--fv-primary-alpha-30);
  transform: translateY(-4px);
}

.funds-vista-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--fv-primary-alpha-15), var(--fv-primary-alpha-05));
  border: 1px solid var(--fv-primary-alpha-20);
  color: var(--fv-primary);
  transition: var(--fv-transition-icon);
  flex-shrink: 0;
  margin-bottom: var(--fv-spacing-sm);
}

.funds-vista-feature-card:hover .funds-vista-feature-icon {
  background: linear-gradient(135deg, var(--fv-primary-alpha-25), var(--fv-primary-alpha-10));
  border-color: var(--fv-primary-alpha-40);
}

.funds-vista-feature-icon svg {
  width: 16px;
  height: 16px;
}

.funds-vista-feature-title {
  font-family: var(--fv-font-family);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fv-text-white-hex);
  margin: 0;
  line-height: 1.4;
}

.funds-vista-feature-cut {
  display: block;
  font-family: var(--fv-font-family);
  font-size: 0.6875rem;
  font-weight: 400;
  font-style: italic;
  color: var(--fv-text-gray-light);
  letter-spacing: 0.02em;
  margin-top: 0.2rem;
  margin-bottom: 0;
  line-height: 1.3;
  opacity: 0.75;
}

.funds-vista-feature-description {
  font-family: var(--fv-font-family);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--fv-text-gray-light);
  margin: 0;
  line-height: 1.5;
}

/* ==========================================================================
   Shared Benefit Section Styles
   ========================================================================== */

.funds-vista-benefit-2-section {
  padding: 2.5rem 0 4rem;
  margin-top: 2rem;
  position: relative;
}

.funds-vista-benefit-2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.funds-vista-benefit-2-content {
  display: flex;
  flex-direction: column;
  gap: var(--fv-spacing-lg);
}

.funds-vista-benefit-2-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--fv-text-white);
  margin-bottom: var(--fv-spacing-xs);
  font-family: var(--fv-font-family);
}

.funds-vista-benefit-2-separator {
  height: var(--fv-spacing-xs);
  width: 6rem;
  border-radius: var(--fv-radius-full);
  background-color: var(--fv-primary);
  margin-bottom: var(--fv-spacing-md);
}

.funds-vista-benefit-2-description {
  color: var(--fv-text-gray);
  font-size: 1.125rem;
  line-height: 1.625;
  font-family: var(--fv-font-family);
}

.funds-vista-benefit-2-description strong {
  color: var(--fv-text-white);
  font-weight: 600;
}

.funds-vista-benefit-2-image-container {
  position: relative;
}

.funds-vista-benefit-2-image-card {
  position: relative;
  background-color: var(--fv-bg-card);
  backdrop-filter: var(--fv-blur-sm);
  border: 1px solid var(--fv-border-card);
  border-radius: var(--fv-radius-xl);
  padding: var(--fv-spacing-xl);
  transition: var(--fv-transition);
}

.funds-vista-benefit-2-image-card:hover {
  border-color: var(--fv-border-card-hover);
}

.funds-vista-benefit-2-image-area {
  aspect-ratio: 1;
  border-radius: var(--fv-radius-lg);
  overflow: hidden;
  background-color: var(--fv-primary-alpha-05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.funds-vista-benefit-2-image {
  width: 70%;
  height: auto;
  max-width: 350px;
  object-fit: contain;
}

/* Deposita y retira: misma card premium (degradado, sin bordes, imagen 100%) */
.funds-vista-benefit-2-image-card-premium {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  background: 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%
  );
  border-radius: var(--fv-radius-xl);
  border: 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(--fv-transition);
}
.funds-vista-benefit-2-image-card-premium:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), 0 2px 8px rgba(0, 0, 0, 0.1);
}
.funds-vista-benefit-2-image-card-premium .funds-vista-benefit-2-image-premium {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  display: block;
  vertical-align: top;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.funds-vista-cta-section {
  padding: var(--fv-spacing-4xl) 0;
  position: relative;
  overflow: hidden;
}

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

.funds-vista-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--fv-spacing-3xl);
  align-items: center;
  max-width: var(--fv-max-width-content);
  margin: 0 auto;
  padding: 0 var(--fv-spacing-md);
}

.funds-vista-cta-image-column {
  position: relative;
  order: 1;
}

.funds-vista-cta-image-card {
  position: relative;
  background-color: var(--fv-bg-card);
  backdrop-filter: var(--fv-blur-sm);
  border: 1px solid var(--fv-border-card);
  border-radius: var(--fv-radius-xl);
  padding: var(--fv-spacing-2xl) var(--fv-spacing-xl);
  transition: var(--fv-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--fv-spacing-lg);
  min-height: 400px;
  justify-content: center;
}

.funds-vista-cta-image-card:hover {
  border-color: var(--fv-border-card-hover);
}

.funds-vista-cta-image-area {
  aspect-ratio: 1;
  border-radius: var(--fv-radius-lg);
  overflow: hidden;
  background-color: var(--fv-primary-alpha-05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.funds-vista-cta-image {
  width: 70%;
  height: auto;
  max-width: 350px;
  object-fit: contain;
}

.funds-vista-cta-qr-text {
  font-family: var(--fv-font-family);
  font-size: 0.875rem;
  color: var(--fv-text-muted);
  margin: 0;
  text-align: center;
}

.funds-vista-cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--fv-spacing-lg);
  order: 2;
}

.funds-vista-cta-title {
  font-family: var(--fv-font-family);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--fv-text-white);
  margin: 0;
  line-height: 1.2;
}

.funds-vista-cta-title-highlight {
  color: var(--fv-primary);
}

.funds-vista-cta-description {
  font-family: var(--fv-font-family);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--fv-text-muted);
  line-height: 1.6;
  margin: 0;
}

.funds-vista-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--fv-spacing-md);
  margin-top: var(--fv-spacing-sm);
}

/* Botón Iniciar Sesión en una sola línea (todos los viewports) */
.funds-vista-cta-buttons a {
  display: inline-flex !important;
  white-space: nowrap !important;
  min-width: 200px !important;
  box-sizing: border-box;
}
.funds-vista-cta-buttons .button-solid,
#button-download-funds {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  white-space: nowrap !important;
  min-width: 200px !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  box-sizing: border-box;
}

/* ==========================================================================
   Mobile Section
   ========================================================================== */

.mobile.mw-700 {
  padding: var(--fv-spacing-4xl) var(--fv-spacing-md);
  max-width: var(--fv-max-width);
  margin: 0 auto;
}

/* ==========================================================================
   Rates Section
   ========================================================================== */

section.rates,
.funds-vista-cta-section + section.rates {
  margin-top: var(--fv-spacing-4xl);
  margin-bottom: var(--fv-spacing-4xl);
  padding: 0 var(--fv-spacing-md) !important;
  max-width: var(--fv-max-width);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: var(--fv-spacing-xl);
  width: 100% !important;
  box-sizing: border-box !important;
}

.rates .title {
  font-family: var(--fv-font-family);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--fv-text-white);
  margin: 0;
  text-align: center;
  line-height: 1.2;
}

.rates-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--fv-bg-dark);
  backdrop-filter: var(--fv-blur-md);
  border: 1px solid var(--fv-primary-alpha-10);
  border-radius: var(--fv-radius-xl);
  overflow: hidden;
  margin-top: var(--fv-spacing-md);
}

.table-rates {
  width: 100%;
  border-collapse: collapse;
}

.row-header {
  background: var(--fv-bg-card-60);
  font-family: var(--fv-font-family);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fv-text-white);
  height: 56px;
}

.row-header th {
  padding: var(--fv-spacing-md);
  text-align: center;
  border-bottom: 1px solid var(--fv-primary-alpha-10);
}

.table-cell,
.tablet-cell-discount {
  font-family: var(--fv-font-family);
  font-size: 1rem;
  font-weight: 400;
  padding: var(--fv-spacing-md);
  text-align: center;
  background: var(--fv-bg-dark-40);
  color: var(--fv-text-light);
  border-bottom: 1px solid var(--fv-border-subtle);
}

.tablet-cell-discount {
  color: var(--fv-text-strikethrough);
  text-decoration: line-through;
}

.table-cell:first-child {
  font-weight: 600;
  color: var(--fv-text-white);
}

.table-cell:last-child {
  color: var(--fv-primary);
  font-weight: 600;
}

.table-cell-bottom {
  border-bottom: 1px solid var(--fv-border-subtle);
}

.table-cell-left {
  border-bottom-left-radius: var(--fv-radius-sm);
}

.table-cell-right {
  border-bottom-right-radius: var(--fv-radius-sm);
}

/* ==========================================================================
   Download Section
   ========================================================================== */

.download {
  padding: var(--fv-spacing-4xl) var(--fv-spacing-md);
  max-width: var(--fv-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--fv-spacing-2xl);
}

.download-button {
  text-align: center;
  width: 100%;
}

.download-button .title {
  font-family: var(--fv-font-family);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--fv-text-white);
  margin: 0 0 var(--fv-spacing-lg) 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.download-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--fv-spacing-md);
}

.download-qr img {
  width: 200px;
  height: auto;
  border-radius: var(--fv-radius-md);
}

.download-qr p {
  font-family: var(--fv-font-family);
  font-size: 0.875rem;
  color: var(--fv-text-muted);
  margin: 0;
}

/* ==========================================================================
   Desktop Responsive (min-width: 768px)
   ========================================================================== */

@media (min-width: 768px) {
  .funds-vista-features-title {
    font-size: 2.25rem;
  }

  .funds-vista-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--fv-spacing-xl);
  }

  .funds-vista-benefit-2-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .funds-vista-cta-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--fv-spacing-3xl);
  }

  .funds-vista-cta-image-column {
    order: 1;
  }

  .funds-vista-cta-content {
    order: 2;
  }

  .mobile.mw-700 {
    padding: var(--fv-spacing-4xl) var(--fv-spacing-xl);
  }

  section.rates,
  .funds-vista-cta-section + section.rates {
    padding: 0 var(--fv-spacing-xl) !important;
  }

  .download {
    padding: var(--fv-spacing-4xl) var(--fv-spacing-xl);
  }
}

/* ==========================================================================
   Tablet Responsive (768px - 1023px)
   ========================================================================== */

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .welcome-funds-vista {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    min-height: auto;
    padding: var(--fv-spacing-xl) var(--fv-spacing-lg);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--fv-spacing-md);
  }

  .welcome-funds-vista-image-wrapper {
    flex: 0 0 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    order: 2;
    padding-right: var(--fv-spacing-sm);
  }

  .welcome-funds-vista-content {
    flex: 0 0 60%;
    gap: var(--fv-spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    order: 1;
    padding-left: var(--fv-spacing-sm);
  }

  .welcome-text-funds-vista {
    text-align: left;
    width: 100%;
    gap: var(--fv-spacing-md);
  }

  .funds-vista-title {
    margin-left: 0;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--fv-spacing-md);
  }

  .funds-vista-description {
    font-size: 0.9375rem;
    max-width: 100%;
    margin-bottom: 1.25rem;
  }

  .welcome-mockup_funds_vista_desktop {
    display: block !important;
    position: relative;
    max-width: 100%;
    max-height: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: translateY(-15px);
  }

  .funds-vista-cta-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}

/* ==========================================================================
   Desktop Large Responsive (min-width: 1024px)
   ========================================================================== */

@media (min-width: 1024px) {
  .welcome-funds-vista {
    width: 80%;
    padding: var(--fv-spacing-xl);
    padding-top: var(--fv-spacing-4xl);
    height: auto;
    flex-direction: row;
    gap: var(--fv-spacing-xl);
  }

  .welcome-funds-vista-image-wrapper {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    order: 2;
    padding-top: 0;
  }

  .welcome-funds-vista-content {
    flex: 0 0 60%;
    max-width: 60%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    order: 1;
  }

  .welcome-text-funds-vista {
    text-align: left;
    align-items: flex-start;
  }

  .funds-vista-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: var(--fv-spacing-md) 0;
  }

  .funds-vista-description {
    font-size: 1.125rem;
    max-width: 550px;
    margin-bottom: var(--fv-spacing-lg);
  }

  .welcome-mockup_funds_vista_desktop {
    max-width: 450px;
    max-height: 600px;
    align-self: flex-start;
    margin-top: 0;
    transform: translateY(-25px);
  }

  .funds-vista-cta-wrapper {
    justify-content: flex-start;
  }

  .funds-vista-features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--fv-spacing-lg);
  }

  .funds-vista-benefit-2-title {
    font-size: 2.25rem;
  }

  .mobile.mw-700 {
    gap: var(--fv-spacing-5xl);
  }

  .rates .title {
    font-size: 2.5rem;
  }

  .table-rates {
    font-size: 1.125rem;
  }

  .row-header {
    font-size: 1.125rem;
  }

  .table-cell,
  .tablet-cell-discount {
    font-size: 1.125rem;
  }
}

/* ==========================================================================
   Mobile Responsive (max-width: 767px)
   ========================================================================== */

@media screen and (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  section,
  div,
  .container,
  .welcome-funds-vista,
  .funds-vista-features-section,
  .funds-vista-benefit-2-section,
  .funds-vista-cta-section,
  .rates,
  .mobile.mw-700,
  .download {
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Hero Section - Mobile */
  .welcome-funds-vista {
    padding: var(--fv-spacing-xl) var(--fv-mobile-padding);
    gap: var(--fv-spacing-lg);
    flex-direction: column;
    min-height: auto;
  }

  .welcome-funds-vista-image-wrapper {
    order: 1;
    flex: 0 0 auto;
    width: 100%;
  }

  .welcome-funds-vista-content {
    order: 2;
    flex: 0 0 auto;
    width: 100%;
    align-items: center;
    gap: var(--fv-spacing-lg);
  }

  .welcome-text-funds-vista {
    text-align: center;
    align-items: center;
  }

  .funds-vista-title {
    padding-left: 10px;
    padding-right: 10px;
    font-size: var(--fv-mobile-title-size);
    line-height: 1.3;
    text-align: center;
    margin-left: 0;
  }

  .funds-vista-description {
    padding-left: 10px;
    padding-right: 10px;
    font-size: var(--fv-mobile-text-size);
    text-align: center;
    max-width: 100%;
  }

  .welcome-mockup_funds_vista_desktop {
    max-width: 280px;
    max-height: 380px;
    transform: translateY(-10px);
  }

  .funds-vista-cta-wrapper {
    margin-top: 0;
    margin-bottom: 0;
    justify-content: center;
    width: 100%;
  }

  #button-download-fund {
    margin-bottom: 30px;
    width: auto;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
  }

  /* Features Section - Mobile */
  .funds-vista-features-section {
    padding: var(--fv-spacing-lg) 0 var(--fv-spacing-3xl) 0;
    margin-top: 0;
  }

  .funds-vista-features-header {
    padding: 0 var(--fv-mobile-padding);
  }

  .funds-vista-features-title {
    font-size: var(--fv-mobile-section-title);
    line-height: 1.3;
    padding-left: 0;
    padding-right: 0;
  }

  .funds-vista-features-subtitle {
    font-size: var(--fv-mobile-section-text);
    padding-left: 0;
    padding-right: 0;
  }

  .funds-vista-features-grid {
    padding: 0 var(--fv-mobile-padding);
    gap: var(--fv-spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .funds-vista-feature-card {
    padding: var(--fv-spacing-lg) var(--fv-mobile-padding);
    max-width: var(--fv-mobile-card-max-width);
    width: 100%;
  }

  /* Benefit Sections - Mobile */
  .funds-vista-benefit-2-section {
    padding: 1.5rem 16px 2rem;
    margin-top: 1rem;
  }

  .funds-vista-benefit-2-grid {
    padding: 0;
    gap: var(--fv-spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .funds-vista-benefit-2-content {
    text-align: center;
    order: 1;
    padding: 0 var(--fv-mobile-padding);
  }

  .funds-vista-benefit-2-image-container {
    order: 2;
  }

  .funds-vista-benefit-2-title {
    font-size: var(--fv-mobile-section-title);
    line-height: 1.3;
    text-align: center;
  }

  .funds-vista-benefit-2-separator {
    margin-left: auto;
    margin-right: auto;
  }

  .funds-vista-benefit-2-description {
    font-size: var(--fv-mobile-section-text);
    text-align: center;
  }

  .funds-vista-benefit-2-image-card {
    padding: var(--fv-spacing-lg) var(--fv-mobile-padding);
    max-width: var(--fv-mobile-image-card-width);
    width: var(--fv-mobile-image-card-width);
    margin: 0 auto;
  }
  .funds-vista-benefit-2-image-card-premium {
    padding: 0;
    max-width: none;
    width: 100%;
  }
  .funds-vista-benefit-2-image-container {
    max-width: 82%;
    margin-left: auto;
    margin-right: auto;
  }

  /* CTA Section - Mobile */
  .funds-vista-cta-section {
    padding: var(--fv-spacing-3xl) var(--fv-mobile-padding);
  }

  .funds-vista-cta-grid {
    padding: 0;
    gap: var(--fv-spacing-lg);
  }

  .funds-vista-cta-content {
    text-align: center;
    padding: 0 var(--fv-mobile-padding);
    gap: 1.25rem;
  }

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

  .funds-vista-cta-description {
    font-size: var(--fv-mobile-section-text);
    text-align: center;
  }

  .funds-vista-cta-image-card {
    padding: var(--fv-spacing-lg) var(--fv-mobile-padding);
    max-width: var(--fv-mobile-image-card-width);
    width: var(--fv-mobile-image-card-width);
    margin: 0 auto;
    min-height: 300px;
  }

  .funds-vista-cta-buttons {
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.75rem;
  }

  .funds-vista-cta-buttons a,
  .funds-vista-cta-buttons .button-solid,
  #button-download-funds {
    width: auto !important;
    min-width: 220px !important;
    max-width: 100%;
    white-space: nowrap !important;
    padding: var(--fv-spacing-md) 1.5rem !important;
  }

  /* Rates Section - Mobile */
  section.rates,
  .funds-vista-cta-section + section.rates {
    padding: var(--fv-spacing-3xl) var(--fv-mobile-padding) !important;
    margin-top: var(--fv-spacing-xl);
    margin-bottom: var(--fv-spacing-xl);
  }

  .rates .title {
    font-size: var(--fv-mobile-section-title);
    line-height: 1.3;
    padding-left: 10px;
    padding-right: 10px;
  }

  .rates .subtitle,
  .rates p {
    font-size: var(--fv-mobile-section-text);
  }

  .rates-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 var(--fv-mobile-padding);
    max-width: 100%;
  }

  .table-rates {
    font-size: 0.875rem;
    width: 100% !important;
    max-width: var(--fv-mobile-card-max-width) !important;
    margin: 0 auto !important;
  }

  .row-header {
    font-size: 0.875rem;
  }

  .row-header th {
    padding: 0.75rem var(--fv-spacing-sm);
  }

  .table-cell,
  .tablet-cell-discount {
    font-size: 0.875rem;
    padding: 0.75rem var(--fv-spacing-sm);
  }

  /* Download Section - Mobile */
  .download {
    padding: var(--fv-spacing-3xl) var(--fv-mobile-padding);
  }

  .download-button .title {
    font-size: var(--fv-mobile-section-title);
    line-height: 1.4;
  }

  .download-qr p {
    font-size: var(--fv-mobile-section-text);
  }

  /* Mobile Section - Mobile */
  .mobile.mw-700 {
    padding: var(--fv-spacing-3xl) var(--fv-mobile-padding);
  }
}

/* ==========================================================================
   Small Mobile (max-width: 480px)
   ========================================================================== */

@media screen and (max-width: 480px) {
  .welcome-funds-vista {
    padding: var(--fv-spacing-lg) var(--fv-spacing-md);
    gap: var(--fv-spacing-lg);
  }

  .welcome-funds-vista-content {
    gap: 1.25rem;
  }

  .funds-vista-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .funds-vista-description {
    font-size: 0.9375rem;
  }

  .welcome-mockup_funds_vista_desktop {
    max-height: 350px;
    transform: translateY(-5px);
  }

  #button-download-fund {
    padding: 0.875rem var(--fv-spacing-lg);
    font-size: 0.875rem;
    width: auto;
  }

  .funds-vista-features-grid {
    grid-template-columns: 1fr;
    gap: var(--fv-spacing-lg);
  }
}
