    body {
        margin: 0;
        padding: 0;
    }

    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-family: 'Chewy', cursive;
        color: white;
        padding: 4px 10px;
        background: #312D81;
        flex-wrap: nowrap;
    }

    .menu {
        display: flex;
        gap: 15px;
    }

    .boton {
        font-size: 18px;
        font-weight: bold;
        background-color: #262361;
        color: white;
        border: 6px solid #262361;
        border-radius: 10px;
        text-decoration: none;
        padding: 4px 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }

    .boton:hover {
        background-color: #413c8f;
        border: 6px solid #413c8f;
        cursor: pointer;
    }

    .contenedor-boton {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    @keyframes myAnim {
        0% {
            opacity: 0;
            transform: translateX(-250px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }

    }

    .Logo {
        padding: 2px;
        height: 80px;
        animation: myAnim 2s ease 0s 1 normal forwards;
    }

    nav.menu {
        display: flex;
        gap: 10px;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    nav.menu::-webkit-scrollbar {
        display: none;
    }



    @media (max-width: 480px) {
        .boton {
            font-size: 18px;
            padding: 4px 8px;
            border-width: 3px;
            white-space: nowrap;
        }

        .boton:hover {
            background-color: #413c8f;
            border: 3px solid #413c8f;
            cursor: pointer;
        }

        .Logo {
            height: 70px;
        }

    }

    body {
        margin: 0;
        padding: 0;
        background: #f5f6fa;
    }

    .seccion-legal {
        background: #f5f6fa;
        padding: 100px 20px;
        display: flex;
        justify-content: center;
    }

    .caja-informacion {
        max-width: 900px;
        background: #ffffff;
        padding: 40px;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        font-family: "DM Sans", sans-serif;
        /* fuente seria */
        color: #333;
        line-height: 1.7;
    }

    .caja-informacion h2 {
        text-align: center;
        color: #312D81;
        font-size: 32px;
        margin-bottom: 25px;
        font-weight: 700;
    }

    .caja-informacion h3 {
        margin-top: 25px;
        color: #262361;
        font-size: 20px;
    }

    .caja-informacion p {
        font-size: 16px;
        margin: 10px 0;
    }