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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, #121019 0%, #272335 100%);
    color: #ffffff;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: fit-content;
    min-width: 0;
    height: 60px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    gap: 20px;
    background: rgba(18, 16, 25, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

header .lang-container {
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease;
}

header .header-stores {
    display: none;
    opacity: 0;
    position: static;
    transform: none;
    pointer-events: none;
}

header.scrolled .lang-container {
    display: none;
}

header.scrolled .header-stores {
    display: flex;
    opacity: 1;
    pointer-events: all;
    gap: 10px;
    position: relative;
    right: auto;
    top: auto;
    margin-left: 20px;
    animation: fadeInStores 0.4s ease forwards;
}

header .logo {
  height: 18px;
  margin-right: 5px;
  padding-top: 4px;
  cursor: pointer;
}

@keyframes fadeInStores {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.header-nav ul {
    display: flex;
    color: #9b8b99;
    align-items: center;
    cursor: pointer;
    gap: 30px;
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    transition: all 0.5s;
}

.header-nav ul li:hover,
.header-nav ul li.active {
    color: #ffffff;
}

.hamburger-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
    
    width: 50px; 
    align-items: center;
    justify-content: center;
}

.hamburger-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity 0.3s ease;
    margin-top: 5px;
}

.hamburger-btn.active .hamburger-logo-img {
    opacity: 0.8; 
}

@media (max-width: 900px) {
    .hamburger-btn { 
        display: flex; 
        order: -1;
    }
}

.circle-flag {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.circle-flag svg {
    width: 100%;
    height: 100%;
    display: block;
}
.select-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 6px;
    border-radius: 50px; 
    transition: background-color 0.2s;
}

.mini-store-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.2s ease;
}

.mini-store-btn:hover {
    transform: scale(1.1);
    background: rgb(255 255 255 / 21%);
}

.mini-store-btn svg { 
    width: 18px; 
    height: 18px;
    fill: currentColor;
    display: block;
}

.lang-container {
    margin-left: 30px;
    position: relative;
    z-index: 1100;
    transition: all 0.3s ease;
}

.custom-select {
    position: relative;
    user-select: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}

.select-trigger {
    display: flex;
    align-items: center;
    gap: 6px; 
    cursor: pointer;
    padding: 4px; 
    border-radius: 50px;
    transition: background 0.2s;
}

.chevron-icon svg {
    width: 16px; 
    height: 16px;
    opacity: 0.7;
}

.custom-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 8px; 
}

.custom-option:hover {
    background-color: #f5f5f5;
}

.select-trigger:hover,
.custom-select.open .select-trigger {
    background: rgba(255, 255, 255, 0.1);
    border-color: #AF6EEF;
    color: #ffffff;
}

.flag-icon svg {
    width: 20px;
    display: block;
    border-radius: 2px;
    object-fit: cover;
}

.chevron-icon svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
    margin-top: 1px;
}

.custom-select.open .chevron-icon svg {
    transform: rotate(180deg);
}

.custom-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #9b8b99;
    transition: background 0.2s;
}

.custom-option:hover {
    background: rgba(175, 110, 239, 0.1);
    color: #ffffff;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(18, 16, 25, 0.98);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 30px;
    justify-content: center;
    gap: 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    padding-top: 60px;
}

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

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
}

.mobile-menu ul li {
    color: #9ca3af;
    font-size: 16px;
    cursor: pointer;
    transition: color 0.3s ease;
    text-align: center;
}

.mobile-menu ul li:hover,
.mobile-menu ul li.active {
    color: #ffffff;
}

.mobile-menu-stores {
    display: flex;
    gap: 20px;
    align-items: center;
}

.mobile-menu-stores .mini-store-btn {
    width: 50px;
    height: 50px;
}

.mobile-menu-stores .mini-store-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    display: block;
}

.header-content {
    position: relative;
    z-index: 2;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: end;
    max-width: 545px;
}

.header-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.animate-in {
    opacity: 0;
    transform: translateX(20px);
    animation: slideInRight 0.8s cubic-bezier(0.5, 0, 0, 1) forwards;
}

@keyframes slideInRight { to { opacity: 1; transform: translateX(0); } }

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active { opacity: 1; transform: translateY(0); }
.delay-100 { animation-delay: 0.1s; transition-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; transition-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; transition-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; transition-delay: 0.4s; }
.delay-600 { animation-delay: 0.6s; transition-delay: 0.6s; }

.intro-section p, .security-section p, .download-section p, .contact-section p.section-desc {
    font-size: 18px;
    color: #9b8b99;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.security-section p {
  margin: 10px auto 0;
  max-width: 500px;
}

.download-section p {
  margin: 0 auto 30px;
}

.security-section { padding: 80px; background: #1D1B24; text-align: center; }

.download-section { padding: 80px 0; background: linear-gradient(135deg, #282235 0%, #1D1B24 100%); text-align: center; }
.download-title { display: flex; gap: 0.5rem; width: fit-content; margin: 0 auto 24px; align-items: center; justify-content: center; }
.download-title h2 { margin: 0; }
.download-title img { padding-top: 10px; }

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.store-button-glass {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: white;
    overflow: hidden;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.1); 
    isolation: isolate;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(175, 110, 239, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.store-button-glass::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
    border-radius: 16px 16px 0 0;
    pointer-events: none;
}

.store-button-glass::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 30%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, transparent 100%);
    border-radius: 0 0 16px 16px;
    pointer-events: none;
}

.store-button-glass:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(175, 110, 239, 0.08) 100%);
    backdrop-filter: blur(70px) saturate(220%) brightness(1.15);
    -webkit-backdrop-filter: blur(70px) saturate(220%) brightness(1.15);
}

.store-button-glass:active {
    transform: translateY(0);
    backdrop-filter: blur(50px) saturate(200%) brightness(1.05);
    -webkit-backdrop-filter: blur(50px) saturate(200%) brightness(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), 0 1px 4px rgba(175, 110, 239, 0.2), inset 0 2px 4px rgba(0, 0, 0, 0.25);
}

.store-button-glass > span {
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.store-icon {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.4));
}

.legal-page-body {
    background: #121019;
    padding-top: 100px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    color: #d1b0f1;
}

.legal-container h1 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(175, 110, 239, 0.2);
}

.legal-container h2 {
    color: #d1b0f1;
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.legal-container h3 {
    color: #FFF;
    font-size: 18px;
    margin-bottom: 10px;
}

.legal-container .legal-update { font-size: 12px; color: #9b8b99; }
.legal-container p { font-size: 16px; line-height: 1.6; margin-bottom: 15px; color: #e1d0df; }
.legal-container a { color: #AF6EEF; }
.legal-container a:hover { color: #AF6EEF; }
.legal-container ul { margin-left: 20px; margin-bottom: 20px; color: #e1d0df; }
.legal-container ul strong { color: #FFF; }
.legal-container li { margin-bottom: 10px; line-height: 1.6; }

.legal-content { display: none; }
.legal-content.active { display: block; }

.security-showcase {
    position: relative;
    max-width: 800px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.showcase-image-container {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    background: #282235;
    position: relative;
}

.layer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

.layer-img.changing { opacity: 0; }

.ios-switcher-wrapper {
    margin-top: -20px;
    z-index: 10;
    padding: 10px;
}

.ios-switcher {
    position: relative;
    display: flex;
    background: #27252f;
    border-radius: 18px;
    padding: 4px;
    width: 100%;
    max-width: 500px;
    min-width: 350px;
    margin: 0 auto;
    gap: 0;
}

.glider {
    position: absolute;
    top: 4px;
    left: 0;
    height: calc(100% - 8px);
    background: #ffffff;
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1;
    width: 0;
}

.switcher-btn {
    flex: 1;
    width: auto;
    min-width: 0;
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    padding: 12px 0;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: color 0.3s ease;
    color: #9b8b99;
}

.switcher-btn .icon svg { width: 24px; height: 24px; stroke-width: 2px; }
.switcher-btn .label { font-size: 11px; font-weight: 600; letter-spacing: 0.5px; }
.switcher-btn.active { color: #121019; }
.switcher-btn:hover:not(.active) { color: #ffffff; }

.switcher-btn.small-icon { padding: 8px 0 12px 0; gap: 2px; }
.switcher-btn.small-icon .icon svg { width: 28px; height: 28px; }

.showcase-info { text-align: center; max-width: 600px; animation: fadeIn 0.5s ease; }
.showcase-info h3 { font-size: 24px; color: #ffffff; margin-bottom: 12px; }
.showcase-info p { font-size: 16px; color: #9b8b99; line-height: 1.6; }

.hero-visual {
    position: relative; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-glow {
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
    
    width: 120%; 
    height: 120%; 
    background: radial-gradient(circle, rgba(147, 51, 234, 0.4) 0%, rgba(147, 51, 234, 0) 70%);
    filter: blur(60px); 
    z-index: -1; 
    border-radius: 50%;
    pointer-events: none; 
}

.phone-img {
    width: 100%;
    max-width: 400px; 
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.pill-badge {
    background: rgba(147, 51, 234, 0.15);
    color: #d8b4fe;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(90deg, #a855f7, #d8b4fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.2rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.store-btn-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.store-btn-modern:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
}

.store-btn-modern img { width: 24px; height: 24px; }
.store-btn-modern div { display: flex; flex-direction: column; }
.store-btn-modern span { font-size: 0.7rem; opacity: 0.7; }
.store-btn-modern strong { font-size: 1rem; }

.hero-trust p {
    color: #6b7280;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-modern {
    background-color: #0d0d12; 
    padding: 100px 0 20px;    
    overflow: hidden;         
    min-height: 85vh;         
    display: flex;
    align-items: center;      
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.store-button-glass.hero-btn {
    padding: 10px 24px;
    height: auto;      
    align-items: center;
    gap: 12px;
}

.btn-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.small-text {
    font-size: 0.7rem;
    opacity: 0.8;
    font-weight: 400;
    text-transform: uppercase; 
}

.big-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.features-modern {
    padding: 80px 0;
    background-color: #0d0d12; 
    position: relative;
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.6;
}

.features-grid {
    max-width: 1200px;  
    margin: 0 auto;     
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px;
    padding: 0 20px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.05); 
    border-radius: 24px; 
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start; 
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(168, 85, 247, 0.3); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-box svg {
    width: 30px;
    height: 30px;
    color: white;
}

.gradient-1 { background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%); box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3); }
.gradient-2 { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3); }
.gradient-3 { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3); }

.feature-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.6;
}

.contact-modern {
    padding: 80px 0;
    background-color: #0d0d12;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden; 
}

.contact-glass-card {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.03); 
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px; 
    padding: 60px 40px;
    text-align: center;
    margin: 0 auto;
    z-index: 2;
}

.contact-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.15) 0%, rgba(0,0,0,0) 70%); 
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.contact-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e; 
    animation: pulse 2s infinite;
}

.status-badge span {
    color: #4ade80; 
    font-size: 0.85rem;
    font-weight: 600;
    padding-bottom: 2px;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.contact-title {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 1.15rem;
    color: #9ca3af;
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.6;
}

.whatsapp-btn-glow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25D366; 
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn-glow:hover {
    background-color: #20bd5a;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

.footer-modern {
    background-color: #0d0d12;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden; 
}

.footer-modern .container {
    max-width: 1200px;  
    margin: 0 auto;     
    padding: 0 20px;    
    width: 100%;        
}

.download-section .container {
    max-width: 1200px;  
    margin: 0 auto;     
    padding: 0 20px;    
    width: 100%;        
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr; 
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.footer-slogan {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-top: 15px;
    line-height: 1.6;
    max-width: 250px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    color: #6b7280;
    display: inline-block;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover { 
    color: white; 
    transform: scale(1.2); 
}
.footer-socials svg { width: 20px; height: 20px; }

.footer-download {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
    color: #9ca3af;
}

.footer-download a {
    width: fit-content!important;
    display: flex!important;
    gap: 10px;
    background: none!important;
}

.footer-download .mini-store-btn {
  margin-bottom: 0;
  background: #ffffff0d;
  width: 23px;
  height: 23px;
}

.footer-download .mini-store-btn.google svg {
  width: 12px;
  height: 12px;
}

.footer-download .mini-store-btn.apple svg {
  width: 14px;
  height: 14px;
}

.footer-links-col h3 {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-col a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
    transform-origin: left center;
}

.footer-links-col a:hover { 
    color: #FFF; 
    transform: scale(1.05);
}

.footer-store-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white !important; 
    opacity: 0.8;
}

.footer-store-link:hover { opacity: 1; }
.footer-store-link img { width: 18px; height: 18px; }

.footer-bottom-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #6b7280;
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

.footer-legal-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-legal-links a {
    color: #6b7280;
    text-decoration: none;
    
    display: inline-block; 
    transition: color 0.2s, transform 0.2s ease;
}

.footer-legal-links a:hover { 
    color: #FFF; 
    transform: scale(1.05);
}
.separator { opacity: 0.3; }

.footer-watermark {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 400px;
    opacity: 0.03; 
    pointer-events: none;
    transform: rotate(-15deg);
    z-index: 1;
}

@media (max-width: 900px) {
    header { 
        width: fit-content; 
        padding: 0 20px; 
        transform: unset;
        left: 20px;
        gap: 20px; 
        justify-content: space-between;
        top: 5px;
    }

    header.scrolled .header-stores { margin-left: 0; }
    
    .logo { height: 25px!important; }
    .header-nav { display: none; }
    
    .hamburger-btn { 
        display: flex; 
        order: -1;
    }

    .mini-store-btn.apple svg {
      width: 28px;
      height: 28px;
      padding-bottom: 2px;
    }

    .mini-store-btn.google svg {
      width: 22px;
      height: 22px;
    }

    .mini-store-btn {
      width: 40px;
      height: 40px;
    }
    
    header .lang-container { 
        display: block; 
        margin-left: 0; 
        order: 2;
    }

    .mobile-menu {
      top: 80px;
      height: 170px;
      width: 200px;
      background: rgba(18, 16, 25, 0.3);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
      border: none;
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    .mobile-menu.active {
      top: 80px;
      height: 170px;
      width: 200px;
      left: 20px;
      border-radius: 20px;
      overflow: hidden;
      right: unset;
      padding-top: unset;
    }

    .custom-select { 
        font-size: 16px;
    }
    
    .select-trigger { 
        gap: 0;
        background: none;
        padding: 0;
    }

    .circle-flag {
        width: 35px; 
        height: 35px;
    }

    .flag-icon svg {
        width: 35px;
        border-radius: 10px;
    }
    
    .chevron-icon svg {
        display: none;
    }
    
    .custom-option {
        padding: 12px 16px;
        font-size: 16px;
    }

    /* Logic to show stores on scroll */

    /* --- HERO MOBILE --- */
    .hero-modern { padding: 110px 0 60px; text-align: center; }
    .hero-grid { grid-template-columns: 1fr; gap: 60px; }
    .hero-visual { order: -1; }
    .hero-title { font-size: 2.5rem; }
    .hero-content { display: flex; flex-direction: column; align-items: center; }
    .btn-text-col { align-items: center; }
    .phone-img { max-width: 280px; }
    .hero-cta-group { justify-content: center; justify-content: center; flex-direction: column; width: 100%; }

    /* --- FEATURES MOBILE --- */
    .features-modern { padding: 60px 0; }
    .features-grid { grid-template-columns: 1fr; gap: 40px; }
    .feature-card { align-items: center; text-align: center; padding: 30px; }

    /* --- SECURITY MOBILE --- */
    .security-section { padding: 60px 20px; }
    .showcase-image-container { aspect-ratio: 4/3; }
    .ios-switcher-wrapper { margin-top: -30px; }
    .switcher-btn, 
    .switcher-btn.small-icon { 
        padding: 10px 0;      
        min-width: 0;        
        flex: 1 1 0px;        
    }
    .switcher-btn .label { display: none; }

    /* --- DOWNLOAD MOBILE --- */
    .download-section h2 { font-size: 2rem; }
    .header-cta { flex-direction: column; width: 100%; }
    .store-button-glass { width: 100%; justify-content: center; }

    /* --- CONTACT MOBILE --- */
    .contact-modern { padding: 60px 0; }
    .contact-glass-card { width: 90%; padding: 40px 20px; }
    .contact-title { font-size: 2rem; }
    .whatsapp-button { width: 100%; justify-content: center; }

    /* --- FOOTER MOBILE --- */
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; margin-bottom: 30px; }
    .footer-links-col:not(:last-child) { margin-bottom: 10px; }
    .footer-bottom-modern { flex-direction: column; gap: 15px; text-align: center; }
    .footer-links-col a { justify-content: center; margin: 10px auto; }
    .footer-store-link { justify-content: center;  }
    .footer-email-link { font-size: 20px!important; }
    .footer-watermark { display: none; }

    .footer-socials a { width: 40px; height: 40px; }
    .footer-socials svg { width: 100%; height: 100%; }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(3, 1fr); 
        gap: 0px;
        width: 100%;
    }

    .footer-links-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 66%;
        margin: 0 auto;
    }

    .footer-links a, .footer-links-2 a {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 14px;
    }

    .footer-links-col h3 {
      margin-bottom: 0;
    }
}

/* =========================================
   ANTI-PARPADEO DE IDIOMA
   ========================================= */

body.loading-lang [data-i18n] {
    opacity: 0 !important;
    pointer-events: none;
}

[data-i18n] {
    transition: opacity 0.3s ease-in;
    opacity: 1;
}

/* =========================================
   FIX: MENÚ DE IDIOMA FLOTANTE (PORTAL)
   ========================================= */

.select-options {
    width: 200px;
    top: 62px;
    right: -10px;
    left: auto;
    border-radius: 20px;
    overflow: hidden;
    position: fixed !important;
    z-index: 9999 !important;
    
    background: rgba(18, 16, 25, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    
    pointer-events: none;
}

.select-options.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.custom-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: #9ca3af;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
}

.custom-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.custom-option.selected {
    background: rgba(175, 110, 239, 0.1);
    color: #ffffff;
}