:root {
    --bg-dark: #050505;
    --card-bg: #0a0a0a;
    --accent-cyan: #00f2ff;
    --accent-purple: #7000ff;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-bg: rgba(10, 10, 10, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* Background Glows */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-cyan {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
}

.glow-purple {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 50%;
    height: 60%;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
}

/* Navbar */
.navbar-custom {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-main) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand span {
    background: linear-gradient(90deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-main) !important;
}

.btn-nav-cta {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: var(--text-main) !important;
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-nav-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-main);
}

/* Activation Box */
.activation-box {
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.activation-box .form-control-lumina {
    border-radius: 10px;
    font-size: 0.95rem;
}

.activation-box .btn-primary-lumina {
    padding: 10px 25px;
    border-radius: 10px;
}

/* Login Expand Area */
.login-expand-area {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(5, 5, 5, 1) 100%);
    border-bottom: 1px solid var(--accent-cyan);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.1);
}

.activation-box {
    max-width: 500px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 242, 255, 0.2);
    padding: 40px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.activation-box:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.1);
}

/* Hero Section */
.hero-section {
    padding: 140px 0 100px;
    text-align: center;
    position: relative;
}

.hero-badge {
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent-cyan);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.hero-title span {
    background: linear-gradient(90deg, var(--accent-cyan), #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary-lumina {
    background: var(--accent-cyan);
    color: #000;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-primary-lumina:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
    background: #00d8e4;
}

.btn-secondary-lumina {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid var(--glass-border);
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-lumina:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Pricing Section */
.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(180deg, #fff 0%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Category Filter Controls */
.filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.btn-filter {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    color: var(--text-muted) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    backdrop-filter: blur(5px);
}

.btn-filter:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-main) !important;
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-filter.active {
    background: var(--accent-cyan);
    color: #000 !important;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

/* Pricing Grid & Interactive Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    align-items: stretch;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                border-color 0.3s ease,
                opacity 0.4s ease,
                scale 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 1;
    scale: 1;
    transform-origin: center;
}

.pricing-card.filtered-out {
    opacity: 0;
    scale: 0.8;
    pointer-events: none;
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
    border: none;
}

/* Specific glows and accents for categories */
.pricing-card.card-hosting:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 45px rgba(0, 242, 255, 0.15);
    transform: translateY(-8px);
}

.pricing-card.card-diseño_web:hover {
    border-color: #f72585; /* Premium pink/magenta */
    box-shadow: 0 15px 45px rgba(247, 37, 133, 0.15);
    transform: translateY(-8px);
}

.pricing-card.card-mantenimiento:hover {
    border-color: #10b981; /* Premium Emerald */
    box-shadow: 0 15px 45px rgba(16, 185, 129, 0.15);
    transform: translateY(-8px);
}

.pricing-card.card-marketing:hover {
    border-color: #f59e0b; /* Amber Gold */
    box-shadow: 0 15px 45px rgba(245, 158, 11, 0.15);
    transform: translateY(-8px);
}

/* Micro-interaction on card hover */
.pricing-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.08);
}

/* Category Badges */
.badge-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    width: fit-content;
}

.badge-hosting {
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.badge-web {
    background: rgba(247, 37, 133, 0.1);
    color: #f72585;
    border: 1px solid rgba(247, 37, 133, 0.2);
}

.badge-mantenimiento {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-marketing {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.card-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-hosting .card-icon {
    color: var(--accent-cyan);
}

.card-diseño_web .card-icon {
    color: #f72585;
}

.card-mantenimiento .card-icon {
    color: #10b981;
}

.card-marketing .card-icon {
    color: #f59e0b;
}

.card-name {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.card-price {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.card-hosting .card-price {
    color: var(--accent-cyan);
}

.card-diseño_web .card-price {
    color: #f72585;
}

.card-mantenimiento .card-price {
    color: #10b981;
}

.card-marketing .card-price {
    color: #f59e0b;
}

.card-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.card-features li {
    margin-bottom: 12px;
    color: #e0e0e0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    line-height: 1.4;
}

.card-features li i {
    font-size: 1.1rem;
    margin-top: 1px;
    flex-shrink: 0;
}

.card-hosting .card-features li i {
    color: var(--accent-cyan);
}

.card-diseño_web .card-features li i {
    color: #f72585;
}

.card-mantenimiento .card-features li i {
    color: #10b981;
}

.card-marketing .card-features li i {
    color: #f59e0b;
}

/* Call to Action Button Inside Card */
.btn-card-action {
    width: 100%;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-top: auto;
}

.card-hosting .btn-card-action {
    background: rgba(0, 242, 255, 0.05);
    color: var(--accent-cyan) !important;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

.card-hosting .btn-card-action:hover {
    background: var(--accent-cyan);
    color: #000 !important;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
    transform: translateY(-2px);
}

.card-diseño_web .btn-card-action {
    background: rgba(247, 37, 133, 0.05);
    color: #f72585 !important;
    border: 1px solid rgba(247, 37, 133, 0.2);
}

.card-diseño_web .btn-card-action:hover {
    background: #f72585;
    color: #fff !important;
    border-color: #f72585;
    box-shadow: 0 0 15px rgba(247, 37, 133, 0.4);
    transform: translateY(-2px);
}

.card-mantenimiento .btn-card-action {
    background: rgba(16, 185, 129, 0.05);
    color: #10b981 !important;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.card-mantenimiento .btn-card-action:hover {
    background: #10b981;
    color: #fff !important;
    border-color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.card-marketing .btn-card-action {
    background: rgba(245, 158, 11, 0.05);
    color: #f59e0b !important;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.card-marketing .btn-card-action:hover {
    background: #f59e0b;
    color: #fff !important;
    border-color: #f59e0b;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
    transform: translateY(-2px);
}

.pricing-card .mt-4 {
    margin-top: auto !important;
}

/* Features Section */
.features-preview {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
}

.feature-item {
    padding: 30px;
    transition: transform 0.3s ease;
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    display: block;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
}

.feature-item h4 {
    font-weight: 700;
    margin-bottom: 10px;
}

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

.icon-box-small {
    width: 40px;
    height: 40px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.1;
}

.contact-info h2 span {
    color: var(--accent-cyan);
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
}

.contact-form-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-control-lumina {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 15px 20px;
    color: #fff;
    width: 100%;
    transition: all 0.3s ease;
}

.form-control-lumina:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.08);
}

.input-group-text {
    border-color: var(--glass-border) !important;
    color: var(--text-muted);
}

.input-group:focus-within .input-group-text {
    border-color: var(--accent-cyan) !important;
    color: var(--accent-cyan);
}

.btn-submit-lumina {
    background: var(--accent-cyan);
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 800;
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-lumina:hover {
    background: #00d8e4;
    transform: translateY(-2px);
}

/* Footer */
footer {
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: #000;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

footer p {
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .pricing-card {
        padding: 30px;
    }
}


/* =========================================
   Dashboard Client Panels
   ========================================= */
.dashboard-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.dashboard-card:hover {
    border-color: rgba(0, 242, 255, 0.3);
    /* Accent Cyan */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* --- FIX DE COLOR PARA TEXTOS EN FONDO OSCURO --- */

/* Aplica un color claro a todas las etiquetas, textos de ayuda y textos de entrada */
label,
.form-label,
.text-muted,
.input-group-text,
input.form-control,
select.form-select,
textarea.form-control {
    color: #f8f9fa !important;
    /* Un gris muy claro, casi blanco */
}

/* Para los textos de "placeholder" (el texto de ejemplo dentro del campo) */
input.form-control::placeholder,
textarea.form-control::placeholder {
    color: #adb5bd !important;
    /* Un gris intermedio para los placeholders */
}

/* Asegura que el color de texto en los selects sea correcto y el fondo oscuro */
select.form-select {
    color: #f8f9fa !important;
    background-color: #000 !important;
    /* Fondo negro para el select */
}

/* Color de texto claro para las opciones dentro de un select */
select.form-select option {
    color: #f8f9fa !important;
    background-color: #000 !important;
    /* Fondo negro para las opciones */
}

/* --- FIN DEL FIX --- */

/* =========================================
   Placeholder Cards and New Sections
   ========================================= */

/* Placeholder Coming Soon Cards */
.pricing-card-placeholder {
    filter: grayscale(0.2) blur(0.5px);
    opacity: 0.65;
    border-style: dashed !important;
    border-width: 2px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card-placeholder::before {
    content: 'PRÓXIMAMENTE';
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(0, 242, 255, 0.1);
    border: 1px solid rgba(0, 242, 255, 0.3);
    color: var(--accent-cyan);
    font-size: 0.62rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 1.5px;
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

.pricing-card-placeholder:hover {
    filter: none;
    opacity: 0.95;
    border-style: solid !important;
    border-width: 1px !important;
    box-shadow: 0 15px 45px rgba(0, 242, 255, 0.1) !important;
}

/* Badge mini-indicator inside filter pills */
.badge-soon {
    font-size: 0.6rem;
    padding: 1px 6px;
    background: rgba(0, 242, 255, 0.12);
    color: var(--accent-cyan);
    border: 1px solid rgba(0, 242, 255, 0.25);
    border-radius: 50px;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
}

.btn-filter:hover .badge-soon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-filter.active .badge-soon {
    background: #000;
    color: #00f2ff;
    border-color: #00f2ff;
}

/* Waitlist Leads Input and modal styling */
.waitlist-modal .modal-content {
    background: #070707 !important;
    border: 1px solid rgba(0, 242, 255, 0.2) !important;
    box-shadow: 0 0 40px rgba(0, 242, 255, 0.15);
}

/* Section "Cómo Funciona" */
.how-it-works-section {
    position: relative;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(10, 10, 10, 0.6) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.step-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.05);
}

.step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 0.85rem;
    font-weight: 800;
    color: rgba(0, 242, 255, 0.4);
    background: rgba(0, 242, 255, 0.05);
    border: 1px solid rgba(0, 242, 255, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    display: inline-block;
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.step-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Neon arrows between steps on desktop */
.step-arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(0, 242, 255, 0.3);
    font-size: 2rem;
    animation: pulseArrow 2s infinite ease-in-out;
}

@keyframes pulseArrow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1) translateX(5px);
        opacity: 0.8;
        color: var(--accent-cyan);
    }
}

/* Guarantees section */
.infrastructure-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.guarantee-card {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
    height: 100%;
}

.guarantee-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.guarantee-icon {
    font-size: 2.2rem;
    color: var(--accent-cyan);
    text-shadow: 0 0 15px rgba(0, 242, 255, 0.2);
    flex-shrink: 0;
}

.guarantee-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.guarantee-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

/* --- FIN DEL FIX --- */