@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

:root{
    --hover: dodgerblue;
    --bg:#13131a;
    --white:azure;
    --cymaq:#ffcd00;
    --border:.1rem solid rgba(255,255,255,.3);
}

*{
    font-family: 'Roboto', sans-serif;
    margin:0; padding:0;
    box-sizing: border-box;
    outline: none; border:none;
    text-decoration: none;
    transition: .2s linear;
}

html{
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-padding-top: 9rem;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar{
    width: .6rem;
}

html::-webkit-scrollbar-track{
    background: transparent;
}

html::-webkit-scrollbar-thumb{
    background: #fff;
    border-radius: 5rem;
}

body{
    background: var(--bg);
}

section{
    padding:2rem 5%;
}

.mensaje {
    display: block !important;
    width: 100% !important;
    border-radius: 8px;
}
.mensaje h2, .mensaje p, .mensaje li {
    /* color: var(--white) !important; */
    color: var(--bg); !important;
    font-weight: inherit !important;
    font-size: 1.08em !important;
}
.mensaje li:last-child {
    margin-top: 0.35em;
}
.mensaje h2 {
    font-size: 1.2em !important;
    margin: auto auto 0.8em auto !important;
}

.error {
    background: #ba0517 !important;
}
.successC {
    background: #45c65a !important;
}
.error h2, .successC h2 {
    color: var(--white) !important;
}

button, .btn {
    padding: 0.55rem 1rem ;
    background: var(--cymaq);
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    color: var(--white) !important;
}
button:first-child {
    margin-right: 1rem;
}
button:last-child {
    margin-left: 1rem;
}

textarea {
    min-height: 50px;
}

.header{
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.1% 1%;
    border-bottom: 0.15rem solid var(--cymaq);
    top:0; left: 0; right: 0;
    z-index: 1000;
}

.header .logo img{
    max-height: 6.5rem;
}

.contenedor{
    background: var(--bg);
}

.contenedor h1, .contenedor h2 {
    color: var(--white);
    text-align: center;
    font-size: x-large;
    font-weight: bold;
    margin: 0.5rem 0 2rem 0;
}
.contenedor h2 {
    color: var(--bg);
    text-align: left;
    font-weight: bold !important;
}

.contenido {
    display: flex;
}

.contenedor .contenedorImg {
    width: 40%;
    display: flex;
}
.contenedorImg img {
    margin: auto;
    max-width: 80%;
}

.contenedor .informacion {
    width: 60%;
    padding: 0 2rem;
}
.informacion .info {
    width: 100%;
}
.informacion .row{
    display: flex;
    margin: 1rem 0;
}
.informacion .row .individual {
    width: 100% !important;
}
.informacion .row .row-item {
    width: 50%;
    margin: 0 0.5rem;
    background: #202020;
    padding: 0.7rem;
    border-radius: 5px !important;
    display: flex;
}
.informacion .titulos, .informacion .infoAsset {
    color: var(--white);
    font-weight: bold;
    font-size: 1.4rem;
}
.infoAsset{
    margin-left: 0.5rem;
}

.contenedorBotones {
    float: right;
    padding: 0 2rem;
}
.contenedorBotones button {
    color: var(--bg) !important;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
  background-color: #8080808a;
}
  
.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0rem 0rem 0.85rem 0rem;
    width: 40%;
    border-radius: 6px;
}
.modalHeader {
    background: var(--bg);
    border-top-right-radius: 6px;
    border-top-left-radius: 6px;
    justify-content: end;
    display: flex;
}
.modalBody {
    padding: 1rem 1rem 0rem 1rem;
}
/* Form */
.rowInput {
    display: flex;
}
.rowInput .inputBox {
    display: flex;
    align-items: center;
    padding: 1.1rem;
    width: 50%;
}
.inputNumber {
    width: 100% !important;
}
.inputNumber input {
    width: 45% !important;
    margin: auto;
}
.rowInput .inputBox input {
    width: 100%;
    padding: 1rem;
    font-size: 1.4rem;
    color: var(--black);
    text-transform: none;
    background: none;
    border-bottom: solid 1px;
}
.rowInput .inputBox span {
    color: var(--bg);
    font-size: 1.2rem;
}
.rowInput .inputBox label {
    width: 100%;
}
.rowInput .inputBox textarea {
    max-width: 100%;
    min-width: 100%;
    padding: 0.5rem 1rem;
    background: none;
}
.rowInput .descripcion {
    width: 100% !important;
}

.rowBtn {
    justify-content: end;
}
/* Form */

.close {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
    background: transparent;
}

.close:hover,
.close:focus {
  text-decoration: none;
  cursor: pointer;
}
/* Fin modal */

/* Contacto */
.contactSection {
    padding-top: 3rem;
}

.contenedorContacto {
    display: flex;
    margin-top: 1rem;
}
.contenedorContacto .contImgContacto {
    width: 18%;
    margin: auto;
    display: flex;
}
.contImgContacto img {
    width: 65%;
    margin: auto;
}
.contenedorContacto .contInfoContacto {
    width: 82%;
    padding-left: 1rem;
}
.contenedorContacto .contInfoContacto h1, .contenedorContacto .contInfoContacto h2 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
    text-align: left !important;
}
.contenedorContacto .contInfoContacto h2 {
    font-size: 1.3rem;
    margin: 0 0 1.5rem 0;
    text-align: left !important;
}
.redesContacto-item {
    height: 2rem;
    margin: 1rem 0;
    display: flex;
}
.icono {
    width: 2%;
    display: flex;
}
.datos {
    padding: 0 0 0 1rem;
}
.redesContacto-item .fa, .redesContacto-item .fas, .redesContacto-item a {
    color: var(--white);
    margin: auto;
}
.redesContacto-item a {
    color: #2574a9;
    font-size: 1.5rem;
}
.redesContacto-item .fa, .redesContacto-item .fas {
    font-size: 1.6rem;
    margin: auto 0;
}
/* Fin Contacto */

/* media queries  */

/*TV*/
@media (min-width:2558px) {
    .contenedor .contenedorImg {
        width: 35%;
    }
    .contenedorImg img {
        max-width: 100%;
    }

    .contenedor .informacion {
        width: 65%;
    }

    .contenedor h1 {
        font-size: xx-large;
    }

    .informacion .titulos, .informacion .infoAsset {
        font-size: 2rem;
    }

    .informacion .row {
        margin: 1.1rem 0;
    }

    .informacion .row .row-item {
        padding: 2rem;
        border-radius: 6px !important;
    }

    .contenedorContacto .contImgContacto {
        width: 10%;
    }
    .contenedorContacto .contInfoContacto {
        width: 90%;
    }
}

/*Desktop*/
@media (min-width:1400px) {
    .contenedorImg img {
        max-width: 70%;
    }

    .informacion .row .row-item {
        padding: 1rem;
    }

    .contenedorContacto .contInfoContacto {
        width: 83%;
    }

    .contenedorContacto .contImgContacto {
        width: 17%;
    }
}

/*Tablet Vertical*/
@media (max-width:1024px) and (orientation : portrait){
    .contenedorContacto .contImgContacto {
        width: 20%;
    }

    .contImgContacto img {
        width: 70%;
    }

    .contenedorContacto .contInfoContacto {
        width: 80%;
    }

    .contenedorContacto .contInfoContacto h1, .contenedorContacto .contInfoContacto h2 {
        font-size: 1.6rem;
    }

    .contenedorContacto .contInfoContacto h2 {
        font-size: 1.1rem;
    }

    .redesContacto-item .fa, .redesContacto-item .fas {
        font-size: 1.4rem;
    }

    .redesContacto-item a {
        font-size: 1.3rem;
    }

    .modal-content {
        width: 55%;
    }

    .rowInput .inputBox span {
        font-size: 1.1rem;
    }
    .rowInput .inputBox input {
        font-size: 1.2rem;
    }

    button, .btn {
        font-size: 1.2rem;
    }
}

/*Celular Vertical*/
@media (max-width:450px) and (orientation : portrait){
    .contenido {
        display: block;
    }

    .contenedor .contenedorImg {
        width: 100%;
    }
    .contenedorImg img {
        max-width: 60%;
    }

    .contenedor .informacion {
        width: 100%;
        padding: 0px 1rem;
    }

    .contenedor h1 {
        font-size: large;
    }

    .informacion .titulos, .informacion .infoAsset {
        font-size: 1.05rem;
    }

    .modal-content {
        width: 75%;
    }

    .contenedorContacto {
        margin-top: 2rem;
    }
    .contenedorContacto .contImgContacto {
        width: 35%;
    }
    .contenedorContacto .contInfoContacto {
        width: 65%;
    }
    .contenedorContacto .contInfoContacto h1, .contenedorContacto .contInfoContacto h2 {
        font-size: 1.6rem;
    }
    .contenedorContacto .contInfoContacto h2 {
        font-size: 1.1rem;
    }
    .redesContacto-item {
        height: 1.7rem;
    }
    .icono {
        width: 8%;
    }
    .redesContacto-item .fa, .redesContacto-item .fas {
        font-size: 1.4rem;
    }
    .redesContacto-item a {
        font-size: 1.3rem;
    }

    /* Botones */
    button, .btn {
        font-size: 1rem;
        color: var(--white) !important;
    }
    .contenedorBotones {
        display: flex;
    }
}

/*Tablet Horizontal*/
@media only screen and (min-device-width : 810px) and (max-device-width : 1024px) and (orientation : landscape) {
    .contenedorImg img {
        max-width: 75%;
    }

    .modal-content {
        width: 55%;
    }
    .rowInput .inputBox input {
        width: 98%;
        margin-left: 2%;
    }
}

/*Tablet G Horizontal*/
@media only screen and (min-device-width : 1025px) and (max-device-width : 1180px) and (orientation : landscape) {}

/*Celular Horizontal*/
@media only screen and (min-width : 321px)  and (max-device-width : 854px) and (orientation : landscape) {
    .contenedorImg img {
        max-width: 75%;
    }

    .contenedor h1 {
        font-size: large;
    }

    .informacion .titulos, .informacion .infoAsset {
        font-size: 1.05rem;
    }

    .contenedorContacto .contImgContacto {
        width: 17%;
    }
    .contenedorContacto .contInfoContacto {
        width: 83%;
    }  
    .contenedorContacto .contInfoContacto h1, .contenedorContacto .contInfoContacto h2 {
        font-size: 1.5rem;
    }
    .contenedorContacto .contInfoContacto h2 {
        font-size: 1.1rem;
    }
    .redesContacto-item {
        height: 1.5rem;
    }
    .redesContacto-item .fa, .redesContacto-item .fas {
        font-size: 1.3rem;
    }
    .redesContacto-item a {
        font-size: 1.2rem;
    }

    .modal-content {
        width: 55%;
    }
    .rowInput .inputBox input {
        width: 98%;
        margin-left: 2%;
    }
}

/*Iphone 4 Horizontal*/
@media only screen and (max-device-width : 480px) and (orientation : landscape) {}

/*Celular pequeño Vertical*/
@media only screen and (min-device-width: 320px) and (max-device-width: 480px){
    .modal-content {
        width: 85%;
    }
}