@charset "utf-8";
@font-face{
    font-family: "Poppins";
    src: url("../fonts/Poppins-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: "Poppins";
    src: url("../fonts/Poppins-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Ubuntu";
    src: url("../fonts/Ubuntu-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: "Ubuntu";
    src: url("../fonts/Ubuntu-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: "Ubuntu";
    src: url("../fonts/Ubuntu-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #767676;
}

.cabecera nav{
    display:grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    position:fixed;
    top:0;
    width:100%;
    background-color: rgb(255 255 255 / 90%);
    backdrop-filter: blur(15px);
}

.cabecera nav .logo{
    width: 150px;
    margin-left: 30px;
    padding: 10px 20px;
}

.cabecera nav .logo img{
    width: 100%;
}

.cabecera nav .barnav{
    display:grid;
    grid-template-columns: repeat(4,auto);
    margin-right: 30px;
}

.cabecera nav .barnav div{
    padding: 10px 20px;
}

.cabecera nav .barnav div:hover{
    cursor: pointer;
    background:#F9F9F9;
}

.cabecera nav a{
    color: #404756;
    text-decoration: none;
}

.contenido{
    max-width: 1180px;
    padding: 10px 20px 10px 20px;
    margin: 50px auto; 
    min-height: calc(100vh - 180px);
}

.banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.banner .contenidobanner{
    margin : 30px;
    width: 930px;
}

.frase {
    text-align: center;
}

.presentacion {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content:space-between;

    padding: 0px 0px 50px 0px;
}

.fotoacercade{
    width: calc(40% - 30px);
    padding: 20px 30px 0px 0px;
} 

.fotoacercade img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.contenidoacercade{
    width: calc(60% - 30px);
    padding : 20px 0px 0px 30px;
}

.contenidoacercade p{
    margin: 15px 0;
}

.pie{
    background-color: #F9F9F9;
    font-size: 12px;
    text-align: center;
    padding: 20px 23px;
}

.texto1{
    font-family: 'Ubuntu', sans-serif;
    font-size: 50px;
    color: #000000;
}
.texto2{
    font-family: 'Ubuntu', sans-serif;
    font-size: 74px;
    font-weight: 600;

    background: linear-gradient(to right, #23A460, rgb(0, 255, 123));
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
}