/* - - - - -PAGINA PUNTO VENTA - - - - - */



.glass-body {
            font-family: 'Montserrat', sans-serif;
            color: #fff;
            /* Fondo minimalista y elegante */
            background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0a1016 100%);
            background-size: 200% 200%;
            animation: gradient-animation 20s ease infinite;
        }

        @keyframes gradient-animation {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Header flotante */
        .glass-header {
            position: absolute;
            width: 100%;
            z-index: 10;
        }
        .glass-header nav a, .glass-header .fa-solid { color: #ffffff !important; }
        .glass-header .nav-links ul li a { color: #ffffff; }
        .glass-header .nav-links ul li::after { background: #ffffff; }
        .glass-header .fa-bars { color: #ffffff; }

        /* Estructura general */
        .glass-section {
            padding: 100px 6%;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        /* Hero Section */
        .glass-hero {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            gap: 60px;
        }

        .hero-text-container {
            max-width: 550px;
            text-align: left;
            z-index: 2;
        }
        
        .windows-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #0078d4 0%, #0053a4 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 16px rgba(0, 120, 212, 0.3);
    letter-spacing: 0.5px;
}

        .windows-badge i {
            font-size: 18px;
        }

       .hero-text-container .subtitle {
    font-weight: 700;
    font-size: 14px;
    color: #4ade80;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
}


        .hero-text-container h1 {
            font-size: 56px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 30px;
            color: #fff;
            letter-spacing: -1px;
        }

        .hero-text-container p {
            font-size: 18px;
            font-weight: 400;
            color: #d1d5db;
            margin-bottom: 20px;
            padding: 0;
            line-height: 1.7;
        }

        .hero-image-container {
            flex-shrink: 0;
            z-index: 1;
        }

        .hero-image-container img {
            max-width: 450px;
            filter: drop-shadow(0 30px 20px rgba(0,0,0,0.3));
            animation: float-animation 6s ease-in-out infinite;
        }
        
        @keyframes float-animation {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-25px); }
        }

        /* Panel de Cristal Genérico - Minimalista */
        .glass-panel {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.15);
            padding: 40px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .glass-panel:hover {
            box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.25);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transform: translateY(-4px);
        }

        /* Títulos */
        .glass-title {
            font-size: 42px;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }

        .glass-subtitle {
            font-size: 18px;
            color: #d1d5db;
            max-width: 700px;
            margin: 0 auto 70px auto;
            line-height: 1.7;
        }
        
        /* Features */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            text-align: left;
        }
        
        .features-grid .glass-panel i {
            font-size: 36px;
            color: #4ade80;
            margin-bottom: 24px;
        }

        .features-grid .glass-panel h3 {
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
            text-align: left;
        }

        .features-grid .glass-panel p {
            font-size: 16px;
            line-height: 1.8;
            color: #d1d5db;
            padding: 0;
        }

        /* Video */
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 */
            height: 0;
            border-radius: 15px;
            overflow: hidden;
        }
        .video-container iframe {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
        }

        /* Botones - Minimalista */
        .glass-btn {
            padding: 16px 32px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
            font-size: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-primary {
            background-color: #ffffff;
            color: #0a1016;
        }
        .btn-primary:hover {
            background-color: #f3f4f6;
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(255, 255, 255, 0.1);
        }

        .btn-secondary {
            background-color: transparent;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        .btn-download {
            background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
            color: #ffffff;
            font-weight: 700;
        }
        .btn-download:hover {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(74, 222, 128, 0.3);
        }

        .btn-cta-giant {
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: #ffffff;
            font-weight: 700;
            font-size: 18px;
            padding: 22px 40px;
            width: 100%;
            margin-top: 35px;
            box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
            animation: pulse-glow 2s ease-in-out infinite;
        }
        .btn-cta-giant:hover {
            background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
            transform: translateY(-3px);
            box-shadow: 0 16px 32px rgba(37, 211, 102, 0.5);
            animation: none;
        }

        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
            }
            50% {
                box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
            }
        }

        /* Responsive */
        @media (max-width: 1000px) {
            html, body {overflow-x: hidden;}
            .glass-body {
                overflow-x: hidden;
            }
            .glass-hero {
                flex-direction: column;
                text-align: center;
                padding: 80px 6% 60px;
            }
            .hero-text-container {
                text-align: center;
                max-width: 100%;
            }
            .hero-text-container h1 {
                font-size: 42px;
            }
            .glass-section {
                padding: 70px 6%;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 600px) {
            .hero-image-container img {
                max-width: 300px;
            }
            .hero-text-container h1 {
                font-size: 36px;
            }
            .glass-title {
                font-size: 32px;
            }
            .glass-section {
                padding: 50px 5%;
            }
            .price-tag {
                font-size: 48px;
            }
            .btn-cta-giant {
                font-size: 16px;
                padding: 18px 30px;
            }
            .windows-badge {
                font-size: 12px;
                padding: 8px 16px;
            }
        }


/* === SECCIÓN DE PRECIOS === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
}

.pricing-card h3 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
}

.price-tag {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
    letter-spacing: -2px;
}

.price-period {
    font-size: 18px;
    font-weight: 500;
    color: #9ca3af;
}

.billing-cycle {
    color: #4ade80;
    min-height: 28px;
    text-align: center;
    margin-bottom: 32px;
    font-size: 14px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 14px;
    font-size: 15px;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-list .fa-check {
    color: #4ade80;
    font-size: 16px;
    flex-shrink: 0;
}

.features-list .fa-star {
    color: #fbbf24;
    font-size: 16px;
    flex-shrink: 0;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -45px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #ffffff;
    padding: 6px 45px;
    transform: rotate(45deg);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.3);
}

.pricing-card.recommended {
    border-color: rgba(74, 222, 128, 0.4);
    box-shadow: 0 4px 32px 0 rgba(74, 222, 128, 0.15);
}

.pricing-card.recommended:hover {
    border-color: rgba(74, 222, 128, 0.6);
    box-shadow: 0 8px 48px 0 rgba(74, 222, 128, 0.25);
}

/* === ESTILOS PARA LA NUEVA SECCIÓN DE CONTACTO POR WHATSAPP === */

.contact-form-container {
    max-width: 700px; /* Ancho ajustado para la nueva versión */
    margin: 0 auto;
    text-align: left;
}

.whatsapp-sender .input-group {
    width: 100%;
    margin-bottom: 25px; /* Espacio entre el campo de texto y el botón */
}

.whatsapp-sender .input-group label {
    color: #ffffff;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
}

.contact-input {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-input:focus {
    outline: none;
    border-color: rgba(74, 222, 128, 0.5);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.15);
}

textarea.contact-input {
    resize: vertical; /* Permite al usuario ajustar la altura */
}

strong {
    font-weight: 700;
}

/* Modal de enviar link */
.modal-link-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal-link-overlay.show {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-link-content {
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    border-radius: 24px;
    padding: 40px 30px;
    max-width: 480px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.modal-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-align: center;
}

.modal-subtitle {
    font-size: 15px;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 32px;
}

.modal-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modal-option-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.modal-option-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.option-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.whatsapp-option .option-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
}

.email-option .option-icon {
    background: linear-gradient(135deg, #EA4335 0%, #C5221F 100%);
    color: #ffffff;
}

.copy-option .option-icon {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: #ffffff;
}

.option-text {
    flex-grow: 1;
    text-align: left;
}

.option-text h4 {
    font-size: 17px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.option-text p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
    padding: 0;
}

.modal-option-btn > .fa-chevron-right {
    color: #6b7280;
    font-size: 16px;
}

.modal-option-btn:hover > .fa-chevron-right {
    color: #ffffff;
}

/* Responsive modal */
@media (max-width: 600px) {
    .modal-link-content {
        padding: 35px 25px;
    }

    .modal-title {
        font-size: 22px;
    }

    .option-icon {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .option-text h4 {
        font-size: 16px;
    }
}

/* CTA Secundario en sección de pricing */
.cta-secondary-container {
    margin-top: 60px;
    text-align: center;
    padding: 40px 20px;
    background: rgba(37, 211, 102, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.cta-text {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.btn-cta-secondary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 17px;
    padding: 18px 36px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-cta-secondary:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

