/* Reset y configuración base */

/* Mobile Menu - Hidden by default */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu {
    display: none;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
    height: 100%;
    background: #0a0a0a;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    background-image: linear-gradient(135deg, #0a0a0a 0%, #320935 50%, #0a0a0a 100%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    position: relative;
    -webkit-background-size: cover;
}

/* Fix para iOS Safari */
@supports (-webkit-touch-callout: none) {
    html {
        height: 100%;
        min-height: 100%;
        background: #0a0a0a;
    }
    
    body {
        min-height: 100vh;
        min-height: -webkit-fill-available;
        height: auto;
        background-color: #0a0a0a;
        background-image: linear-gradient(135deg, #0a0a0a 0%, #320935 50%, #0a0a0a 100%);
        background-attachment: scroll;
        background-repeat: repeat-y;
        background-size: 100% 100%;
        -webkit-background-size: 100% 100%;
    }
}

/* Header/Navigation */
.header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background-color: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    z-index: 1000;
    border: 2px solid transparent;
    background-image: 
        linear-gradient(rgba(20, 20, 20, 0.8), rgba(20, 20, 20, 0.8)),
        linear-gradient(90deg, #00d4ff, #7b2ff7, #f107ff, #7b2ff7, #00d4ff);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-size: 100% 100%, 200% 200%;
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.6),
        0 0 40px rgba(123, 47, 247, 0.5),
        0 0 60px rgba(241, 7, 255, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all .8s ease;
    animation: neonPulse 3s ease-in-out infinite, gradientMove 4s linear infinite;
}

.header.scrolled {
    top: 10px;
    padding: 0;
    backdrop-filter: blur(5px);
    background-image: 
        linear-gradient(rgba(20, 20, 20, 0.9), rgba(20, 20, 20, 0.9)),
        linear-gradient(90deg, #00d4ff, #7b2ff7, #f107ff, #7b2ff7, #00d4ff);
    background-size: 100% 100%, 200% 200%;
    box-shadow: 
        0 0 15px rgba(0, 212, 255, 0.5),
        0 0 30px rgba(123, 47, 247, 0.4),
        0 0 45px rgba(241, 7, 255, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.5);
    width: 750px;

}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
    height: 70px;
    transition: all 1s ease;
}

.header.scrolled .nav {
    padding: 0.5rem 1.5rem;
    height: 55px;
    transition: all 1s ease;

}
.nav-brand{
    display: flex;
}

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

.nav-brand .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.header.scrolled .nav-brand .logo {
    width: 32px;
    height: 32px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: #888888;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header.scrolled .nav-link {
    font-size: 0.75rem;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-login {
    color: #888888;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: .8rem;
}

.header.scrolled .btn-login {
    font-size: 0.75rem;
}

.btn-login:hover {
    color: #e29117;
}

.btn-signup {
    background-color: #e29117;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: .8rem;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.header.scrolled .btn-signup {
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
}

.btn-signup:hover {
    background-color: #3D073B;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: block;
    padding: 0;
    background: radial-gradient(ellipse at top, rgba(50, 9, 53, 0.4) 0%, transparent 60%);
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: 100%;
}

.component-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #e29117;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

.component-tag i {
    font-size: 0.75rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title-italic {
    font-style: italic;
    color: #e29117;
}

.hero-description {
    font-size: 1.25rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.arrows-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.arrow {
    font-size: 0.875rem;
    color: #ffffff;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.arrow:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow:nth-child(3) {
    animation-delay: 0.4s;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #e29117;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-get-started:hover {
    background-color: #3D073B;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(123, 47, 247, 0.4), 0 0 45px rgba(241, 7, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.btn-get-started i {
    font-size: 1rem;
}

/* Trusted Section */
.trusted-section {
    margin-top: 4rem;
    padding: 0 2rem;
    background: transparent;
}

.trusted-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.trusted-text {
    color: #a0a0a0;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

/* Crypto Cards - Ultra Minimalista */
.crypto-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap:2rem 0rem;
    max-width: 900px;
    margin: 0 auto;
}

.crypto-card {
    background: transparent;
    padding: 0;
    text-align: center;
    transition: opacity 0.3s ease;
    width: 155px;
}

.crypto-card:hover {
    opacity: 0.8;
}

.crypto-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.5rem;
}

.crypto-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.crypto-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.crypto-algo {
    font-size: 0.75rem;
    color: #666666;
    margin-bottom: 0.125rem;
}

.crypto-market {
    font-size: 0.75rem;
    color: #666666;
}

.triangle-logo {
    width: 24px;
    height: 24px;
    background-color: #ffffff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.waves-logo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wave-line {
    width: 32px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 1px;
}

.wave-line:first-child {
    width: 24px;
}

.logo-icon {
    font-size: 1.5rem;
    color: #ffffff;
}

.n-logo {
    width: 32px;
    height: 32px;
    background-color: #666666;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes neonPulse {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(0, 212, 255, 0.6),
            0 0 40px rgba(123, 47, 247, 0.5),
            0 0 60px rgba(241, 7, 255, 0.4),
            0 8px 32px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(0, 212, 255, 0.8),
            0 0 60px rgba(123, 47, 247, 0.7),
            0 0 90px rgba(241, 7, 255, 0.6),
            0 8px 32px rgba(0, 0, 0, 0.3);
    }
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%, 0% 0%;
    }
    25% {
        background-position: 0% 0%, 100% 0%;
    }
    50% {
        background-position: 0% 0%, 100% 100%;
    }
    75% {
        background-position: 0% 0%, 0% 100%;
    }
    100% {
        background-position: 0% 0%, 0% 0%;
    }
}

/* Features Section */
.features-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(50, 9, 53, 0.3) 50%, transparent 100%);
    position: relative;
    z-index: 10;
    margin-top: 2rem;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #a0a0a0;
    margin-bottom: 4rem;
    text-shadow: 0 0 20px rgba(160, 160, 160, 0.3);
}

.features-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3rem;
}

/* Primera tarjeta: fila al 100% del ancho, tarjeta centrada (mismo ancho que una columna de abajo) */
.features-grid-lead {
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

.features-grid-lead .feature-card {
    width: 100%;
    max-width: calc((100% - 3rem) / 2);
}

/* Resto: flex + wrap en la fila siguiente */
.features-grid-rest {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;
    box-sizing: border-box;
}

.features-grid-rest .feature-card {
    flex: 1 1 calc((100% - 3rem) / 2);
    min-width: min(100%, 280px);
    max-width: calc((100% - 3rem) / 2);
}

.feature-card {
    background: linear-gradient(135deg, rgba(50, 9, 53, 0.3) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: block;
}

.feature-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(241, 7, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(123, 47, 247, 0.4), 0 0 45px rgba(241, 7, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.feature-card-link:hover .feature-title {
    color: #e29117;
}

.feature-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.feature-description {
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-visual {
    margin-top: auto;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Feature Image Container */
.feature-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-image-container:hover .feature-image {
    transform: scale(1.05);
}

.feature-image-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-image-container:hover .feature-image-overlay {
    opacity: 0.95;
}

.feature-image-overlay i {
    font-size: 2.5rem;
    color: #ffffff;
}

/* CLI Visual (Mantenido para compatibilidad) */
.cli-visual {
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    border-radius: 12px;
    padding: 2rem;
}

.cli-main-box {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cli-icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.cli-icon {
    width: 60px;
    height: 60px;
    background-color: #000000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
}

.cli-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
    height: 100%;
    padding: 1rem;
}

.cli-feature-item {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #333333;
    font-size: 0.75rem;
    font-weight: 500;
}

.cli-feature-item i {
    font-size: 1rem;
    color: #e29117;
}

/* Global Visual */
.global-visual {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.global-main-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.global-label {
    background-color: rgba(226, 145, 23, 0.2);
    color: #e29117;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(226, 145, 23, 0.3);
}

.global-earth {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.earth-grid {
    position: absolute;
    width: 100%;
    height: 100%;
}

.earth-line {
    position: absolute;
    background-color: #e29117;
    opacity: 0.6;
}

.earth-line:nth-child(1) {
    width: 100%;
    height: 2px;
    top: 20%;
    left: 0;
}

.earth-line:nth-child(2) {
    width: 100%;
    height: 2px;
    top: 40%;
    left: 0;
}

.earth-line:nth-child(3) {
    width: 100%;
    height: 2px;
    top: 60%;
    left: 0;
}

.earth-line:nth-child(4) {
    width: 2px;
    height: 100%;
    left: 20%;
    top: 0;
}

.earth-line:nth-child(5) {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
}

.earth-line:nth-child(6) {
    width: 2px;
    height: 100%;
    left: 80%;
    top: 0;
}

.earth-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #e29117;
    border-radius: 50%;
    box-shadow: 0 0 10px #e29117;
}

.dot:nth-child(1) { top: 15%; left: 15%; }
.dot:nth-child(2) { top: 15%; right: 15%; }
.dot:nth-child(3) { top: 50%; left: 10%; }
.dot:nth-child(4) { top: 50%; right: 10%; }
.dot:nth-child(5) { bottom: 15%; left: 15%; }
.dot:nth-child(6) { bottom: 15%; right: 15%; }
.dot:nth-child(7) { top: 30%; left: 50%; }
.dot:nth-child(8) { bottom: 30%; left: 50%; }

/* Analytics Visual */
.analytics-visual {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 2rem;
}

.analytics-main-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.analytics-chart {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 120px;
    width: 100%;
    justify-content: center;
}

.chart-bar {
    width: 20px;
    background: linear-gradient(to top, #e29117, #ffffff);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: growUp 1.5s ease-out;
}

@keyframes growUp {
    from {
        height: 0;
    }
    to {
        height: var(--height);
    }
}

.analytics-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    color: #ffffff;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Integrations Visual */
.integrations-visual {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border-radius: 12px;
    padding: 2rem;
}

.integrations-main-box {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-hub {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-center {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #11998e;
    font-size: 1.5rem;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.integration-item {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #11998e;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.integration-item:nth-child(odd) {
    animation-delay: 0.5s;
}

.item-1 { top: 10%; left: 50%; transform: translateX(-50%); }
.item-2 { top: 30%; right: 10%; }
.item-3 { bottom: 30%; right: 10%; }
.item-4 { bottom: 10%; left: 50%; transform: translateX(-50%); }
.item-5 { bottom: 30%; left: 10%; }
.item-6 { top: 30%; left: 10%; }

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

/* Tools Section */
.tools-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(50, 9, 53, 0.4) 50%, transparent 100%);
    position: relative;
    z-index: 10;
}

.tools-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.tools-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.tools-subtitle {
    font-size: 1.125rem;
    color: #a0a0a0;
    margin-bottom: 4rem;
}

.calculator-card {
    background: linear-gradient(135deg, rgba(50, 9, 53, 0.5) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
}

.calculator-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: end;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.input-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #a0a0a0;
}

.calc-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.875rem 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.calc-input:focus {
    outline: none;
    border-color: #e29117;
    background: rgba(255, 255, 255, 0.08);
}

.calc-input::placeholder {
    color: #666666;
}

.calc-input option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 0.5rem;
}

.calc-input select {
    cursor: pointer;
}

.calculator-comparison {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comparison-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.results-title {
    font-size: 1rem;
    font-weight: 500;
    color: #a0a0a0;
    margin-bottom: 0.5rem;
}

.crypto-prices-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.calculator-asof {
    margin: 0.5rem 0 0;
    font-size: 0.8rem;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

.crypto-price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #e29117;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
    cursor: pointer;
}

.crypto-price-display.loading {
    pointer-events: none;
}

.crypto-price-skeleton {
    width: 180px;
    height: 2rem;
    background: linear-gradient(90deg, 
        rgba(226, 145, 23, 0.1) 25%, 
        rgba(226, 145, 23, 0.2) 50%, 
        rgba(226, 145, 23, 0.1) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 8px;
    display: inline-block;
}

.crypto-price-secondary.loading {
    pointer-events: none;
}

.crypto-price-secondary-skeleton {
    width: 140px;
    height: 1.5rem;
    background: linear-gradient(90deg, 
        rgba(30, 124, 147, 0.1) 25%, 
        rgba(30, 124, 147, 0.2) 50%, 
        rgba(30, 124, 147, 0.1) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 8px;
    display: inline-block;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.crypto-price-display:hover {
    color: #00d4ff;
    border-bottom-color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.crypto-price-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 0.25rem;
}

.crypto-price-secondary {
    font-size: 1.5rem;
    color: #1E7C93;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.crypto-price-secondary::before {
    content: '+ ';
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
}

.crypto-price-secondary:hover {
    color: #7B2FF7;
    border-bottom-color: #7B2FF7;
    text-shadow: 0 0 10px rgba(123, 47, 247, 0.5);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.comparison-column {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
}

.comparison-column.hosting {
    border-color: rgba(32, 201, 151, 0.3);
}

.column-header {
    text-align: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.column-header i {
    font-size: 1.5rem;
    color: #e29117;
    margin-bottom: 0.5rem;
}

.column-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.rate-tag {
    display: inline-block;
    background: rgba(226, 145, 23, 0.1);
    color: #e29117;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.result-item .label {
    font-size: 0.85rem;
    color: #a0a0a0;
}

.result-item .value {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

/* Setup Item Styles */
.setup-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    margin-left: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.setup-value {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.original-price {
    font-size: 0.85rem;
    color: #666666;
    text-decoration: line-through;
}

.free-price {
    font-size: 1rem;
    color: #e29117;
    font-weight: 700;
    text-transform: uppercase;
}

.result-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.result-total.positive {
    background: rgba(32, 201, 151, 0.1);
    border: 1px solid rgba(32, 201, 151, 0.3);
}

.result-total .label {
    font-size: 0.9rem;
    color: #a0a0a0;
    font-weight: 600;
}

.result-total .value {
    font-size: 1.25rem;
    color: #ffffff;
    font-weight: 700;
}

.result-total.positive .value {
    color: #e29117;
}

.comparison-difference {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.difference-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.2) 0%, rgba(32, 201, 151, 0.1) 100%);
    border: 2px solid #e29117;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
}

.difference-card i {
    font-size: 2rem;
    color: #e29117;
}

.difference-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.difference-label {
    font-size: 0.875rem;
    color: #a0a0a0;
    font-weight: 500;
}

.difference-value {
    font-size: 2rem;
    color: #e29117;
    font-weight: 700;
}

.calc-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(226, 145, 23, 0.05);
    border-left: 3px solid #e29117;
    border-radius: 6px;
    margin-top: 1rem;
}

.calc-note i {
    color: #e29117;
    font-size: 1rem;
    margin-top: 0.125rem;
}

.calc-note span {
    font-size: 0.8rem;
    color: #a0a0a0;
    line-height: 1.5;
    text-align: left;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    background: radial-gradient(ellipse at center, rgba(50, 9, 53, 0.4) 0%, transparent 70%);
    position: relative;
    z-index: 10;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-button {
    display: inline-block;
    background-color: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.testimonials-button:hover {
    border-color: rgba(241, 7, 255, 0.3);
    background-color: rgba(226, 145, 23, 0.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4), 0 0 25px rgba(123, 47, 247, 0.3), 0 0 35px rgba(241, 7, 255, 0.2);
}

.testimonials-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.testimonials-description {
    font-size: 1.25rem;
    color: #a0a0a0;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    height: 600px;
    overflow: hidden;
    position: relative;
}

/* Fade gradientes arriba y abajo */
.testimonials-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    z-index: 10;
    pointer-events: none;
}

.testimonials-grid::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    z-index: 10;
    pointer-events: none;
}

/* Columnas con scroll infinito */
.testimonials-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    animation: scrollUp 20s linear infinite;
}

.testimonials-column:nth-child(1) {
    animation-duration: 25s;
}

.testimonials-column:nth-child(2) {
    animation-duration: 30s;
}

.testimonials-column:nth-child(3) {
    animation-duration: 22s;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(50, 9, 53, 0.4) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(241, 7, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(123, 47, 247, 0.4), 0 0 45px rgba(241, 7, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 145, 23, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(226, 145, 23, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .user-avatar {
    border-color: rgba(241, 7, 255, 0.3);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.4), 0 0 20px rgba(123, 47, 247, 0.3), 0 0 30px rgba(241, 7, 255, 0.2);
}

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

.user-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.user-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.user-handle {
    font-size: 0.875rem;
    color: #a0a0a0;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 10;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: #a0a0a0;
    line-height: 1.6;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(50, 9, 53, 0.4) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    border-color: rgba(241, 7, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3), 0 0 25px rgba(123, 47, 247, 0.2), 0 0 35px rgba(241, 7, 255, 0.15);
}

.faq-item.active {
    border-color: rgba(241, 7, 255, 0.3);
    padding-bottom: 20px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4), 0 0 25px rgba(123, 47, 247, 0.3), 0 0 35px rgba(241, 7, 255, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question:hover {
    color: #e29117;
}

.faq-icon {
    font-size: 1rem;
    color: #a0a0a0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #e29117;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s ease-in-out 0.1s;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    opacity: 1;
}

.faq-answer p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.faq-answer ul li {
    color: #a0a0a0;
    line-height: 1.8;
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.faq-answer ul li:before {
    content: "•";
    color: #e29117;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.25rem;
}

.faq-note {
    padding: 1rem;
    background: rgba(226, 145, 23, 0.1);
    border-left: 3px solid #e29117;
    border-radius: 6px;
    font-size: 0.95rem;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    padding: 8rem 2rem;
    background: transparent;
    position: relative;
    z-index: 10;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #a0a0a0;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Button */
.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background-color: #ffffff;
    color: #0a0a0a;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    margin-bottom: 4rem;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-contact:hover {
    background-color: #e29117;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(123, 47, 247, 0.4), 0 0 45px rgba(241, 7, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.btn-contact i {
    font-size: 1.25rem;
}

/* Contact Details */
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-detail-item i {
    font-size: 1.25rem;
    color: #e29117;
    flex-shrink: 0;
}

.contact-detail-item strong {
    color: #ffffff;
    font-weight: 500;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    padding: 3rem 2rem;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    gap: 4rem;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Footer Minimal */
.footer-minimal {
    background: transparent;
    padding: 2rem 2rem 3rem 2rem;
    position: relative;
    z-index: 10;

}

.footer-minimal-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    font-size: 1.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: #e29117;
    background: rgba(226, 145, 23, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(123, 47, 247, 0.4), 0 0 45px rgba(241, 7, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.footer-copyright {
    margin-top: 2rem;
    text-align: center;
}

.footer-copyright p {
    color: #666666;
    font-size: 0.875rem;
    font-weight: 400;
}

.footer-credits {
    margin-top: 1rem;
    text-align: center;
}

.footer-credits a {
    color: #888888;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-credits a:hover {
    color: #e29117;
    transform: translateY(-2px);
}

.footer-credits .passion-text {
    color: #e29117;
    font-weight: 500;
}

.footer-credits .theone-text {
    color: #e29117;
    font-weight: 600;
}

/* Responsive Design */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(50, 9, 53, 0.95) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(226, 145, 23, 0.3);
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1rem;
    color: #a0a0a0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e0e0e0;
}

.form-label i {
    color: #e29117;
    font-size: 1rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: #e29117;
    box-shadow: 0 0 0 3px rgba(226, 145, 23, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #666666;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(226, 145, 23, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(123, 47, 247, 0.4), 0 0 45px rgba(241, 7, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit i:first-child {
    font-size: 1.5rem;
}

.btn-submit i:last-child {
    font-size: 1rem;
}

/* Ajustar btn-contact para que funcione como botón */
.btn-contact {
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
    }
    
    .modal-subtitle {
        font-size: 0.9rem;
    }
    
    .modal-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }
    
    .btn-submit {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Para pantallas de 1400px o menos */
@media (max-width: 1400px) {
    /* Contenedores con max-width 80% */
    html ,body{
        font-size: 14px;
    }

    .header{
        max-width: 800px;
    }

    .features-container,
  
    .tools-container,
    .testimonials-container,
    .contact-container {
        max-width: 80%;
        margin: 0 auto;
    }
    
    .hero-content {
        max-width: 100%;
    }

    .faq-container {
        max-width: 64%;
    }
    
    /* Hero Section */
    .hero {
        padding: 0;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
     
        margin-bottom: 1rem;
    }
    .arrows-container{
        margin-bottom: 0rem;
        padding: 1rem 0;
    }

    .trusted-section{	
        margin-top: 0;
    }
    .btn-get-started {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    /* Crypto Cards */
    .crypto-card {
        width: 140px;
    }
    
    .crypto-icon {
        width: 45px;
        height: 45px;
        font-size: 1.35rem;
    }
    
    .crypto-name {
        font-size: 0.9rem;
    }
    
    .crypto-algo,
    .crypto-market {
        font-size: 0.7rem;
    }
    
    /* Features Section */
    .features-section {
        padding: 5rem 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .features-grid {
        gap: 2.5rem;
    }
    
    .feature-card {
        padding: 1.75rem;
    }
    
    .feature-title {
        font-size: 1.35rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    /* FAQ Section */
    .faq-section {
        padding: 5rem 1.5rem;
    }
    
    .faq-title {
        font-size: 2.25rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    /* Tools/Calculator Section */
    .tools-section {
        padding: 4rem 1.5rem;
    }
    
    .tools-title {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .tools-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }
    
    .calculator-card {
        padding: 2rem;
    }
    
    .calculator-grid {
        gap: 2rem;
    }
    
    .calculator-inputs {
        gap: 1rem;
    }
    
    .input-group label {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }
    
    .calc-input,
    .calc-select {
        padding: 0.65rem 0.875rem;
        font-size: 0.9rem;
    }
    
    .calculator-comparison {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .comparison-header {
        margin-bottom: 1rem;
    }
    
    .comparison-header h3 {
        font-size: 1rem;
    }
    
    .crypto-price-display {
        font-size: 1.5rem;
    }
    
    .comparison-grid {
        gap: 1.5rem;
    }
    
    .column-header {
        padding: 1rem;
    }
    
    .column-header h3 {
        font-size: 1.1rem;
    }
    
    .column-header i {
        font-size: 1.25rem;
    }
    
    .rate-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
    
    .result-item {
        padding: 0.75rem 0.875rem;
        gap: 0.5rem;
    }
    
    .result-label {
        font-size: 0.8rem;
    }
    
    .result-value {
        font-size: 1rem;
    }
    
    .result-total {
        padding: 1rem;
    }
    
    .result-total .label {
        font-size: 0.85rem;
    }
    
    .result-total .value {
        font-size: 1.35rem;
    }
    
    .setup-badge {
        font-size: 0.55rem;
        padding: 0.12rem 0.35rem;
    }
    
    .original-price {
        font-size: 0.8rem;
    }
    
    .free-price {
        font-size: 0.95rem;
    }
    
    .comparison-difference {
        margin-top: 1.5rem;
        gap: 1rem;
    }
    
    .difference-card {
        padding: 1.25rem 1.5rem;
        min-width: 250px;
        max-width: 350px;
    }
    
    .difference-card i {
        font-size: 1.75rem;
    }
    
    .difference-label {
        font-size: 0.85rem;
    }
    
    .difference-value {
        font-size: 1.5rem;
    }
    
    .calc-note {
        padding: 0.875rem;
        font-size: 0.8rem;
        margin-top: 1rem;
    }
    
    /* Testimonials Section */
    .testimonials-section {
        padding: 5rem 1.5rem;
    }
    
    .testimonials-title {
        font-size: 2.25rem;
    }
    
    .testimonials-description {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.75rem;
    }
    
    .testimonial-quote {
        font-size: 0.95rem;
    }
    
    .user-name {
        font-size: 0.95rem;
    }
    
    .user-handle {
        font-size: 0.8rem;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 5rem 1.5rem;
    }
    
    .contact-title {
        font-size: 2.25rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .btn-contact {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-title {
        font-size: 1.25rem;
    }
    
    /* Modal */
    .modal-content {
        max-width: 600px;
        padding: 1rem;
        border-radius: 20px;
    }
    
    .modal-close {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }
    
    .modal-header {
        margin-bottom: 1.5rem;
    }
    
    .modal-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }
    
    .modal-subtitle {
        font-size: 0.9rem;
    }
    
    /* Formulario del Modal */
    .contact-form {
        gap: 1.25rem;
    }
    
    .form-group {
        gap: 0.4rem;
    }
    
    .form-label {
        font-size: 0.85rem;
    }
    
    .form-label i {
        font-size: 0.9rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .form-textarea {
        min-height: 80px;
    }
    
    .btn-submit {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        border-radius: 10px;
        gap: 0.65rem;
    }
    
    .btn-submit i:first-child {
        font-size: 1.35rem;
    }
    
    .btn-submit i:last-child {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {

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

    .faq-container,
    .tools-section,
    .testimonials-container,
    .contact-container,
    .tools-section,
    .features-container{
        max-width: 90%;
        margin: 0 auto;
    }
.tools-container{
    max-width: 100%;
}

.main-container{
    height: 120vh;
}
    /* Ocultar completamente el header/navbar en móvil */
    .header {
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        animation: none !important;
        top: 20px;
        width: 100%;
        padding: 0 1rem;
    }
    
    .nav {
        padding: 0;
        height: auto;
        background: transparent;
    }
    
    .nav-brand {
        background: transparent;
        padding: 0;
    }
    
    .nav-brand .logo {
        width: 45px;
        height: 45px;
        filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        gap: 0;
        background: transparent;
    }
    
    /* Ocultar botón Contáctanos en móvil */
    .nav-actions .btn-signup {
        display: none;
    }

    /* Mobile Menu Toggle - Botón Hamburguesa con efectos del navbar */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background-color: rgba(20, 20, 20, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 50%;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        border: 2px solid transparent;
        background-image: 
            linear-gradient(rgba(20, 20, 20, 0.8), rgba(20, 20, 20, 0.8)),
            linear-gradient(90deg, #00d4ff, #7b2ff7, #f107ff, #7b2ff7, #00d4ff);
        background-origin: border-box;
        background-clip: padding-box, border-box;
        background-size: 100% 100%, 200% 200%;
        box-shadow: 
            0 0 20px rgba(0, 212, 255, 0.6),
            0 0 40px rgba(123, 47, 247, 0.5),
            0 0 60px rgba(241, 7, 255, 0.4),
            0 8px 32px rgba(0, 0, 0, 0.3);
        transition: all 0.8s ease;
        animation: neonPulse 3s ease-in-out infinite, gradientMove 4s linear infinite;
    }

    .mobile-menu-toggle:hover {
        transform: scale(1.1);
        box-shadow: 
            0 0 30px rgba(0, 212, 255, 0.8),
            0 0 60px rgba(123, 47, 247, 0.7),
            0 0 90px rgba(241, 7, 255, 0.6),
            0 8px 32px rgba(0, 0, 0, 0.3);
    }

    .mobile-menu-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        background: #ffffff;
        margin: 2.5px 0;
        transition: all 0.3s ease;
        border-radius: 2px;
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }

    .mobile-menu-toggle.active {
        background-image: 
            linear-gradient(rgba(20, 20, 20, 0.9), rgba(20, 20, 20, 0.9)),
            linear-gradient(90deg, #00d4ff, #7b2ff7, #f107ff, #7b2ff7, #00d4ff);
    }

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

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

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

    /* Mobile Menu - Desliza de Izquierda a Derecha */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        z-index: 1000;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 2rem;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    .mobile-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(ellipse at center, rgba(50, 9, 53, 0.4) 0%, transparent 70%);
        z-index: 0;
        pointer-events: none;
    }

    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        position: relative;
        z-index: 2;
    }

    .mobile-menu-links .nav-link {
        font-size: 1.3rem;
        font-weight: 600;
        color: #ffffff;
        text-decoration: none;
        padding: 1rem 2rem;
        border-radius: 12px;
        transition: all 0.3s ease;
        background: transparent;
        border: 1px solid transparent;
    }

    .mobile-menu-links .nav-link:hover,
    .mobile-menu-links .nav-link:active {
        background: rgba(226, 145, 23, 0.1);
        border-color: rgba(226, 145, 23, 0.3);
        color: #e29117;
        transform: translateX(5px);
    }

    .mobile-menu-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 280px;
        margin-top: 2rem;
        position: relative;
        z-index: 2;
    }

    .mobile-menu-actions .btn-signup {
        font-size: 1rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
        border: 1px solid rgba(226, 145, 23, 0.3);
        box-shadow: 0 4px 15px rgba(226, 145, 23, 0.3);
    }

    .mobile-menu-actions .btn-signup:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 20px rgba(226, 145, 23, 0.5);
    }

    .mobile-menu-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        width: 45px;
        height: 45px;
        background: rgba(226, 145, 23, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(226, 145, 23, 0.3);
        color: #ffffff;
        font-size: 1.5rem;
        cursor: pointer;
        border-radius: 50%;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
    }

    .mobile-menu-close:hover {
        background: rgba(226, 145, 23, 0.2);
        border-color: rgba(226, 145, 23, 0.5);
        transform: rotate(90deg) scale(1.1);
    }
    
    .hero {
        padding: 0;
        height: 100vh;
        min-height: 600px;
    }
    
    .features-section {
        margin-top: 1rem;
        padding: 4rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .trusted-logos {
        gap: 2rem;
    }
    
    .trusted-section {
        margin-top: 1rem;
    }
    
    .crypto-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .crypto-icon {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .litecoin-symbol,
    .kaspa-symbol,
    .aleo-symbol {
        font-size: 1.75rem;
    }
    
    .crypto-name {
        font-size: 0.875rem;
    }
    
    .crypto-algo,
    .crypto-market {
        font-size: 0.7rem;
    }
    
    .features-section {
        padding: 4rem 1rem;
    }
    
    .features-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .features-grid {
        gap: 2rem;
        padding: 0;
    }

    .features-grid-lead .feature-card {
        max-width: 100%;
    }

    .features-grid-rest .feature-card {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 0;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-visual {
        height: 250px;
    }
    
    .feature-image-overlay {
        width: 60px;
        height: 60px;
    }
    
    .feature-image-overlay i {
        font-size: 2rem;
    }
    
    .global-earth {
        width: 150px;
        height: 150px;
    }
    
    .analytics-chart {
        height: 100px;
    }
    
    .analytics-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .integration-hub {
        width: 150px;
        height: 150px;
    }
    
    .hub-center {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .integration-item {
        width: 35px;
        height: 35px;
        font-size: 0.875rem;
    }
    
    .testimonials-section {
        padding: 4rem 1rem;
        padding-bottom: 0;
    }
    
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-description {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        height: auto;
        overflow: visible;
    }
    
    /* Remover fade en móviles */
    .testimonials-grid::before,
    .testimonials-grid::after {
        display: none;
    }
    
    .testimonials-column {
        animation: none;
    }
    
    .testimonial-card {
        width: 100%;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-quote {
        font-size: 1rem;
    }
    
    .faq-section {
        padding: 4rem 1rem;
        padding-bottom: 0;
    }
    
    .faq-header {
        margin-bottom: 3rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1.25rem 1.25rem;
    }
    
    .faq-answer ul li {
        font-size: 0.95rem;
    }
    
    .tools-section {
        padding: 4rem 1rem;
        padding-bottom: 0;
    }
    
    .tools-title {
        font-size: 2rem;
    }
    
    .calculator-card {
        padding: 2rem 1.5rem;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .crypto-price-display {
        font-size: 1.5rem;
    }
    
    .comparison-difference {
        flex-direction: column;
        gap: 1rem;
    }
    
    .difference-card {
        flex-direction: column;
        padding: 1.25rem 1.5rem;
        max-width: 100%;
        min-width: 100%;
    }
    
    .difference-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-get-started {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .trusted-logos {
        gap: 1.5rem;
    }
    
    .crypto-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .crypto-icon {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .litecoin-symbol,
    .kaspa-symbol,
    .aleo-symbol {
        font-size: 1.5rem;
    }
    
    .crypto-name {
        font-size: 0.8rem;
    }
    
    .crypto-algo,
    .crypto-market {
        font-size: 0.65rem;
    }
    
    .features-title {
        font-size: 1.75rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .feature-visual {
        height: 200px;
    }
    
    .feature-image-overlay {
        width: 50px;
        height: 50px;
    }
    
    .feature-image-overlay i {
        font-size: 1.5rem;
    }
    
    .cli-features-grid {
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .cli-feature-item {
        padding: 0.5rem;
        font-size: 0.7rem;
    }
    
    .global-earth {
        width: 120px;
        height: 120px;
    }
    
    .analytics-chart {
        height: 80px;
    }
    
    .chart-bar {
        width: 15px;
    }
    
    .analytics-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.125rem;
    }
    
    .integration-hub {
        width: 120px;
        height: 120px;
    }
    
    .hub-center {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .integration-item {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
    
    .testimonials-description {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-quote {
        font-size: 0.95rem;
    }
    
    .user-avatar {
        width: 40px;
        height: 40px;
    }
    
    .user-name {
        font-size: 0.9rem;
    }
    
    .user-handle {
        font-size: 0.8rem;
    }
    
    .faq-title {
        font-size: 1.75rem;
    }
    
    .faq-subtitle {
        font-size: 0.95rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
    
    .faq-answer p,
    .faq-answer ul li {
        font-size: 0.9rem;
    }
    
    .faq-note {
        font-size: 0.875rem;
        padding: 0.875rem;
    }
    
    .tools-title {
        font-size: 1.75rem;
    }
    
    .calculator-card {
        padding: 1.5rem 1rem;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .result-value {
        font-size: 1.125rem;
    }
    
    .result-label {
        font-size: 0.8rem;
    }
    
    .crypto-price-display {
        font-size: 1.25rem;
    }
    
    .comparison-column {
        padding: 1rem;
    }
    
    .column-header h4 {
        font-size: 1rem;
    }
    
    .result-item .label {
        font-size: 0.75rem;
    }
    
    .result-item .value {
        font-size: 0.9rem;
    }
    
    .result-total .value {
        font-size: 1rem;
    }
    
    .setup-badge {
        font-size: 0.5rem;
        padding: 0.12rem 0.3rem;
        margin-left: 0.25rem;
    }
    
    .original-price {
        font-size: 0.75rem;
    }
    
    .free-price {
        font-size: 0.9rem;
    }
    
    .difference-card i {
        font-size: 1.5rem;
    }
    
    .difference-value {
        font-size: 1.25rem;
    }
    
    .contact-section {
        padding: 5rem 1rem;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .btn-contact {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        margin-bottom: 3rem;
    }
    
    .contact-detail-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer {
        padding: 2rem 1rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
    }
    
    .footer-nav-column {
        align-items: center;
    }
    
    .footer-logo img {
        width: 60px;
        height: 60px;
    }
    
    .footer-minimal {
        padding: 1.5rem 1rem 2rem 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .footer-social {
        gap: 1.5rem;
    }
    
    .footer-copyright {
        margin-top: 1.5rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
    
    .footer-credits {
        margin-top: 0.75rem;
    }
    
    .footer-credits a {
        font-size: 0.75rem;
    }
}

/* ============================================
   CTA FLOTANTE FIJO
   ============================================ */

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(226, 145, 23, 0.4);
    transition: all 0.3s ease;
    animation: floatBounce 3s ease-in-out infinite;
}

.floating-cta i {
    font-size: 2rem;
    color: #ffffff;
    z-index: 2;
}

.floating-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(123, 47, 247, 0.4), 0 0 45px rgba(241, 7, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.floating-cta:active {
    transform: scale(0.95);
}

/* Animación de pulso */
.cta-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(226, 145, 23, 0.5);
    animation: pulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive para el CTA flotante */
@media (max-width: 768px) {
    .floating-cta {
        width: 70px;
        height: 70px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cta i {
        font-size: 2.25rem;
    }
}

/* ============================================
   ESTILOS ESPECÍFICOS DE PÁGINAS
   ============================================ */

/* Los estilos específicos de hosting están en css/hosting.css */

/* ============================================
   MODAL DE CONTACTO
   ============================================ */

.modal {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

.hosting-hero-description {
    font-size: 1.1rem;
    color: #c0c0c0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Hosting Services Section */
.hosting-services-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, transparent 0%, rgba(50, 9, 53, 0.3) 50%, transparent 100%);
}

.hosting-services-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}

.hosting-service-card {
    background: linear-gradient(135deg, rgba(50, 9, 53, 0.3) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.hosting-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(241, 7, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(123, 47, 247, 0.4), 0 0 45px rgba(241, 7, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(226, 145, 23, 0.3);
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 0.95rem;
    color: #c0c0c0;
    line-height: 1.6;
}

/* Tarifas Section */
.tarifas-section {
    padding: 4rem 2rem;
    background: radial-gradient(ellipse at center, rgba(50, 9, 53, 0.4) 0%, transparent 70%);
}

.tarifas-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.tarifas-content {
    padding: 0;
}

.tarifas-title {
    font-size: 1.85rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.tarifas-title i {
    color: #e29117;
    font-size: 1.85rem;
}

.tarifas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.tarifa-item {
    background: linear-gradient(135deg, rgba(50, 9, 53, 0.4) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tarifa-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e29117 0%, #3D073B 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tarifa-item:hover::before {
    opacity: 1;
}

.tarifa-item:hover {
    border-color: rgba(241, 7, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(123, 47, 247, 0.4), 0 0 45px rgba(241, 7, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.tarifa-highlight {
    border: 2px solid rgba(226, 145, 23, 0.5);
    box-shadow: 0 8px 25px rgba(226, 145, 23, 0.2);
}

.tarifa-highlight::before {
    opacity: 1;
}

.tarifa-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.1rem;
    color: #ffffff;
}

.tarifa-item h3 {
    font-size: 0.875rem;
    font-weight: 600;
    color: #c0c0c0;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tarifa-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: #e29117;
    margin-bottom: 0.35rem;
    line-height: 1;
}

.tarifa-note {
    font-size: 0.7rem;
    color: #888888;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.tarifa-description {
    font-size: 0.8rem;
    color: #a0a0a0;
    line-height: 1.4;
}

/* Hosting Image */
.hosting-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 350px;
    max-width: 800px;
    margin: 2.5rem auto 0;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 2rem;
    text-align: center;
    color: #ffffff;
}

.image-overlay i {
    font-size: 2.5rem;
    color: #e29117;
    margin-bottom: 0.75rem;
}

.image-overlay p {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

/* Responsive - Hosting Page */
@media (max-width: 1400px) {
    .hosting-hero {
        padding: 4rem 1.5rem 2.5rem;
    }
    
    .hosting-hero-title {
        font-size: 2.5rem;
    }
    
    .hosting-hero-description {
        font-size: 1rem;
    }
    
    .hosting-services-container {
        max-width: 80%;
    }
    
    .hosting-service-card {
        padding: 1.75rem 1.5rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        font-size: 1.65rem;
        margin-bottom: 1rem;
    }
    
    .service-title {
        font-size: 1.25rem;
        margin-bottom: 0.875rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .tarifas-section {
        padding: 3rem 2rem;
    }
    
    .tarifas-container {
        max-width: 80%;
    }
    
    .tarifas-title {
        font-size: 1.65rem;
        margin-bottom: 1.25rem;
    }
    
    .tarifas-grid {
        gap: 0.875rem;
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 2rem;
    }
    
    .tarifa-item {
        padding: 1.1rem 0.875rem;
    }
    
    .tarifa-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        margin-bottom: 0.65rem;
    }
    
    .tarifa-item h3 {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .tarifa-price {
        font-size: 1.35rem;
        margin-bottom: 0.3rem;
    }
    
    .tarifa-note {
        font-size: 0.65rem;
    }
    
    .tarifa-description {
        font-size: 0.75rem;
    }
    
    .hosting-image {
        height: 280px;
        max-width: 700px;
        margin: 2rem auto 0;
    }
}

@media (max-width: 768px) {
    .hosting-hero {
        padding: 3rem 1rem 2rem;
    }
    
    .hosting-hero-title {
        font-size: 1.85rem;
    }
    
    .hosting-hero-description {
        font-size: 0.95rem;
    }
    
    .hosting-services-section {
        padding: 3rem 1rem;
    }
    
    .hosting-services-container {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .hosting-service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-title {
        font-size: 1.2rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .tarifas-section {
        padding: 3rem 1rem;
    }
    
    .tarifas-container {
        max-width: 100%;
    }
    
    .tarifas-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .tarifas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .tarifa-item {
        padding: 1.25rem 1rem;
    }
    
    .tarifa-icon {
        width: 32px;
        height: 32px;
    }
    
    .tarifa-item h3 {
        font-size: 0.825rem;
    }
    
    .tarifa-price {
        font-size: 1.4rem;
    }
    
    .hosting-image {
        height: 240px;
        max-width: 100%;
        margin: 1.75rem auto 0;
    }
    
    .image-overlay {
        padding: 1.25rem;
    }
    
    .image-overlay i {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .image-overlay p {
        font-size: 1rem;
    }
}

/* ============================================
   FIX ESPECÍFICO PARA iOS SAFARI - PARTÍCULAS Y RENDERING
   ============================================ */

/* Asegurar que las partículas se rendericen correctamente en iOS */
@supports (-webkit-touch-callout: none) {
    .particles {
        -webkit-perspective: 1000px;
        perspective: 1000px;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .particle-dot {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        perspective: 1000px;
    }
    
    /* Mejorar aceleración de hardware en iOS */
    .hero,
    .features-section,
    .tools-section,
    .testimonials-section,
    .faq-section,
    .contact-section,
    .footer,
    .footer-minimal {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

/* ============================================
   HERO CAROUSEL (2 slides, cross-fade auto 5s)
   ============================================ */

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease;
    z-index: 1;
}

.hero-slide > .collab-banner,
.hero-slide > .ms-pool-banner {
    width: 100%;
    height: 100%;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Slides de imagen administrables: imagen a pantalla completa */
.hero-slide-image {
    position: relative;
    background: linear-gradient(180deg, rgba(5,5,5,0.95) 0%, rgba(10,10,10,0.6) 60%, transparent 100%);
    overflow: hidden;
}

.hero-slide-image .hero-slide-link,
.hero-slide-image picture,
.hero-slide-image .hero-slide-img {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
}

.hero-slide-image .hero-slide-img {
    object-fit: contain;
    object-position: center;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(44px, 4vw, 52px);
    height: clamp(44px, 4vw, 52px);
    padding: 0;
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 50%;
    background: rgba(5, 5, 5, 0.62);
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(16px, 1.4vw, 20px);
    cursor: pointer;
    opacity: 0.92;
    backdrop-filter: blur(8px);
    box-shadow:
        0 0 20px rgba(168, 85, 247, 0.18),
        0 4px 16px rgba(0, 0, 0, 0.35);
    transition:
        color 0.25s ease,
        opacity 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-arrow-prev {
    left: clamp(12px, 2vw, 28px);
}

.hero-arrow-next {
    right: clamp(12px, 2vw, 28px);
}

.hero-carousel:hover .hero-arrow {
    opacity: 1;
    border-color: rgba(168, 85, 247, 0.55);
}

.hero-arrow:hover {
    opacity: 1;
    color: #fff;
    background: rgba(168, 85, 247, 0.28);
    border-color: rgba(251, 191, 36, 0.55);
    transform: translateY(-50%) scale(1.06);
    box-shadow:
        0 0 28px rgba(168, 85, 247, 0.35),
        0 0 12px rgba(251, 191, 36, 0.15);
}

.hero-arrow:focus-visible {
    outline: 2px solid rgba(168, 85, 247, 0.65);
    outline-offset: 3px;
    opacity: 1;
}

.hero-dots {
    position: absolute;
    top: auto;
    bottom: clamp(68px, 9vh, 84px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 12;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(5, 5, 5, 0.5);
    border: 1px solid rgba(168, 85, 247, 0.25);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition:
        width 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.08);
}

.hero-dot.is-active {
    width: 24px;
    background: linear-gradient(135deg, #a855f7, #fbbf24);
    box-shadow: 0 0 12px rgba(168, 85, 247, 0.55);
}

.hero-dot:focus-visible {
    outline: 2px solid rgba(168, 85, 247, 0.65);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .hero-dots {
        bottom: 52px;
        gap: 8px;
        padding: 6px 12px;
    }

    .hero-dot {
        width: 7px;
        height: 7px;
    }

    .hero-dot.is-active {
        width: 20px;
    }

    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .hero-arrow-prev {
        left: 8px;
    }

    .hero-arrow-next {
        right: 8px;
    }
}

/* ============================================
   BANNER COLLAB - MINING STORE x JINGLE MINER
   ============================================ */

.collab-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    background: linear-gradient(180deg, rgba(5,5,5,0.95) 0%, rgba(10,10,10,0.6) 60%, transparent 100%);
    overflow: hidden;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.collab-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(168,85,247,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168,85,247,0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: collabGridMove 8s linear infinite;
    /* Degradado vertical: evita el “corte” horizontal; la rejilla se funde hacia abajo */
    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.92) 0%,
        #fff 8%,
        #fff 63%,
        rgba(255, 255, 255, 0.82) 71%,
        rgba(255, 255, 255, 0.45) 82%,
        rgba(255, 255, 255, 0.12) 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.92) 0%,
        #fff 8%,
        #fff 63%,
        rgba(255, 255, 255, 0.82) 71%,
        rgba(255, 255, 255, 0.45) 82%,
        rgba(255, 255, 255, 0.12) 92%,
        transparent 100%
    );
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

@keyframes collabGridMove {
    0% { transform: translateY(0); }
    100% { transform: translateY(40px); }
}

.collab-corner {
    position: absolute;
    width: 80px;
    height: 80px;
}
.collab-corner-tl { top: 0; left: 5%; border-top: 2px solid rgba(168,85,247,0.4); border-left: 2px solid rgba(168,85,247,0.4); }
.collab-corner-tr { top: 0; right: 5%; border-top: 2px solid rgba(251,191,36,0.4); border-right: 2px solid rgba(251,191,36,0.4); }
.collab-corner-bl { bottom: 0; left: 5%; border-bottom: 2px solid rgba(168,85,247,0.4); border-left: 2px solid rgba(168,85,247,0.4); }
.collab-corner-br { bottom: 0; right: 5%; border-bottom: 2px solid rgba(251,191,36,0.4); border-right: 2px solid rgba(251,191,36,0.4); }

.collab-glow-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(168,85,247,0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: collabPulse 3s ease-in-out infinite alternate;
}
.collab-glow-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse at 70% 50%, rgba(251,191,36,0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: collabPulse 3s ease-in-out infinite alternate-reverse;
}

@keyframes collabPulse {
    0% { opacity: 0.6; transform: translateY(-50%) scale(0.95); }
    100% { opacity: 1; transform: translateY(-50%) scale(1.05); }
}

.collab-center-x {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-shrink: 0;
    grid-column: 2;
    justify-self: center;
    align-self: center;
}

.collab-x-diamond {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a855f7, #fbbf24);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: collabSpinGlow 4s ease-in-out infinite alternate;
    box-shadow:
        0 0 20px rgba(168,85,247,0.6),
        0 0 40px rgba(251,191,36,0.4);
}

.collab-x-diamond span {
    transform: rotate(-45deg);
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
}

@keyframes collabSpinGlow {
    0% { box-shadow: 0 0 20px rgba(168,85,247,0.8), 0 0 40px rgba(168,85,247,0.4); }
    100% { box-shadow: 0 0 20px rgba(251,191,36,0.8), 0 0 40px rgba(251,191,36,0.4); }
}

.collab-vline {
    position: absolute;
    left: 50%;
    top: clamp(56px, 8vh, 96px);
    bottom: clamp(56px, 8vh, 96px);
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(168,85,247,0.5) 30%, rgba(251,191,36,0.5) 70%, transparent);
}

.collab-content {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    justify-items: stretch;
    column-gap: clamp(4.5rem, 10vw, 7.5rem);
    max-width: min(1600px, 99vw);
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(12px, 2.5vw, 32px);
    padding-top: 100px;
    row-gap: 0;
    flex-shrink: 0;
}

a.collab-brand-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 14px;
    transition: opacity 0.2s ease, transform 0.2s ease;
    -webkit-tap-highlight-color: rgba(168, 85, 247, 0.2);
}
a.collab-brand-link:focus-visible {
    outline: 2px solid rgba(168, 85, 247, 0.65);
    outline-offset: 4px;
}
a.collab-brand-link:active {
    transform: scale(0.99);
}

.collab-brand-left {
    grid-column: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 16px;
    padding-right: clamp(2.5rem, 6vw, 5.5rem);
    justify-self: end;
    min-width: 0;
    animation: collabFadeInLeft 0.8s ease-out both;
}

@keyframes collabFadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

.collab-ms-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.collab-ms-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2d1b69, #6b21a8);
    border: 2px solid #a855f7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 16px rgba(168,85,247,0.5);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.collab-ms-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, rgba(168,85,247,0.1) 0px, rgba(168,85,247,0.1) 1px, transparent 1px, transparent 8px),
        repeating-linear-gradient(-45deg, rgba(168,85,247,0.1) 0px, rgba(168,85,247,0.1) 1px, transparent 1px, transparent 8px);
}

.collab-ms-icon span {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #c084fc, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 1;
}

.collab-ms-icon .collab-ms-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.collab-ms-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
    align-items: flex-end;
}

.collab-mining {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(168,85,247,0.8);
}

.collab-store {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(90deg, #a855f7, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
}

.collab-ms-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(168,85,247,0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Badges colaboración: transición tipo menú (color/sombra) + acento y gradiente en violeta / oro */
@keyframes collabMsBadgeFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

@keyframes collabJmBadgeFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 200% 50%;
    }
}

.collab-ms-badge {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(168, 85, 247, 0.15);
    background-size: 100% 100%;
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #c084fc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 12px;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.25s ease;
}

.collab-ms-badge::after {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 3px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, #a855f7, #e9d5ff, #a855f7, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

a.collab-brand-left:hover .collab-ms-badge {
    color: #f3e8ff;
    border-color: rgba(168, 85, 247, 0.9);
    box-shadow:
        0 0 18px rgba(168, 85, 247, 0.5),
        0 0 38px rgba(124, 58, 237, 0.28);
    transform: translateY(-1px);
    background-image: linear-gradient(
        100deg,
        rgba(88, 28, 135, 0.55) 0%,
        rgba(124, 58, 237, 0.5) 20%,
        rgba(192, 132, 252, 0.55) 50%,
        rgba(124, 58, 237, 0.5) 80%,
        rgba(88, 28, 135, 0.55) 100%
    );
    background-size: 200% 100%;
    animation: collabMsBadgeFlow 2.2s ease-in-out infinite;
}

a.collab-brand-left:hover .collab-ms-badge::after {
    transform: scaleX(1);
}

.collab-brand-right {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 16px;
    padding-left: clamp(2.5rem, 6vw, 5.5rem);
    justify-self: start;
    min-width: 0;
    animation: collabFadeInRight 0.8s ease-out both;
}

@keyframes collabFadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.collab-jm-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
    align-items: flex-start;
}

.collab-jingle {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(251,191,36,0.8);
}

.collab-miner {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(90deg, #d97706, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 4px;
}

.collab-jm-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(251,191,36,0.8);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.collab-jm-badge {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(251, 191, 36, 0.12);
    background-size: 100% 100%;
    border: 1px solid rgba(251, 191, 36, 0.4);
    color: #fbbf24;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 4px 12px;
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    transition:
        color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.25s ease;
}

.collab-jm-badge::after {
    content: '';
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: 3px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, #f59e0b, #fef3c7, #f59e0b, transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

a.collab-brand-right:hover .collab-jm-badge {
    color: #fffbeb;
    border-color: rgba(253, 224, 71, 0.95);
    box-shadow:
        0 0 18px rgba(251, 191, 36, 0.55),
        0 0 40px rgba(217, 119, 6, 0.3);
    transform: translateY(-1px);
    background-image: linear-gradient(
        100deg,
        rgba(120, 53, 15, 0.55) 0%,
        rgba(180, 83, 9, 0.5) 22%,
        rgba(250, 204, 21, 0.5) 50%,
        rgba(180, 83, 9, 0.5) 78%,
        rgba(120, 53, 15, 0.55) 100%
    );
    background-size: 200% 100%;
    animation: collabJmBadgeFlow 2.2s ease-in-out infinite;
}

a.collab-brand-right:hover .collab-jm-badge::after {
    transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
    .collab-ms-badge,
    .collab-jm-badge {
        transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    }

    a.collab-brand-left:hover .collab-ms-badge,
    a.collab-brand-right:hover .collab-jm-badge {
        transform: none;
        animation: none;
    }

    a.collab-brand-left:hover .collab-ms-badge {
        background: rgba(168, 85, 247, 0.32);
    }

    a.collab-brand-right:hover .collab-jm-badge {
        background: rgba(251, 191, 36, 0.26);
    }

    .collab-ms-badge::after,
    .collab-jm-badge::after {
        transition: transform 0.2s ease;
    }
}

/* ============================================
   BANNER POOL LTC+DOGE (slide 2 del carrusel)
   ============================================ */

.ms-pool-banner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.95) 0%, rgba(10, 10, 10, 0.6) 60%, transparent 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Barlow', sans-serif;
}

.ms-pool-content {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    justify-items: stretch;
    column-gap: clamp(4.5rem, 10vw, 7.5rem);
    max-width: min(1600px, 99vw);
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(12px, 2.5vw, 32px);
    padding-top: 100px;
    row-gap: 0;
    flex-shrink: 0;
}

.ms-pool-left {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: end;
    gap: 16px;
    padding-right: clamp(2.5rem, 6vw, 5.5rem);
    min-width: 0;
    border-right: 1px solid rgba(168, 85, 247, 0.25);
}

.ms-pool-logo-img {
    width: clamp(160px, 14vw, 220px);
    max-width: 100%;
    height: auto;
    margin-bottom: 0;
}

.ms-pool-badge-new {
    background: linear-gradient(135deg, #a855f7, #fbbf24);
    color: #fff;
    font-size: clamp(9px, 0.75vw, 11px);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 2px;
    white-space: nowrap;
}

.ms-pool-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    padding: 0 clamp(8px, 1vw, 16px);
    min-width: 0;
}

.ms-pool-eyebrow {
    font-size: clamp(11px, 0.9vw, 13px);
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(168, 85, 247, 0.9);
    margin-bottom: 0;
}

.ms-pool-headline {
    font-size: clamp(44px, 4.8vw, 68px);
    font-weight: 900;
    line-height: 0.95;
    color: #ffffff;
    text-transform: uppercase;
    font-style: italic;
    margin-bottom: 0;
}

.ms-pool-headline .ms-pool-accent {
    color: transparent;
    -webkit-text-stroke: 2px #a855f7;
}

.ms-pool-headline .ms-pool-ltc {
    color: #c084fc;
}

.ms-pool-headline .ms-pool-doge {
    color: #fbbf24;
}

.ms-pool-subline {
    font-size: clamp(14px, 1.1vw, 17px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.ms-pool-cta {
    display: inline-block;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: clamp(12px, 1vw, 14px) clamp(28px, 2.5vw, 36px);
    border-radius: 2px;
    text-decoration: none;
    box-shadow: 0 0 16px rgba(168, 85, 247, 0.4);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.ms-pool-cta:hover {
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.6), 0 0 40px rgba(251, 191, 36, 0.2);
    transform: translateY(-1px);
}

.ms-pool-right {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: start;
    gap: 16px;
    padding-left: clamp(2.5rem, 6vw, 5.5rem);
    min-width: 0;
    max-width: 320px;
    width: 100%;
    border-left: 1px solid rgba(168, 85, 247, 0.25);
}

.ms-pool-coins-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.5vw, 20px);
}

.ms-pool-coin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(6px, 0.8vw, 10px);
}

.ms-pool-coin-circle {
    width: clamp(72px, 6.5vw, 96px);
    height: clamp(72px, 6.5vw, 96px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(28px, 2.8vw, 40px);
    font-weight: 900;
    font-style: italic;
    position: relative;
    border: 2px solid;
}

.ms-pool-coin-circle.ltc {
    background: radial-gradient(circle at 35% 35%, #88CBF5, #345d9d);
    border-color: rgba(136,203,245,0.6);
    color: #fff;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.35);
}

.ms-pool-coin-circle.doge {
    background: radial-gradient(circle at 35% 35%, #fbbf24, #d97706);
    border-color: rgba(251, 191, 36, 0.5);
    color: #7a5200;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.35);
}

.ms-pool-coin-label {
    font-size: clamp(10px, 0.85vw, 13px);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.ms-pool-coin-label.ltc {
    color: #c084fc;
}

.ms-pool-coin-label.doge {
    color: #fbbf24;
}

.ms-pool-plus-sign {
    font-size: clamp(32px, 3vw, 48px);
    font-weight: 900;
    color: rgba(168, 85, 247, 0.7);
    margin-bottom: 0;
    align-self: center;
    font-style: italic;
    line-height: 1;
}

.ms-pool-stats {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 0.8vw, 12px);
    width: 100%;
    max-width: 280px;
}

.ms-pool-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    padding-bottom: 8px;
}

.ms-pool-stat-row:last-child {
    border-bottom: none;
}

.ms-pool-stat-label {
    font-size: clamp(10px, 0.75vw, 12px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ms-pool-stat-value {
    font-size: clamp(12px, 0.9vw, 14px);
    font-weight: 800;
    color: #a855f7;
    letter-spacing: 1px;
}

.ms-pool-stat-value.gold {
    color: #fbbf24;
}

.ms-pool-stat-value.silver {
    color: #C0C0C0;
}

/* Responsive del banner Pool LTC+DOGE */
@media (min-width: 1400px) {
    .ms-pool-content {
        max-width: min(1920px, 99vw);
        column-gap: clamp(5rem, 8vw, 8rem);
    }

    .ms-pool-headline {
        font-size: min(76px, calc(56px + (100vw - 1400px) * 0.025));
    }

    .ms-pool-logo-img {
        width: min(240px, calc(200px + (100vw - 1400px) * 0.03));
    }

    .ms-pool-coin-circle {
        width: min(100px, calc(80px + (100vw - 1400px) * 0.028));
        height: min(100px, calc(80px + (100vw - 1400px) * 0.028));
        font-size: min(42px, calc(32px + (100vw - 1400px) * 0.018));
    }

    .ms-pool-right {
        max-width: 360px;
    }
}

@media (max-width: 1200px) {
    .ms-pool-content {
        column-gap: clamp(2.5rem, 6vw, 4.5rem);
        max-width: min(1400px, 96vw);
    }

    .ms-pool-left {
        padding-right: clamp(1.5rem, 4vw, 3rem);
    }

    .ms-pool-right {
        padding-left: clamp(1.5rem, 4vw, 3rem);
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .ms-pool-banner {
        justify-content: center;
        padding: 0;
        overflow-y: auto;
    }

    .ms-pool-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 80px 24px 40px;
        gap: 16px;
        max-width: 100%;
    }

    .ms-pool-left,
    .ms-pool-center,
    .ms-pool-right {
        width: 100%;
        max-width: 400px;
        border-left: none;
        border-right: none;
        padding: 0;
        align-items: center;
        text-align: center;
    }

    .ms-pool-center {
        align-items: center;
    }

    .ms-pool-headline {
        text-align: center;
    }

    .ms-pool-subline {
        text-align: center;
    }

    .ms-pool-right {
        max-width: 340px;
        gap: 16px;
    }

    .ms-pool-stats {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .ms-pool-content {
        padding: 70px 16px 32px;
        gap: 16px;
    }

    .ms-pool-headline {
        font-size: 32px;
    }

    .ms-pool-eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .ms-pool-subline {
        font-size: 13px;
    }

    .ms-pool-badge-new {
        font-size: 9px;
        padding: 5px 12px;
        letter-spacing: 2px;
    }

    .ms-pool-logo-img {
        width: 140px;
    }

    .ms-pool-coin-circle {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .ms-pool-coin-label {
        font-size: 10px;
    }

    .ms-pool-coins-row {
        gap: 10px;
    }

    .ms-pool-plus-sign {
        font-size: 28px;
    }

    .ms-pool-cta {
        font-size: 12px;
        padding: 12px 24px;
        letter-spacing: 1.5px;
    }

    .ms-pool-stat-label {
        font-size: 10px;
    }

    .ms-pool-stat-value {
        font-size: 12px;
    }

    .ms-pool-stats {
        max-width: 260px;
    }
}

@media (max-width: 768px) and (max-height: 700px) {
    .ms-pool-content {
        padding: 60px 16px 24px;
        gap: 12px;
    }

    .ms-pool-logo-img {
        width: 120px;
        margin-bottom: 6px;
    }

    .ms-pool-headline {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .ms-pool-subline {
        margin-bottom: 12px;
        font-size: 12px;
    }

    .ms-pool-coin-circle {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .ms-pool-plus-sign {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .ms-pool-stats {
        display: none;
    }
}

.collab-crypto-section {
    position: relative;
    z-index: 2;
    isolation: isolate;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
    text-align: center;
    background: transparent;
}

.collab-crypto-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1rem;
}

.collab-crypto-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.collab-crypto-grid .crypto-card {
    flex: 0 0 auto;
}

.collab-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    min-height: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 10;
    padding: 6px 12px 10px;
    box-sizing: border-box;
}

a.collab-ticker-item {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a.collab-ticker-item:hover {
    color: rgba(255,255,255,0.85);
}

.collab-ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    font-family: 'Rajdhani', sans-serif;
    max-width: 100%;
}

.collab-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    animation: collabBlink 1.5s ease-in-out infinite;
}
.collab-dot-purple { background: #a855f7; box-shadow: 0 0 8px #a855f7; }
.collab-dot-gold { background: #fbbf24; box-shadow: 0 0 8px #fbbf24; animation-delay: 0.5s; }

@keyframes collabBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.collab-sep {
    color: rgba(255,255,255,0.15);
    font-size: 16px;
}

.collab-scan-line {
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 10%, #a855f7 35%, #fbbf24 65%, transparent 90%);
    animation: collabScan 4s ease-in-out infinite;
    z-index: 20;
    opacity: 0.7;
}

@keyframes collabScan {
    0% { top: -2px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.collab-coming-soon {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Rajdhani', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    z-index: 15;
    white-space: nowrap;
    animation: collabFadeInDown 1s ease-out 0.5s both;
}

@keyframes collabFadeInDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.collab-label {
    position: absolute;
    left: 50%;
    bottom: 44px;
    transform: translateX(-50%);
    font-family: 'Rajdhani', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.25);
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 15;
}

/* Pantallas anchas (>1400px): bloque un poco más grande, sigue centrado */
@media (min-width: 1400px) {
    .collab-content {
        max-width: min(1920px, 99vw);
        column-gap: clamp(5rem, 8vw, 8rem);
    }

    .collab-mining,
    .collab-store,
    .collab-jingle,
    .collab-miner {
        font-size: min(52px, calc(36px + (100vw - 1400px) * 0.028));
    }

    .collab-ms-logo {
        gap: clamp(16px, 1.2vw, 24px);
    }

    .collab-ms-icon {
        width: min(96px, calc(76px + (100vw - 1400px) * 0.035));
        height: min(96px, calc(76px + (100vw - 1400px) * 0.035));
    }

    .collab-ms-icon span {
        font-size: min(42px, calc(24px + (100vw - 1400px) * 0.022));
    }

    .collab-x-diamond {
        width: min(110px, calc(80px + (100vw - 1400px) * 0.042));
        height: min(110px, calc(80px + (100vw - 1400px) * 0.042));
    }

    .collab-x-diamond span {
        font-size: min(44px, calc(32px + (100vw - 1400px) * 0.022));
    }

    .collab-ms-tagline,
    .collab-jm-tagline {
        font-size: min(17px, calc(15px + (100vw - 1400px) * 0.009));
    }

    .collab-ms-badge,
    .collab-jm-badge {
        font-size: min(13px, calc(12px + (100vw - 1400px) * 0.006));
        padding: 6px 16px;
    }

    .collab-coming-soon {
        font-size: min(12px, calc(10px + (100vw - 1400px) * 0.004));
    }

    .collab-label {
        font-size: min(12px, calc(10px + (100vw - 1400px) * 0.004));
        bottom: 48px;
    }
}

/* Banner collab responsive */
@media (max-width: 768px) {
    .collab-banner {
        height: 100vh;
        min-height: 500px;
    }

    .collab-content {
        display: flex;
        flex-direction: column;
        padding: 90px 24px 20px;
        gap: 16px;
        text-align: center;
        max-width: 100%;
    }

    .collab-brand-left {
        grid-column: auto;
        align-items: center;
        text-align: center;
        padding-right: 0;
        padding-bottom: 10px;
        justify-self: center;
    }

    .collab-brand-right {
        grid-column: auto;
        align-items: center;
        text-align: center;
        padding-left: 0;
        padding-top: 10px;
        justify-self: center;
    }

    .collab-jm-name {
        align-items: center;
    }

    .collab-vline {
        display: none;
    }

    .collab-center-x {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        grid-column: auto;
    }

    .collab-ms-name {
        align-items: center;
    }

    .collab-mining, .collab-store,
    .collab-jingle, .collab-miner {
        font-size: 22px;
    }

    .collab-ms-icon {
        width: 48px;
        height: 48px;
    }

    .collab-ms-icon span {
        font-size: 20px;
    }

    .collab-x-diamond {
        width: 50px;
        height: 50px;
    }

    .collab-x-diamond span {
        font-size: 22px;
    }

    .collab-crypto-section {
        padding: 1rem 1rem 3.5rem;
    }

    .collab-crypto-grid {
        gap: 0.5rem;
    }

    .collab-bottom-bar {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-items: center;
        align-content: center;
        row-gap: 10px;
        column-gap: 12px;
        min-height: auto;
        padding: 10px 12px 14px;
    }

    .collab-ticker-item {
        font-size: 10px;
        letter-spacing: 1px;
        text-align: center;
        justify-content: center;
    }

    .collab-sep {
        display: none !important;
    }

    /* Tercer ítem (Lottery): fila completa, centrado */
    .collab-ticker-lottery {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .collab-label {
        display: none;
    }
}

@media (max-width: 480px) {
    .collab-mining, .collab-store,
    .collab-jingle, .collab-miner {
        font-size: 18px;
    }

    .collab-content {
        padding: 90px 16px 16px;
        gap: 16px;
    }

    .collab-crypto-title {
        font-size: 12px;
        margin-bottom: 1rem;
    }
}

/* ============================================
   MODAL DE CONTACTO (fin archivo)
   ============================================ */

/* ============================================
   CHECKOUT FORM - CAMPOS ACTUALIZADOS
   ============================================ */

/* Grid de 2 columnas */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Indicador de campo obligatorio */
.req {
    color: #e29117;
    font-weight: 700;
    margin-left: 2px;
}

/* Tag "Opcional" */
.optional-tag {
    font-size: 0.72rem;
    color: #888;
    font-weight: 400;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    padding: 2px 8px;
    margin-left: 6px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Select estilizado igual que form-input */
.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23e29117' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem !important;
    cursor: pointer;
}

.form-select option {
    background: #1a0a1e;
    color: #fff;
}

/* Wrapper para código de país + número */
.phone-input-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.phone-code-select {
    flex: 0 0 auto;
    width: 115px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23e29117' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.6rem center;
    padding-right: 1.8rem !important;
}

.phone-number-input {
    flex: 1;
    min-width: 0;
}

/* Responsive: colapsar en móvil */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .phone-code-select {
        width: 95px;
    }
}
