/* Tipografías para encabezados exportadas desde Google || Tipografía Anton*/

@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

/* .anton-regular {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
} */

/* ------------------------------------------------------------------ */
/* Tipografías para encabezados secundarios y para parrafos/textos (formato .woff) || Tipografía Poppins: Black, ExtraBold y SemiBold */

@font-face {
    font-family: 'poppinsblack';
    src: url('../fonts/poppins-black/poppins-black-webfont.woff2') format('woff2'),
        url('../fonts/poppins-black/poppins-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinsextrabold';
    src: url('../fonts/poppins-extrabold/poppins-extrabold-webfont.woff2') format('woff2'),
        url('../fonts/poppins-extrabold/poppins-extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'poppinssemibold';
    src: url('../fonts/poppins-semibold/poppins-semibold-webfont.woff2') format('woff2'),
        url('../fonts/poppins-semibold/poppins-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Se define la tipografía por clases desde el inicio de este documento, los tamaños iran variando según las secciones y el requerimiento */

.encabezado {
    font-family: "Anton", sans-serif;
}

.textos-titulos {
    font-family: 'poppinssemibold';
}

.botones {
    font-family: 'poppinssemibold';
}

/* ////////////////////////// body //////////////////////////// */

body {
    margin: 0;
    background-image: url(../imagenes/fondo-contacto-2.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
}

/* ///////////////////////// barra de navegación ///////////////////// */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    box-sizing: border-box;
}

#logo-kupula {
    width: 60px;
}

nav a {
    text-decoration: none;
    color: white;
}

#logo {
    color: white;
    font-size: 4vh;
}

nav ul {
    display: flex;
    gap: 60px;
}

nav li {
    list-style: none;
    font-family: "Anton", sans-serif;
    font-size: 3vh;
}

nav li a:hover {
    color: #fff137;
    text-decoration: underline;
}

.clase-conmutador {
    display: none;
    color: white;
}

/* ///////////////////////// formulario //////////////////////// */

#contenedor {
    /* border: solid 2px #fff137; */
    display: flex;
    /* flex-wrap: wrap; */
    align-items: flex-start;
    gap: 50px;
    max-width: 1000px;
    margin: auto;
}

h1 {
    font-size: 3.5vh;
    font-weight: 100;
    color: #fff137;
    margin: 0px 0px 30px 0px;
}

form {
    /* height: 600px; */
    flex: 0 1 50%;
    padding: 20px;
    border: solid 3px #fff137;

    div {
        margin-bottom: 40px;
    }

    button {
        background: none;
        border: solid 2px #fff137;
        border-radius: 10px;
        padding: 10px 15px;
        font-family: 'poppinssemibold';
        font-size: 2vh;
        color: #fff137;
        float: right;
    }

    button:hover {
        background-color: #fff137;
        color: #0d1710;
    }
}

label {
    font-family: 'poppinssemibold';
    color: white;
    font-size: 2vh;

}

input {
    width: 90%;
    display: block;
    margin-top: 10px;
    padding: 10px;
    border: none;
    outline: none;
    background: none;
    border-bottom: solid 2px #fff137;
    font-family: 'poppinssemibold';
    color: white;
    font-size: 2vh;
}

select {
    display: block;
    margin-top: 20px;
    padding: 10px;
    border: solid 2px #fff137;
    border-radius: 10px;
    background: none;
    font-family: 'poppinssemibold';
    color: #fff137;
    font-size: 2vh;
    outline: none;

    option {
        background-color: #0d1710;
    }

    option:hover {
        background-color: #fff137;
        color: #0d1710;
    }
}

/* ////////////////////////// Aside //////////////////////////// */
aside {
    padding: 20px 0px;
    flex: 0 1 50%;
    color: white;
    /* border: solid 2px #fff137; */
}

#info-footer {
    flex: 0 1 70%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    /* border: solid 2px #fff137; */

    a {
        color: white;
        text-decoration: none;
    }

    span {
        color: #fff137;
    }
}

#info {
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#iconos {
    margin-top: 30px;
}

.iconos {
    width: 3vw;
}

#privacidad {
    a {
        margin: 15px 0px;
        display: block;
        color: #fff137;
    }
}

/* ///////////////// Mediaqueries para tablet ///////////////////// */

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {

    body {
        background-image: none;
        background-color: #0d1710;
    }

    nav {
        width: 100%;
        padding: 0px;
        position: fixed;
        top: 0;
        flex-direction: column;
        align-items: start;
        z-index: 2;
    }

    nav ul {
        margin: 0;
        display: none;
        width: 100%;
        background-color: #0d1710;
        border-bottom: solid 5px white;
    }

    nav li {
        display: block;
        font-size: 3.5vw;
        margin: 10px 0px;
    }

    #logo {
        font-size: 5vw;
    }

    #div-logo {
        width: 100%;
        padding: 10px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .clase-conmutador {
        display: block;
        cursor: pointer;
    }

    .desplegado {
        display: block;
    }

    /* //////////////////// contenedor y formulario /////////////// */
    #contenedor {
        margin-top: 10%;
        flex-direction: column;
        padding: 20px;

        h1 {
            font-size: 4vw;
        }
    }

    form {
        width: 100%;
        box-sizing: border-box;

        button {
            font-size: 2.5vw;
        }

    }

    label {
        font-size: 3vw;
    }

    select,
    input {
        font-size: 2vw;
    }

    option {
        font-size: 1.2vw;
    }

    /* ///////////////////// Aside //////////////////////////////// */

    #info {
        font-size: 2vw;
    }

    .iconos {
        width: 7vw;
    }

    #privacidad {
        font-size: 2vw;
    }
}

@media screen and (min-width: 768px) and (max-width: 1367px) and (orientation: landscape) {

    body {
        background-image: url(../imagenes/fondo-contacto-3.png);
        background-repeat: no-repeat;
        background-size: cover;
    }

    /* /////////////////////// Contacto ////////////////////////// */

    #contenedor {
        margin-top: 5%;
    }

}


/* /////////////////////////////////////////////////////////////// */
/* /////////////// Media queries para movil ///////////////////// */

@media screen and (max-width: 768px) {

    body {
        background-image: none;
        background-color: #0d1710;
    }

    /* /////////////////////// Barra de navegación /////////////////// */

    nav {
        width: 100%;
        padding: 0px;
        position: fixed;
        top: 0;
        flex-direction: column;
        align-items: start;
        z-index: 2;
    }

    nav ul {
        margin: 0;
        display: none;
        width: 100%;
        background-color: #0d1710;
        border-bottom: solid 3px white;
        display: none;
    }

    nav li {
        display: block;
        font-size: 4vw;
        margin: 10px 0px;
    }

    #logo {
        font-size: 6vw;
    }

    #div-logo {
        width: 100%;
        padding: 10px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }

    .clase-conmutador {
        display: block;
        cursor: pointer;
    }

    .desplegado {
        display: block;
    }

    #contenedor {
        flex-direction: column;
        padding: 20px;
        margin-top: 10%;

        h1 {
            font-size: 5vw;
        }
    }

    form {
        width: 100%;
        box-sizing: border-box;

        button {
            font-size: 3.5vw;
        }
    }

    label {
        font-size: 3.5vw;
    }

    select,
    input {
        font-size: 3.5vw;
    }

    option {
        font-size: 1.5vw;
    }

    /* ///////////////////// Aside //////////////////////////////// */

    #info {
        font-size: 3vw;
    }

    .iconos {
        width: 10vw;
    }

    #privacidad {
        font-size: 3vw;
    }

}