    /* CSS Genérico Landing Page */
    body {
        color: #333;
        line-height: 1.6;
    }

    /* Header / Banner Hero */
    .hero {
        position: relative;
        height: 60vh;
        /* 60% del alto de la pantalla */

        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Overlay oscuro para que se lea el texto */
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .hero-content {
        position: relative;
        text-align: center;
        color: white;
        padding: 20px;
    }

    .hero-tag {
        background: #333333;
        color: white;
        padding: 5px 15px;
        text-transform: uppercase;
        font-size: 0.6rem;
        letter-spacing: 1px;
        font-weight: 500;
    }

    .main-container h1 {
        font-size: 3rem;
        margin: 20px 0 10px 0;
        line-height: 1.2;
    }

    .main-container p {
        font-size: 1.4rem;
        font-weight: 300;
        margin: 0 0 20px 0;
        opacity: 0.9;
        line-height: 1.4;
    }

    /* Contenido Principal */
    .main-container {
        max-width: 900px;
        margin: -50px auto 50px auto;
        /* Efecto solapado */
        background: white;
        padding: 40px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: relative;
    }

    .description {
        font-size: 1.1rem;
        color: #555;
        margin-bottom: 40px;
        white-space: pre-line;
    }

    /* Sección de Precio y Acción */
    .cta-box {
        background: #f8f9fa;
        border-left: 5px solid var(--azul);
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .cta-btns{
        padding: 20px;
        display: flex;
        justify-content: left;
        align-items: center;
        flex-wrap: wrap;
    }

    .price-tag {
        font-size: 2rem;
        font-weight: bold;
        color: #333;
    }

    .price-label {
        display: block;
        font-size: 0.9rem;
        color: #777;
        text-transform: uppercase;
    }

    .btn-cotizacion {
        background-color: var(--gris__medio);
        color: white;
        padding: 15px 30px;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 500;
        transition: background 0.3s;
        margin: 5px;
        width: 100%;
        text-align: center;
    }

        .btn-cotizacion:hover {
        background-color: #000000;
    }

.btn-contact {
        background-color: var(--azul);
        color: white;
        padding: 15px 30px;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 500;
        transition: background 0.3s;
        margin: 5px;
        width: 100%;
        text-align: center;
}

    .btn-contact:hover {
        background-color: #0056b3;
    }
    

    /* Responsive */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2rem;
        }

        .cta-box {
            flex-direction: column;
            text-align: center;
            gap: 20px;
        }

        .main-container {
            margin-top: 0;
            border-radius: 0;
        }
    }













    /* Estilos para la nueva tabla de datos */
    .specs-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        margin-top: 30px;
        background: #fdfdfd;
        padding: 20px;
        border-radius: 8px;
        border: 1px solid #eee;
    }

    .spec-item {
        margin-bottom: 10px;
        border-bottom: 1px solid #f0f0f0;
        padding-bottom: 5px;
    }

    .spec-label {
        font-weight: bold;
        color: #555;
        display: block;
        font-size: 1em;
    }

    .spec-value {
        color: #929292;
        font-size: 0.8em;
        font-weight: 600;
        text-transform: uppercase;
    }


    .download-link {
        display: inline-block;
        color: rgb(0, 0, 0);
        padding: 15px 30px;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 500;
        transition: background 0.3s;
        margin: 5px;
        width: 100%;
        text-align: center;
        border: 1px solid #979797;
    }


    .software__line{
        background-color: var(--negro);
        color: var(--blanco);
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 18px;
        font-weight: 600;
    }