@import url(header.css);
@import url(main.css);
@import url(footer.css);
@import url(media.css);
@import url(software.css);
@import url(web.css);
@import url(tecnico.css);
@import url(contacto.css);

@font-face {
    font-family: "SpaceGrotesk-SemiBold";
    src: url(../fuente/SpaceGrotesk-SemiBold.ttf);
}
@font-face {
    font-family: "Manrope-Regular";
    src: url(../fuente/Manrope-Regular.ttf);
}

:root {
    --color_primario: #0099FF;
    --color_secundario: #1004bd;
    --color_tercero: #E5E2E3;
    --color_cuarto: #71fa93;
}
* {
    box-sizing: border-box;
    margin: 0;
}
body {
    background-color: #131314;
    font-family: "Manrope-Regular";
}
h1 {
    font-family: "SpaceGrotesk-SemiBold";
}
.contenedor {
    width: 99%;
    max-width: 1100px;
    margin: 0 auto;
}

/*--------------------WHATSAPP--------------------*/

.whatsap__chat {
    width: 60px;
    height: 60px;
    background: var(--color_primario);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 5px;
    position: fixed;
    bottom: 50px;
    right: 30px;
    cursor: pointer;
    border: 4px solid transparent;
    transition: all 300ms ease;
    z-index: 1000;
}
.whatsap__chat:hover {
    transform: scale(1.1);
    border-color: rgba(0,0,0,0.1);
}