body {
    margin: 0px;
    font-size: 16pt;
    font-family: "IBM Plex Sans Condensed", sans-serif;
}
.contenedor {
    max-width: 1300px;
    margin: 0px auto;
    height: 100%;
    @media (width <= 1300px) {
        margin: 0px;
        max-width: 100%;
        box-sizing: border-box;
        padding: 10px;
    }
}

header {
    position: fixed;
    height: 75px;
    width: 100vw;
    color: white;

    z-index: 4;

    transition: background-color 0.25s;
    &.sólido {
        background: white;
        .contenedor {
            div.logo img {
                filter: none;
            }

            ul li {
                a {
                    color: #064770;
                }
                &.panel-clientes {
                    background-color: #064770;
                    a {
                        color: white;
                    }
                }
            }
        }
    }

    .contenedor {
        display: flex;
        align-items: center;
        gap: 50px;
        @media (width < 1050px) {
            gap: 10px;
        }

        div.hamburguesa {
            display: none;
            @media (width < 1050px) {
                display: block;
            }
        }

        div.logo  {
            text-align: center;
            img {
                height: 40px;
                filter: brightness(100) grayscale(80%);
                transition: filter 0.25s;
            }
            @media (width < 1050px) {
                text-align: center;
                flex-grow: 2;
            }

        }
        div.panel-clientes {
            margin-left: auto;
            a {
                background: black;
                border: 5px solid var(--color-alterno);
                padding: 10px 30px;
                border-radius: 50px;

                color: white;
                text-decoration: none;
                &:hover {
                    text-decoration: underline;
                }
                img {
                    vertical-align: middle;
                    width: 30px;
                }
            }
            @media (width < 1050px) {
                margin-left: 0px;
                .texto {
                    display: none;
                }
            }

        }

        ul {
            display: flex;
            height: 100%;
            padding : 0px;
            gap: 50px;
            font-size: 90%;

            li {
                display: flex;
                flex-direction: row;
                align-items: center;
                a {
                    color: white;
                    text-decoration: none;
                    &:hover {
                        text-decoration: underline;
                    }
                }
            }

            @media (width < 1050px) {
                display: none;
            }
        }
    }
}

footer {
    color: white;
    background-color: #222;
    min-height: 200px;
    padding: 20px;

    font-weight: normal;
    font-size: 80%;

    .contenedor {
        display: flex;
        justify-content: space-between;
        gap: 40px;

        @media (width < 1050px) {
            flex-direction: column;
        }

        a, a:visited {
            color: white;
            text-decoration: none;
        }
    }


    .teh-paperclip-space {
        text-align: center;
        .preludio {
            margin-bottom: 20px;
            font-size: 80%;
        }
        div.paperclip {
            img {
                width: 256px;
            }
        }
        ul.antisocial {
            margin-top: 20px;
            flex-direction: row;
            list-style: none;
            justify-content: center;
            padding: 0px;
            gap: 10px;
            img {
                width: 32px;
            }
        }
    }



    h1 {
        font-weight: bold;
        font-size: 110%;
        margin-bottom: 20px 0px;
    }

    ul {
        list-style: none;
        padding: 0px;
        margin: 0px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

dialog#abrir-panel-clientes {
    font-size: 110%;
    width: 500px;
    background-color: white;
    color: black;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.5);

    h1 {
        margin: 0px;
        color: var(--color-base);
    }
    div.botones {
        padding-top: 20px;
    }
    a.acción {
        display: inline-block;
        text-decoration: none;
        padding: 15px 20px;
    }
    a#entendido {
        color: white;
        background-color: var(--color-base);
        border: none;
        border-radius: 10px;
        cursor: pointer;
    }
    a#cerrar-información-prueba-gratuita {
        background-color: inherit;
        border: none;
        color: black;
    }

    @media screen and (max-width: 600px) {
        box-sizing: border-box;
        width: 90%;
        height: 50%;
        padding: 20px;
        a.acción {
            display: block;
            text-align: center;
        }
    }
}
