/* ================================
   RESET AND BASE STYLES
   ================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Saans-TRIAL', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #4B2354;
    background: linear-gradient(270deg, rgba(75, 35, 84, 1) 0%, rgba(118, 36, 154, 1) 47%, rgba(46, 29, 77, 1) 100%);
    overflow-x: hidden;
}

/* ================================
   LAYOUT COMPONENTS
   ================================ */

.main-container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section {
    width: 100%;
    padding: 60px 16px;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
}

.row {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: 100%;
    align-items: center;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

/* ================================
   HEADER - MEJORADO CON MENÚ MÓVIL
   ================================ */

.header {
    background-color: rgba(0, 0, 0, 0.18);
    border-radius: 16px;
    padding: 12px 20px;
    margin: 24px auto 0 auto;
    max-width: 1220px;
    box-shadow: 0px 4px 70px rgba(136, 136, 136, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.logo {
    width: 80px;
    height: 26px;
    z-index: 1002;
}

/* Menú hamburguesa */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Overlay del menú móvil */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: #b147ff;
}

.cta-button,
.cta-button-mobile {
    background-color: #ffffff;
    color: #000000;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover,
.cta-button-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.cta-button-mobile {
    display: none;
}

.desktop-only {
    display: block;
}

/* ================================
   BUTTONS
   ================================ */

.primary-button {
    background: linear-gradient(90deg, #b147ff 0%, #f3359e 100%);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(177, 71, 255, 0.4);
}

/* ================================
   HERO SECTION - RESPONSIVO
   ================================ */

.hero-section {
    margin-top: 5px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 16px 60px;
    margin-top: 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    width: 100%;
    max-width: 600px;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.0;
    background: linear-gradient(90deg, #efdfff 0%, #fda5d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 35px;
    margin-bottom: 20px;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 32px;
    opacity: 0.9;
}

.app-stores {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-top: 40px;
}

.stores-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    opacity: 0.8;
}

.store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.store-button {
    width: 120px;
    height: 36px;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.store-button:hover {
    transform: scale(1.05);
}

/* ================================
   HERO IMAGE - RESPONSIVO
   ================================ */

.hero-image {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-top: 40px;
    left: 80px;
}

.phone-mockup {
    width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.notification-badges {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ================================
   FUTURE SECTION - RESPONSIVO CON VIDEO
   ================================ */

.future-section {
    padding: 60px 16px;
    text-align: center;
}

.future-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.future-text {
    width: 100%;
}

.future-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(270deg, #faf5fe 0%, #fcf2f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    max-width: 900px;
    margin: 0 auto;
}

.future-video-container {
    width: 100%;
    max-width: 615px;
    margin: 0 auto;
}

/* Video Responsive Wrapper - NUEVO */
.video-responsive-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.future-video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ================================
   SECTION STYLES - RESPONSIVO
   ================================ */

.section-badge {
    background: linear-gradient(270deg, #faf5fe34 0%, #fcf2f897 100%);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin: 0 auto 30px;
    box-shadow: 0px 4px 16px rgba(255, 255, 255, 0.2);
}

.brand-badge {
    background: #b147ff;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    margin: 0 auto 20px;
    box-shadow: 0px 4px 16px rgba(177, 71, 255, 0.3);
    width: fit-content;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(90deg, #ffffff 0%, #9380ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   CREATOR SECTION - RESPONSIVO
   ================================ */

.creator-section {
    padding: 60px 16px;
}

.creator-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.creator-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    align-items: center;
    max-width: 1200px;
}

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

.feature-card {
    background: linear-gradient(270deg, #faf5fe 0%, #fcf2f8 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 8px 32px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 120px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 16px 48px rgba(255, 255, 255, 0.15);
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #6e0873;
}

.feature-description {
    font-size: 18px;
    font-weight: 400;
    color: #9306a4;
    line-height: 1.3;
}

/* ================================
   DASHBOARD PREVIEW - RESPONSIVO
   ================================ */

.dashboard-preview {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 700px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    margin-bottom: 20px;
}

.stat-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 12px;
}

.stat-label {
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(270deg, #76078e 0%, #9705a7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 6px;
}

.stat-change {
    font-size: 12px;
    font-weight: 600;
    color: #3bd068;
}

.chart-placeholder {
    width: 100%;
    height: 100px;
    background-color: #ffffff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 16px;
}

.chart-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.transaction-item {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 10px;
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s ease;
}

.transaction-item:hover {
    transform: translateX(4px);
}

.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
}

.transaction-details {
    flex: 1;
    min-width: 0;
}

.transaction-title {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.transaction-date {
    font-size: 12px;
    color: #8f8b8b;
}

.transaction-amount {
    font-size: 14px;
    font-weight: 800;
    color: #3bd068;
    white-space: nowrap;
}

/* ================================
   ACCESS SECTION - RESPONSIVO
   ================================ */

.access-section {
    padding: 60px 16px;
}

.access-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.access-text {
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.access-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.access-section .section-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.access-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
}

.phone-stack {
    position: relative;
    width: 100%;
    max-width: 350px;
    height: auto;
}

.phone-frame {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

/* ================================
   WITHDRAW SECTION - RESPONSIVO
   ================================ */

.withdraw-section {
    padding: 60px 16px;
}

.withdraw-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.withdraw-section .section-title {
    text-align: center;
    margin-bottom: 20px;
}

.withdraw-section .section-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.withdraw-visual {
    width: 100%;
    max-width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.withdraw-visual .phone-stack {
    width: 100%;
    height: auto;
}

.withdraw-text {
    max-width: 600px;
    width: 100%;
}

/* ================================
   BRAND SECTION - RESPONSIVO
   ================================ */

.brand-section {
    padding: 60px 16px;
}

.campaign-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.campaign-card {
    background: linear-gradient(270deg, #faf5fe 0%, #fcf2f8 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0px 8px 32px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 16px 48px rgba(255, 255, 255, 0.15);
}

.campaign-title {
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(90deg, #b147ff 0%, #f3359e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.campaign-description {
    font-size: 20px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 24px;
    line-height: 1.5;
}

/* ================================
   STEPPER COMPONENT - RESPONSIVO
   ================================ */

.stepper {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
}

.stepper-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stepper-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stepper-icon.active {
    background: linear-gradient(270deg, #76078e 0%, #9705a7 100%);
}

.stepper-icon.inactive {
    border: 2px solid #e0e0e0;
    background-color: transparent;
}

.stepper-label {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
}

.stepper-label.active {
    background: linear-gradient(270deg, #76078e 0%, #9705a7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stepper-label.inactive {
    color: #bbb;
}

/* ================================
   REQUIREMENTS - RESPONSIVO
   ================================ */

.requirements {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.requirement-item {
    background: linear-gradient(270deg, #f8f4ff 0%, #fdf9ff 100%);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.requirement-item:hover {
    transform: translateX(4px);
}

.requirement-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.requirement-text {
    font-size: 13px;
    color: #333333;
    flex: 1;
    line-height: 1.4;
}

/* ================================
   BUDGET FORM - RESPONSIVO
   ================================ */

.budget-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 22px;
    font-weight: 600;
    background: linear-gradient(270deg, #76078e 0%, #9705a7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-input {
    background-color: #ffffff;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    padding: 12px;
    font-size: 20px;
    color: #333333;
    font-weight: 600;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-color: #b147ff;
    outline: none;
}

.input-row {
    display: flex;
    gap: 12px;
}

.input-row .form-group {
    flex: 1;
}

/* ================================
   ANALYTICS - RESPONSIVO
   ================================ */

.analytics-card {
    background: linear-gradient(270deg, #cbbbe7 0%, #fdf9ff 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.analytics-title {
    font-size: 18px;
    font-weight: 600;
    color: #6e11b0;
    margin-bottom: 6px;
}

.analytics-value {
    font-size: 45px;
    font-weight: 700;
    color: #6e11b0;
}

.analytics-change {
    background-color: #ffffff;
    color: #6e11b0;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.metric-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.08);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.metric-icon {
    width: 22px;
    height: 22px;
}

.metric-change {
    background-color: #f0fff4;
    color: #4fe300;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}

.metric-value {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 6px;
}

.metric-label {
    font-size: 16px;
    color: #000000;
    line-height: 1.3;
    white-space: nowrap;
}

/* ================================
   MANAGEMENT SECTION - RESPONSIVO
   ================================ */

.management-section {
    padding: 60px 16px;
}

.management-section .access-content {
    margin-bottom: 50px;
}

.management-section .access-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* ================================
   TRUST SECTION - COMPLETAMENTE RESPONSIVO
   ================================ */

.trust-section {
    padding: 60px 16px;
    text-align: center;
}

.trust-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.brand-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    align-items: center;
    justify-items: center;
    padding: 0 8px;
    max-width: 600px;
    margin: 0 auto;
}

.brand-logo {
    height: 80px;
    width: auto;
    max-width: 150px;
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: brightness(1.05);
    object-fit: contain;
}

.brand-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* ================================
   TEAM SECTION - RESPONSIVO MEJORADO
   ================================ */

.team-section {
    padding: 60px 16px;
    text-align: center;
}

.team-intro {
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    opacity: 0.9;
}

.startup-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.startup-badge {
    height: 56px;
    width: auto;
    transition: transform 0.3s ease;
}

.startup-badge:hover {
    transform: scale(1.1);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.team-member {
    background: linear-gradient(270deg, #faf5fe 0%, #fcf2f8 100%);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0px 20px 60px rgba(255, 255, 255, 0.15);
}

.member-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 3px solid rgba(177, 71, 255, 0.2);
    
}

.member-name {
    font-size: 20px;
    font-weight: 600;
    background: linear-gradient(90deg, #b147ff 0%, #f3359e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
}

.member-role {
    font-size: 14px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
}

.team-grid-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.team-member-small {
    background: linear-gradient(270deg, #faf5fe 0%, #fcf2f8 100%);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member-small:hover {
    transform: translateY(-4px);
    box-shadow: 0px 12px 32px rgba(255, 255, 255, 0.1);
}

.member-photo-small {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 10px;
    object-fit: cover;
    border: 2px solid rgba(177, 71, 255, 0.2);
}

.member-name-small {
    font-size: 14px;
    font-weight: 600;
    background: linear-gradient(90deg, #b147ff 0%, #f3359e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.member-role-small {
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.3;
}

/* ================================
   FOOTER - RESPONSIVO
   ================================ */

.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 16px 30px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.8;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-link {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.social-link:hover {
    opacity: 1;
    transform: scale(1.2);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.footer-link {
    font-size: 14px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-link:hover {
    color: #b147ff;
    opacity: 1;
}

/* ================================
   INTERACTIVE STATES
   ================================ */

.interactive:hover {
    transform: translateY(-3px);
    transition: transform 0.3s ease;
}

.card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
}

/* ================================
   RESPONSIVE MEDIA QUERIES - MÓVIL OPTIMIZADO
   ================================ */

/* Mobile - hasta 480px */
@media (max-width: 480px) {
    .header {
        padding: 10px 16px;
        margin: 12px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(75, 35, 84, 0.98) 0%, rgba(118, 36, 154, 0.98) 100%);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 18px;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cta-button {
        display: none;
    }

    .cta-button-mobile {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    /* HERO SECTION MOBILE */
    .hero-image {
        left: 0;
        /* Centrar imagen en móvil */
        margin-top: 20px;
    }

    .hero-title {
        font-size: 28px;
        text-align: center;
        white-space: normal;
        /* Permitir wrap en móvil */
    }

    .hero-subtitle {
        font-size: 16px;
        text-align: center;
    }

    /* VIDEO RESPONSIVO MÓVIL */
    .video-responsive-wrapper {
        padding-bottom: 75%;
        /* Ajuste para pantallas móviles */
    }

    .future-title {
        font-size: 24px;
        text-align: center;
    }

    /* TEAM SECTION MOBILE OPTIMIZADO */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .member-photo {
        width: 110px;
        height: 110px;
    }

    .member-name {
        font-size: 16px;
    }

    .member-role {
        font-size: 12px;
    }

    .team-grid-small {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .member-photo-small {
        width: 80px;
        height: 80px;
    }

    .member-name-small {
        font-size: 12px;
    }

    .member-role-small {
        font-size: 10px;
    }

    /* TRUST SECTION MOBILE */
    .trust-title {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .brand-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 16px;
    }

    .brand-logo {
        height: 60px;
        max-width: 120px;
    }

    /* DASHBOARD MOBILE */
    .dashboard-stats {
        gap: 20px;
    }

    .stat-value {
        font-size: 20px;
    }

    .transaction-title {
        font-size: 13px;
    }

    /* OTROS AJUSTES MÓVIL */
    .section-title {
        font-size: 26px;
        text-align: center;
    }

    .section-subtitle {
        font-size: 14px;
        text-align: center;
    }

    .campaign-title {
        font-size: 18px;
        text-align: center;
    }

    .campaign-description {
        font-size: 16px;
        text-align: center;
    }

    .feature-title {
        font-size: 16px;
        text-align: center;
    }

    .feature-description {
        font-size: 14px;
        text-align: center;
    }

    .stepper-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .stepper-label {
        font-size: 10px;
        text-align: center;
    }

    .store-button {
        width: 100px;
        height: 30px;
    }
}

/* Tablet - 481px a 768px */
@media (min-width: 481px) and (max-width: 768px) {
    .header {
        padding: 12px 20px;
        margin: 16px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(180deg, rgba(75, 35, 84, 0.98) 0%, rgba(118, 36, 154, 0.98) 100%);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 20px;
        transition: right 0.3s ease;
        z-index: 999;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 20px;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cta-button {
        display: none;
    }

    .cta-button-mobile {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }

    /* HERO SECTION TABLET */
    .hero-image {
        left: 0;
    }

    .hero-title {
        font-size: 38px;
        text-align: center;
        white-space: normal;
    }

    .hero-subtitle {
        text-align: center;
    }

    /* VIDEO TABLET */
    .video-responsive-wrapper {
        padding-bottom: 56.25%;
        /* 16:9 estándar para tablet */
    }

    .future-title {
        font-size: 32px;
        text-align: center;
    }

    /* TEAM SECTION TABLET */
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .member-photo {
        width: 180px;
        height: 180px;
    }

    .member-name {
        font-size: 18px;
    }

    .member-role {
        font-size: 13px;
    }

    .team-grid-small {
        grid-template-columns: repeat(2, 1fr);
    }

    .member-photo-small {
        width: 100px;
        height: 100px;
    }

    .member-name-small {
        font-size: 13px;
    }

    .member-role-small {
        font-size: 11px;
    }

    /* TRUST SECTION TABLET */
    .trust-title {
        font-size: 22px;
        margin-bottom: 35px;
    }

    .brand-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 800px;
    }

    .brand-logo {
        height: 100px;
        max-width: 180px;
    }

    .section-title {
        font-size: 32px;
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
    }

    .campaign-title {
        text-align: center;
    }

    .campaign-description {
        text-align: center;
    }

    .feature-title {
        text-align: center;
    }

    .feature-description {
        text-align: center;
    }

    .stepper-label {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stepper-items {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop pequeño - 769px a 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .header {
        margin: 20px;
    }

    .nav-links {
        display: flex;
        gap: 20px;
    }

    .nav-link {
        font-size: 18px;
    }

    .desktop-only {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero-content {
        flex-direction: row;
        text-align: left;
    }

    .hero-text {
        width: 50%;
        text-align: left;
    }

    .hero-image {
        width: 50%;
        left: 20px;
    }

    .hero-title {
        font-size: 48px;
        white-space: nowrap;
    }

    .section-title {
        font-size: 42px;
    }

    .future-content {
        flex-direction: row;
        align-items: center;
    }

    .future-text {
        flex: 1;
        text-align: left;
    }

    .future-title {
        text-align: left;
        font-size: 38px;
    }

    .future-video-container {
        flex: 1;
    }

    .creator-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .features-grid {
        flex: 1;
        grid-template-columns: 1fr;
    }

    .dashboard-preview {
        flex: 1;
    }

    .access-content {
        flex-direction: row;
        align-items: center;
    }

    .access-text {
        flex: 1;
        text-align: left;
    }

    .access-section .section-title {
        text-align: center;
    }

    .access-section .section-subtitle {
        text-align: center;
    }

    .access-phones {
        flex: 1;
    }

    .withdraw-content {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }

    .withdraw-text {
        flex: 1;
        text-align: left;
    }

    .withdraw-section .section-title {
        text-align: center;
    }

    .withdraw-section .section-subtitle {
        text-align: center;
    }

    .campaign-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    /* TEAM GRID DESKTOP PEQUEÑO */
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .member-photo {
        width: 220px;
        height: 220px;
    }

    .team-grid-small {
        grid-template-columns: repeat(4, 1fr);
    }

    .member-photo-small {
        width: 120px;
        height: 120px;
    }

    /* TRUST SECTION DESKTOP PEQUEÑO */
    .trust-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .brand-logos {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        max-width: 1000px;
    }

    .brand-logo {
        height: 100px;
        max-width: 180px;
    }

    .management-section .access-text {
        text-align: left;
    }

    .management-section .section-title {
        text-align: center;
    }

    .management-section .section-subtitle {
        text-align: left;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links {
        flex-direction: row;
        text-align: left;
        gap: 40px;
    }

    .app-stores {
        align-items: flex-start;
    }
}

/* Desktop - 1025px en adelante */
@media (min-width: 1025px) {
    .section {
        padding: 80px 32px;
    }

    .hero-section {
        padding: 120px 32px 80px;
    }

    .hero-content {
        flex-direction: row;
        text-align: left;
        gap: 60px;
    }

    .hero-text {
        width: 45%;
        text-align: left;
    }

    .hero-image {
        width: 100%;
        max-width: 900px;
        left: 80px;
    }

    .hero-title {
        font-size: 56px;
        white-space: nowrap;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 48px;
    }

    .section-subtitle {
        font-size: 20px;
    }

    .future-content {
        flex-direction: row;
        align-items: center;
    }

    .future-text {
        flex: 1;
        text-align: left;
    }

    .future-title {
        text-align: left;
        font-size: 44px;
    }

    .future-video-container {
        flex: 1;
    }

    .creator-content {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }

    .features-grid {
        flex: 1;
        grid-template-columns: 1fr;
    }

    .dashboard-preview {
        flex: 1;
        max-width: 500px;
    }

    .access-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .access-text {
        flex: 1;
        text-align: left;
    }

    .access-section .section-title {
        text-align: left;
    }

    .access-section .section-subtitle {
        text-align: left;
    }

    .access-phones {
        flex: 1;
    }

    .withdraw-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
        text-align: left;
    }

    .withdraw-text {
        flex: 1;
        text-align: right;
    }

    .withdraw-section .section-title {
        text-align: right;
    }

    .withdraw-section .section-subtitle {
        text-align: right;
    }

    .campaign-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    /* TEAM GRID DESKTOP */
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .member-photo {
        width: 340px;
        height: 340px;
    }

    .member-name {
        font-size: 22px;
    }

    .member-role {
        font-size: 16px;
    }

    .team-grid-small {
        grid-template-columns: repeat(5, 1fr);
    }

    .member-photo-small {
        width: 200px;
        height: 200px;
    }

    .member-name-small {
        font-size: 20px;
    }

    .member-role-small {
        font-size: 16px;
    }

    /* TRUST SECTION DESKTOP */
    .trust-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .brand-logos {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        max-width: 1200px;
    }

    .brand-logo {
        height: 160px;
        max-width: 320px;
    }

    .management-section .access-content:first-child .access-text {
        text-align: right;
    }

    .management-section .access-content:first-child .section-title {
        text-align: right;
    }

    .management-section .access-content:first-child .section-subtitle {
        text-align: right;
    }

    .management-section .access-content:last-child .access-text {
        text-align: left;
    }

    .management-section .access-content:last-child .section-title {
        text-align: left;
    }

    .management-section .access-content:last-child .section-subtitle {
        text-align: left;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links {
        flex-direction: row;
        text-align: left;
        gap: 60px;
    }

    .app-stores {
        align-items: flex-start;
    }

    .phone-stack {
        max-width: 450px;
    }

    .store-button {
        width: 140px;
        height: 42px;
    }

    .stepper-items {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .stepper-icon {
        width: 48px;
        height: 48px;
    }

    .stepper-label {
        font-size: 12px;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop grande - 1441px en adelante */
@media (min-width: 1441px) {
    .section {
        padding: 100px 48px;
    }

    .hero-title {
        font-size: 55px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .section-title {
        font-size: 54px;
    }

    .future-title {
        font-size: 48px;
    }

    .hero-image {
        max-width: 800px;
    }

    .dashboard-preview {
        max-width: 500px;
    }

    .phone-stack {
        max-width: 500px;
    }

    /* TRUST SECTION DESKTOP GRANDE */
    .brand-logos {
        gap: 50px;
    }

    .brand-logo {
        height: 100px;
        max-width: 320px;
    }
}

/* Ajustes especiales para pantallas muy pequeñas */
@media (max-width: 359px) {
    .hero-title {
        font-size: 24px;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
        font-size: 13px;
    }

    .future-title {
        font-size: 20px;
        text-align: center;
    }

    .campaign-title {
        font-size: 16px;
        text-align: center;
    }

    .campaign-description {
        text-align: center;
        font-size: 14px;
    }

    .feature-title {
        text-align: center;
        font-size: 14px;
    }

    .feature-description {
        text-align: center;
        font-size: 13px;
    }

    /* TEAM SECTION PANTALLAS MUY PEQUEÑAS */
    .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .member-photo {
        width: 180px;
        height: 180px;
    }

    .member-name {
        font-size: 16px;
    }

    .member-role {
        font-size: 12px;
    }

    .team-grid-small {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .member-photo-small {
        width: 100px;
        height: 100px;
    }

    .member-name-small {
        font-size: 14px;
    }

    .member-role-small {
        font-size: 11px;
    }

    /* TRUST SECTION PANTALLAS MUY PEQUEÑAS */
    .trust-title {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .brand-logos {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0 20px;
    }

    .brand-logo {
        height: 50px;
        max-width: 100px;
    }

    .store-button {
        width: 90px;
        height: 28px;
    }

    .video-responsive-wrapper {
        padding-bottom: 85%;
        /* Más alto para pantallas muy pequeñas */
    }
}

/* Clase utilidad para orden inverso en móvil */
@media (max-width: 768px) {
    .reverse-mobile {
        flex-direction: column-reverse;
    }
}

/* Optimización para dispositivos móviles */
@media (max-width: 768px) {
    .mobile-device {
        --animation-duration: 0.2s;
    }

    .mobile-device * {
        animation-duration: var(--animation-duration) !important;
        transition-duration: var(--animation-duration) !important;
    }
}

/* Preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .reduce-motion * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Mejora de rendimiento para dispositivos táctiles */
@media (hover: none) and (pointer: coarse) {
    .interactive:hover {
        transform: none;
    }

    .card:hover {
        box-shadow: none;
    }

    .feature-card:hover,
    .campaign-card:hover,
    .team-member:hover,
    .team-member-small:hover {
        transform: none;
    }
}