/* ==========================================================================
   Kuantip Design System & Custom Stylesheet
   ========================================================================== */

/* Design Tokens */
:root {
    --primary-green: #6cd87e;
    --primary-green-hover: #7de88e;
    --deep-blue: #10016c;
    --dark-violet: #020045;
    --text-white: #ffffff;
    --text-light-teal: #aae9be;
    --text-muted: #b8b6cf;
    --bg-white: #ffffff;
    --border-rgba: rgba(255, 255, 255, 0.2);

    /* Fonts */
    --font-headers: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('assets/fonts/Poppins-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 90px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1 {
    font-size: clamp(1.625rem, 1.3rem + 1.6vw, 2.375rem) !important;
    font-weight: 900;
}

h2 {
    font-size: clamp(1.25rem, 1.03rem + 1.1vw, 1.75rem) !important;
}

h3 {
    font-size: clamp(1.063rem, 0.98rem + 0.4vw, 1.25rem) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headers);
}

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

.text-white {
    color: var(--text-white) !important;
}

.text-blue {
    color: var(--deep-blue) !important;
}

.text-violet {
    color: var(--dark-violet) !important;
}

.text-green {
    color: var(--primary-green) !important;
}

.text-bold {
    font-weight: 900 !important;
}

.text-semibold {
    font-weight: 600 !important;
}

.text-normal {
    font-weight: 300 !important;
}


.px-5 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
}



.sub-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Container */
.container {
    width: 100%;
    max-width: 70vw;
    margin: 0 auto;
    padding: 0px;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: transparent;
    padding: 16px 0;
    transition: background-color 0.3s ease, border-color 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}

.main-header.scrolled {
    background-color: var(--dark-violet);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--dark-violet);
    padding: 16px 0;
}

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

.logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-family: var(--font-headers);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link.active {
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-green);
}

/* CTA Navigation Button - Bubble Outline */
.bubble-outline-btn {
    display: inline-block;
    background-image: url('assets/images/00_menuglobo.webp');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    padding: 6px 8px 22px 8px;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    margin-top: 16px;
}

.bubble-outline-btn:hover {
    transform: scale(1.05);
    opacity: 0.95;
}

/* Mobile Toggle Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 0px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-white);
    position: absolute;
    transition: transform 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav-toggle.active .hamburger {
    background-color: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    padding: 100px 0 20px 0;
    position: relative;
    top: -102px;
    display: flex;
    align-items: center;
    background-color: #020045;
    background-image: url('assets/images/00_headback.webp');
    background-size: 100%;
    background-position: 100% 108%;
    background-repeat: no-repeat;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-description {
    color: var(--text-light-teal);
    font-size: clamp(0.938rem, 0.85rem + 0.4vw, 1.125rem) !important;
    line-height: 1.3;
    margin-bottom: 32px;
    font-weight: 300;
    margin-top: 1rem;
}

.hero-notice {
    font-size: clamp(0.938rem, 0.85rem + 0.4vw, 1.125rem) !important;
    line-height: 1.3;
    color: var(--text-white);
    margin-bottom: 40px;
}

/* Custom Speech Bubble Solid Button */
.btn {
    display: inline-block;
    padding: 16px 40px 24px 40px;
    font-family: var(--font-headers);
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    text-align: center;
}

.bubble-green-btn {
    background-image: url('assets/images/01_index_01-btnback.webp');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    color: var(--dark-violet) !important;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.bubble-green-btn:hover {
    transform: scale(1.05);
    opacity: 0.95;
}

.hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 60px 40px;
    border-radius: 40px;
    margin-bottom: -180px;
    z-index: 5;
}

.hero-mockup-img {
    max-width: 70%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ==========================================================================
   Values Section (Green Curved Area)
   ========================================================================== */
.values-section {
    background-color: var(--primary-green);
    padding: 134px 0 64px 0;
    margin-top: -115px;
    background-image: url('assets/images/02_back.webp');
    background-size: auto;
    background-position: 100% 0%;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 35% 45vw;
    border-bottom-right-radius: 35% 45vw;
}

.section-title {
    line-height: 1;
    margin-bottom: 24px;
    color: var(--deep-blue);
}

.section-subtitle {
    line-height: 1.3;
}

/* .section-subtitle-2 {
    font-size: clamp(2rem, 4vw, 1.5rem) !important;
    line-height: 1.2;
    font-weight: 100;
    color: rgb(78, 78, 78);
} */

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.value-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
}

.value-icon {
    max-width: 70%;
    height: auto;
    margin-top: 40px;
}

.values-bottom-text {
    margin-top: 40px;
}

.bottom-headline {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-top: 10px;
}

/* ==========================================================================
   About Section "¿Qué es Kuantip?"
   ========================================================================== */
.about-section {
    padding: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about-container-fluid {
    position: relative;
    width: 100%;
    min-height: 750px;
    display: flex;
    justify-content: center;
}

.about-image-col {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
}

.about-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.about-content-col {
    width: 100%;
    max-width: 1000px;
    /* Matches container max-width */
    display: flex;
    justify-content: flex-end;
    /* Push text to the right */
    align-items: center;
    padding: 80px 24px;
}

.about-content-inner {
    max-width: 34vw;
}

.about-title {
    margin-bottom: 12px;
}

.about-subtitle {
    margin-bottom: 24px;
}

.about-paragraph {
    line-height: 1.35;
    margin-bottom: 24px;
    opacity: 0.95;
    max-width: 28vw;
}

/* ==========================================================================
   Te ayudamos Section (Circles)
   ========================================================================== */
.features-section {
    background-color: var(--bg-white);
    padding: 100px 0;
}

.features-circle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 100px;
}

.feature-circle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.feature-circle-card:hover {
    transform: translateY(-5px);
}

.circle-image-wrapper {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circle-title {
    max-width: 90%;
    margin: 0 auto;
    line-height: 1.4;
}

/* ==========================================================================
   Showcase / Future Section
   ========================================================================== */
.showcase-section {
    background-color: var(--bg-white);
    padding: 60px 0 0 0;
    overflow: hidden;
    background-image: url(assets/images/01_index_05-back.webp);
    background-repeat: no-repeat;
    background-position: 50%;
}

.section-subtitle-green {
    font-size: 1.75rem;
    font-weight: 200;
    color: var(--primary-green);
    margin: -15px auto 48px auto;
}

.showcase-phones-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    padding: 40px 20px;
}

.showcase-phones-img {
    max-width: 860px;
    width: 100%;
    height: auto;
}

.download-block {
    margin-bottom: 150px;
}

.store-btn {
    display: flex;
    justify-content: center;
}

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

.store-buttons h1 {
    width: 100%;
    text-align: center;
}

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

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

.showcase-wave-divider {
    width: 100%;
    line-height: 0;
}

.wave-divider-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   CTA & Footer Section
   ========================================================================== */
.cta-section {
    padding: 100px 0 30px 0;
    position: relative;
    background-image: url('assets/images/00_footerback.webp');
    background-repeat: no-repeat;
    background-position: 100% 100%;
    background-size: cover;
}

/* Overlapping Coin Positioning */
.overlapping-coin-container {
    position: absolute;
    top: 0;
    left: 12%;
    transform: translateY(-50%);
    z-index: 10;
}

.overlapping-coin {
    width: 30%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(108, 216, 126, 0.4));
    animation: floatCoin 5s ease-in-out infinite;
}

@keyframes floatCoin {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(3deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.cta-title {
    line-height: 1.5;
    margin-bottom: 10px;
}

.cta-actions {
    margin-bottom: 80px;
}

.btn-large {
    padding: 6px 32px 32px 32px;
    font-size: 1.2rem;
    color: white !important;
}

/* Footer structure */
.footer-wrapper {
    padding-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.15rem;
    transition: color 0.3s ease;
}

.contact-info a {
    font-size: clamp(0.813rem, 0.77rem + 0.21vw, 0.938rem);
    font-weight: 400;
    ;
}

.contact-item:hover {
    color: var(--primary-green);
}

.contact-icon {
    width: 42px;
}

.footer-right {
    padding-left: 40px;
    border-left: 2px solid #6cd87e;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    text-decoration: none;
    font-size: clamp(0.813rem, 0.77rem + 0.21vw, 0.938rem);
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0 20px;
}

.copyright {
    font-size: clamp(0.688rem, 0.65rem + 0.17vw, 0.813rem);
    font-weight: 400;
    letter-spacing: 0.03em;
    color: var(--text-muted);
}

/* ==========================================================================
   Scroll to Top Button
   ========================================================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background-color: var(--primary-green);
    color: var(--dark-violet);
    border: 2px solid var(--dark-violet);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(108, 216, 126, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--primary-green-hover);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(108, 216, 126, 0.6);
}

/* ==========================================================================
   Como Funciona Page Styles
   ========================================================================== */
.como-hero-section {
    margin-top: -102px;
    padding: 160px 0 100px 0;
    position: relative;
    background-color: var(--deep-blue);
    background-image: url('assets/images/03_como_01head.webp');
    background-size: 100%;
    background-position: 100% 10%;
    background-repeat: no-repeat;
    min-height: 86vh;
    display: flex;
    align-items: center;
}

.como-hero-content {
    max-width: 60vw;
    text-align: left;
}

.como-hero-title {
    line-height: 1;
    margin-bottom: 20px;
}

.como-hero-description {
    margin-bottom: 10px;
}

.como-hero-description-2 {
    margin: 0 0 60px 0;
    line-height: 1.3;
}

.como-steps-section {
    padding: 100px 0 260px;
    background-color: var(--bg-white);
}

.steps-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
    margin-top: 60px;
}

.step-row-card {
    display: flex;
    align-items: top;
    text-align: left;
    background: transparent;
    box-shadow: none;
    padding: 0px;
}

.step-icon-container {
    position: relative;
    flex-shrink: 0;
    width: 210px;
    height: 210px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon-img {
    max-width: 100%;
    max-height: 100%;
}

.step-number {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background-color: var(--primary-green);
    color: var(--text-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 1.1rem;
    border: 3px solid var(--bg-white);
}

.step-text-content {
    flex-grow: 1;
    padding-top: 32px
}

.step-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.step-desc {
    line-height: 1.2;
    margin: 0;
}

/* ==========================================================================
   Superpoderes Page Styles
   ========================================================================== */
.super-hero-section {
    margin-top: -102px;
    padding: 160px 0 100px 0;
    position: relative;
    background-color: var(--deep-blue);
    background-image: url('assets/images/02_super_01-head.webp');
    background-size: 100%;
    background-position: 100% 10%;
    background-repeat: no-repeat;
    min-height: 86vh;
    display: flex;
    align-items: center;
}

.super-hero-content {
    text-align: left;
}

.super-hero-title {
    line-height: 1.3;
    margin-bottom: 10px;
}

.super-hero-subtitle {
    margin-bottom: 20px;
    line-height: 1.3;
}

.super-hero-description {
    margin-bottom: 20px;
}

.super-hero-description-2 {
    line-height: 1.5;
    margin-bottom: 60px;
}

.super-list-section {
    padding: 100px 0 200px 0;
    background-color: var(--bg-white);
}

.super-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
    max-width: 60vw;
    margin-left: auto;
    margin-right: auto;
}

.super-card {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    gap: 30px;
}

.super-icon-wrapper {
    flex-shrink: 0;
    width: 230px;
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.super-icon {
    max-width: 100%;
    max-height: 100%;
}

.super-content {
    flex-grow: 1;
}

.super-title {
    font-size: 2.2rem;
    font-weight: 800;
}

.super-desc {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}

/* ==========================================================================
   FAQ Page Styles
   ========================================================================== */
.faq-hero-section {
    margin-top: -102px;
    padding: 240px 0 200px 0;
    min-height: 86vh;
    background-color: var(--deep-blue);
}

.faq-hero-content {
    text-align: left;
}

.faq-hero-title {
    margin-bottom: 50px;
}

.faq-hero-subtitle {
    margin-bottom: 60px;
    line-height: 1;
}

.faq-hero-description {
    line-height: 1.4;
    margin: 0;
}

.faq-content-section {
    padding: 80px 0 160px 0;
    background-color: var(--bg-white);
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category-title {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-green);
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.3s ease;
    color: var(--primary-green);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-dark, #333);
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 20px 20px 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        width: 100%;
        max-width: 96vw;
        margin-left: auto;
        margin-right: auto;
        padding: 0px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .steps-grid-2x2 {
        grid-template-columns: 1fr;
    }

    .hero-description,
    .hero-notice {
        margin-left: auto;
        margin-right: auto;
    }

    /* Hero Section Mobile Adjustments */
    .hero-image-wrapper {
        display: none !important;
    }

    .hero-mockup-img {
        max-width: 80%;
    }

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

    .about-image-col {
        height: 380px;
    }

    .about-content-col {
        padding: 60px 40px;
    }

    .about-content-inner {
        max-width: 100%;
    }

    .overlapping-coin-container {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .about-paragraph {
        max-width: 100%;
    }

    .como-hero-content {
        max-width: 100%;
    }

    .super-grid {
        max-width: 100%;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {

    .container {
        width: 100%;
        max-width: 86vw;
        margin-left: auto;
        margin-right: auto;
        padding: 0px;
    }

    /* Header Toggle */
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        display: inline;
        align-items: center;
        background-color: var(--dark-violet);
        padding: 70px 0px 0px 32px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

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

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
    }

    .nav-link.active {
        color: var(--primary-green) !important;
    }

    .nav-link.active::after {
        display: none;
    }

    .bubble-outline-btn {
        width: 100%;
        text-align: center;
    }

    /* Header Mobile Adjustments */
    .desktop-logo {
        display: none !important;
    }

    .mobile-logo {
        display: block !important;
    }

    .main-header {
        background-color: var(--bg-white) !important;
        border-bottom-color: var(--bg-white) !important;
        padding: 12px 0px;
    }

    .main-header.scrolled {
        background-color: rgba(255, 255, 255, 0.95) !important;
        padding: 12px 12px 12px 16px;
        position: fixed;
        left: 0;
        right: 0;
        z-index: 1000;
    }

    .hamburger,
    .hamburger::before,
    .hamburger::after {
        background-color: var(--deep-blue) !important;
    }

    .nav-toggle.active .hamburger {
        background-color: transparent !important;
    }

    .nav-toggle.active .hamburger::before,
    .nav-toggle.active .hamburger::after {
        background-color: var(--text-white) !important;
    }

    /* Hero Section Mobile Adjustments */
    .hero-image-wrapper {
        display: none !important;
    }

    .hero-section {
        background-image: none !important;
        background-color: var(--deep-blue) !important;
        padding-bottom: 0px !important;
    }

    .hero-container {
        text-align: left !important;
        padding: 0 !important;
        margin-bottom: -42px;
    }

    .hero-title {
        padding-top: 32px;
        line-height: 1.1;
        margin-bottom: 24px;
        font-weight: 600;
    }

    .hero-content .bubble-outline-btn {
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
        margin-top: 0;
        width: 250px;
        text-align: center;
    }

    /* Values Section Mobile Adjustments */
    .values-section {
        background-color: var(--bg-white) !important;
        background-image: none !important;
        border-radius: 0 !important;
        margin-top: -32px !important;
        padding-top: 0px;
    }

    .values-section .section-title {
        color: var(--deep-blue);
    }

    .values-section .section-subtitle {
        color: var(--primary-green) !important;
    }

    /* About Section Mobile Adjustments */
    .about-image-col {
        display: none !important;
    }

    .about-section {
        background-image: none !important;
        background-color: var(--deep-blue) !important;
    }

    .about-container-fluid {
        min-height: auto;
    }

    /* Layout */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-grid-2x2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .super-card {
        flex-direction: column;
        text-align: center;
    }

    .super-icon-wrapper {
        margin: 0 auto;
    }

    .como-hero-title,
    .super-hero-title,
    .faq-hero-title {
        font-size: clamp(2rem, 6vw, 2rem);
    }

    .super-hero-section {
        margin-top: 0px;
        background-position: 100% 0%;
        padding: 96px 0px 0px 0px;
        align-items: flex-start;
        min-height: 70vh;
    }

    .value-card {
        max-width: 230px;
        margin: 0 auto;
    }

    .value-icon {
        max-width: 95%;
    }

    .px-5 {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }

    .features-circle-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 8vw;
    }

    .footer-right {
        padding-left: 0;
        border-left: none;
        width: 100%;
    }

    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .overlapping-coin {
        width: 160px;
    }

    .values-bottom-text .text-white {
        color: var(--deep-blue) !important;
    }

    .store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .hero-mockup-img {
        max-width: 100%;
    }

    .circle-image-wrapper {
        width: 180px;
        height: 180px;
    }

    .footer-links {
        flex-direction: column;
        gap: 14px;
    }
}

/* --- CLASE PARA DESACTIVAR BOTONES TEMPORALMENTE --- */
.disabled {
    pointer-events: none;
    opacity: 0;
    cursor: not-allowed;
}