﻿:root {
    --mp-blue: #009EE3;
    --mp-yellow: #FFE600;
    --mp-dark: #2D3748;
    --mp-light: #F7FAFC;
}

/* Agregando estilos para navbar fija */
.navbar-mp {
    background: linear-gradient(135deg, var(--mp-blue) 0%, #0077B6 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.3rem;
}

.nav-link {
    font-weight: 500;
    transition: color 0.3s ease;
}

    .nav-link:hover {
        color: var(--mp-yellow) !important;
    }

/* Ajustando hero section para navbar fija */
.hero-section {
    background: linear-gradient(135deg, var(--mp-blue) 0%, #0077B6 100%);
    color: white;
    padding: 120px 0 80px; /* Aumentado padding-top para navbar fija */
}

.point-card {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

    .point-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

.price-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--mp-yellow);
    color: var(--mp-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--mp-blue), #0077B6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.cta-section {
    background: linear-gradient(135deg, var(--mp-dark) 0%, #1A202C 100%);
    color: white;
    padding: 60px 0;
}

.btn-mp-primary {
    background: var(--mp-yellow);
    color: var(--mp-dark);
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
}

    .btn-mp-primary:hover {
        background: #E6CF00;
        color: var(--mp-dark);
        transform: translateY(-2px);
    }

.btn-mp-secondary {
    background: transparent;
    color: var(--mp-blue);
    border: 2px solid var(--mp-blue);
    padding: 10px 25px;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
}

    .btn-mp-secondary:hover {
        background: var(--mp-blue);
        color: white;
    }

.feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #E2E8F0;
}

    .feature-list li:last-child {
        border-bottom: none;
    }

.section-title {
    position: relative;
    margin-bottom: 50px;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 3px;
        background: var(--mp-yellow);
    }


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    padding: 15px;
    font-size: 24px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    z-index: 999;
}

/* */

.navbar-brand {
    color: var(--mp-dark);
    transition: all 0.3s ease;
}

    .navbar-brand:hover {
        color: var(--mp-blue);
    }

    /* Link activo */
    .navbar-brand.active {
        color: var(--mp-yellow) !important;
        font-weight: bold;
        border-bottom: 2px solid var(--mp-yellow);
        padding-bottom: 2px;
    }


/* Agregando loading screen tecnológico */

.tech-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

    .tech-loader.fade-out {
        opacity: 0;
        pointer-events: none;
    }

.loader-container {
    text-align: center;
    color: #00d4ff;
}

.circuit-board {
    width: 200px;
    height: 200px;
    position: relative;
    margin: 0 auto 30px;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    animation: circuit-flow 2s infinite;
}

    .circuit-line.horizontal {
        height: 2px;
        width: 100%;
        top: 50%;
    }

    .circuit-line.vertical {
        width: 2px;
        height: 100%;
        left: 50%;
    }

    .circuit-line.diagonal1 {
        width: 141%;
        height: 2px;
        top: 50%;
        left: -20%;
        transform: rotate(45deg);
        animation-delay: 0.5s;
    }

    .circuit-line.diagonal2 {
        width: 141%;
        height: 2px;
        top: 50%;
        left: -20%;
        transform: rotate(-45deg);
        animation-delay: 1s;
    }

.circuit-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 20px #00d4ff;
    animation: pulse-node 1.5s infinite;
}

.node-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0.2s;
}

.node-2 {
    top: 20%;
    right: 20%;
    animation-delay: 0.4s;
}

.node-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 0.6s;
}

.node-4 {
    bottom: 20%;
    right: 20%;
    animation-delay: 0.8s;
}

.node-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.loading-text {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: typing 3s infinite;
}

.loading-progress {
    width: 300px;
    height: 4px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    width: 0%;
    animation: loading-fill 3s ease-out forwards;
}

@keyframes circuit-flow {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes pulse-node {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

@keyframes typing {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes loading-fill {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}