<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

* {
    box-sizing: border-box;
    font-family: "all-round-gothic";
}

header, footer {
    width: 100%;
}

body, main {
    width: 100%;
    padding: 30px;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 768px) {
    body {
        padding: 8px;
    }
}


/* EMPIEZA EL HEADER MAS EL RESPONSIVE */

.logo-container {
    flex-shrink: 1;
    max-width: 30%;
    display: flex;
    align-items: center;
}

.logo {
    width: 100%;
    max-width: 300px;
    height: auto;
}

nav, .menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap; /* Permite que se acomode todo si no hay espacio */
    gap: 10px;
    padding: 0 20px;
}

.nav-links, .nav-links-erp {
    margin: 0;
    display: flex;
    gap: clamp(10px, 2vw, 40px);
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
}

.nav-links {
    padding: 10px clamp(20px, 4vw, 50px);
    border-radius: 30px;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.341), inset 8px 5px 20px 2px rgba(255,255,255,0.52);
}

    .nav-links a {
        color: #353535;
        font-size: clamp(14px, 1.2vw, 20px);
        font-weight: 500;
        text-decoration: none;
    }

.button--helpdesk, .button--loginerp, .cookies-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fafafa;
    text-decoration: none;
    font-size: clamp(14px, 1.2vw, 20px);
    border-radius: 30px;
    padding: 0.6em 1.5em;
    width: fit-content;
    max-width: 100%;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.341), inset 8px 5px 20px 2px rgba(255,255,255,0.092);
    transition: all 0.3s ease;
}

.button--helpdesk {
    background-color: #000B81;
}

.button--loginerp, .cookies-button {
    background-color: #FF6427;
}

.hamburguer {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    margin: 3px;
    background-color: #000B81;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #FF6427;
}

.button--helpdesk:hover {
    background-color: #3041ff;
}

.cta--button:hover, .button--loginerp:hover {
    background-color: #ff8859;
}

/* RESPONSIVE */
@media (max-width: 980px) {
    nav {
        justify-content: space-between;
        position: relative;
    }
    body{padding: 16px;}
    .menu {
        margin: 0;
        padding: 0;
    }

    main {
        padding: 15px 0
    }

    .logo {
        min-width: 180px;
    }

    .nav-links, .nav-links-erp {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        text-align: center;
        background-color: white;
        z-index: 1000;
    }

        .nav-links.show {
            display: flex;
            margin: 0;
            padding-top: 20px;
            gap: 0;
            border-radius: 30px 30px 0 0;
            box-shadow: -1px -1px 5px 0px rgba(0, 0, 0, 0.307);
        }

        .nav-links-erp.show {
            display: flex;
            top: calc(100% + 150px);
            box-shadow: 0 4px 5px 0px rgba(0, 0, 0, 0.307);
            padding: 20px 0;
            gap: 10px;
            border-radius: 0 0 30px 30px;
        }

        .nav-links li, .nav-links-erp li {
            margin: 3px 0;
        }

        .nav-links li {
            padding: 8px 0;
        }

        .nav-links a {
            font-size: 18px; /* ← Fijo y legible en móviles */
        }

    .hamburguer {
        display: flex;
    }

    .button--helpdesk, .button--loginerp {
        width: 100%;
        margin: 10px auto;
        padding: 12px 20px;
        font-size: 18px; /* ← También fijo y legible */
    }
}

/* ACABA EL HEADER MAS EL RESPONSIVE */

/* EMPIEZA EL MAIN */

h1 {
    font-size: 50px;
    color: #FF6427;
    text-align: center;
    margin: 30px 0;
}

h2 {
    font-size: 32px;
    color: #FF6427;
}

p {
    font-size: 22px;
    color: #353535;
}

@media (max-width: 768px) {

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 25px;
    }

    p {
        font-size: 18px;
    }
}

/* EMPIEZA EL FOOTER */

footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding: 30px;
    border-radius: 30px;
    margin-top: 30px;
    background-color: #FF6427;
    color: #fafafa;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.341), inset 8px 5px 20px 2px rgba(255, 255, 255, 0.52);
}

.information {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.contact {
    text-align: center;
}

.footerbutton, .footerbuttonhover {
    all: unset;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 20px;
}

    .footerbuttonhover:hover {
        font-weight: 600;
    }

.socialmediaicons {
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    margin-top: 10px;
    gap: 20px;
}

.redesicon {
    cursor: pointer;
    width: 25px;
    transition: width 0.2s ease;
}

    .redesicon:hover {
        width: 30px;
    }

.logofooter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    max-width: 300px;
}

.footer-title {
    margin: 0;
    padding: 20px 0;
    font-size: 25px;
}

.footerbutton {
    font-size: 20px;
}

@media (max-width: 850px) {
    footer {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-title {
        font-size: 20px
    }

    .footerbutton {
        font-size: 18px;
    }
}



</pre></body></html>