/* 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 {
    min-height: calc(100vh );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 100px;
    background: radial-gradient(ellipse at top, rgba(50, 9, 53, 0.4) 0%, transparent 60%);
    position: relative;
    z-index: 10;
}

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

.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;
    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: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.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;
}

.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, .faq-container {
        max-width: 64%;
    }
    
    /* Hero Section */
    .hero {
        padding: 2rem;
        padding-top: 90px;
    }
    
    .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,
    .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: 1rem;
        padding-top: 80px;
        min-height: calc(120vh );
    }
    
    .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 {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
        gap: 2rem;
        padding: 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;
    }
}

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