@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;1,300;1,500&display=swap');
:root {

    /* --violeta-claro: #621833; */
    --violeta: #D52C67;
    --violeta-oscuro: #52142B;

    --White: hsl(0, 0%, 100%);
    --intermediate-dark-blue: hsl(213, 19%, 22%);
    /* --violeta: hsl(25, 97%, 53%);
    --Orange: hsl(25, 97%, 53%); */

    --Light-Grey:#eeeeee;
    --Medium-Grey: hsl(216, 12%, 54%);
    --Dark-Blue: #484546;
    --Very-Dark-Blue: hsl(216, 12%, 8%);

    --font: 'Roboto', sans-serif;
    --gradiente--foro: linear-gradient(140deg, var(--violeta-oscuro) 33%, var(--violeta) 69%);
    --gradiente--curso: linear-gradient(140deg, var(--violeta-oscuro) 33%, var(--violeta) 69%);
    /* --gradient--violeta: linear-gradient(315deg, rgba(15,9,45,1) 0%, rgba(32,23,77,1) 14%, rgba(48,37,102,1) 37%, rgba(70,58,132,1) 51%); */
    --gradient--violeta: linear-gradient(140deg, #A21B4F 33%, var( --violeta-oscuro ) 69%);
    --gradient--gris: linear-gradient(315deg, rgb(203 198 199)  0%, rgba(223,215,215,1) 34%, rgba(238,238,238,1) 51%);

}
html{
    box-sizing: border-box;
    font-family: var(--font);
    scroll-behavior: smooth;
    background-color: var(--White);
    color: var(--intermediate-dark-blue);
}
body{
    margin: 0;
    padding: 0;
}
p{
    font-size: 15px;
}
.no-mostrar{
    display: none;
}
a{
    text-decoration: none;
}
h2, h5, h4, h3, p, a{
    margin: 0;
    padding: 0;
}

.contenedor{
    width:auto;
    justify-content: center;
    display: flex;
    flex-direction: column; 
    margin: 0 1.5rem;
    margin-top: 2.5rem; 
}
.contenido{
    margin-top: 15px;
    padding: 1rem;
}

.registro-exitoso{
    text-align: center;
    margin-top: 5rem;
    height: 30vh;
}
.registro-exitoso h4 a{
    color: var(--violeta);
}
.registro-exitoso h4 a:hover {
    color: var(--violeta-oscuro);
}
/*-------------------nav--------------------*/
.header{
    display: grid;
    grid-template-rows: 60px 50px 50px;
    grid-template-columns: 85% 15%;  
    margin-top: 50px;
}
.logo{
    width: 90%;
    grid-row: 1/2;
    grid-column: 1/3;
    margin-left: 2rem;
}
.header .menu-btn{
    grid-row: 2/3;
    grid-column: 2/3;
    margin: 0;
    background-color: var(--Very-Dark-Blue);
    fill: var(--White);
    border: 0;
    border-radius: 3px;
    margin-top: 20px; 
    margin-right: 2rem;
    height: 25px;
    width: 35px;
    align-self: center;
    justify-self: flex-end;
    line-height: 1;
}
.menu{
    grid-row: 3/4;
    grid-column: 1/3;
    display: block;
    width: 100%;
    grid-template-rows: repeat(6, 1fr);
    justify-content: flex-start;
    background-color: var(--White);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
}
.menu a {
    text-align: left;
    color: var(--Very-Dark-Blue);
    font-family: var(--font); 
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    transition: 0.1s;
    padding-top: 10px; 
    padding-bottom: 0.5rem;
    text-indent: 20px;
}
.menu a{
    display: block; 
    border-bottom: 1px solid rgb(218, 207, 207);
    background-color: var(--White);
    margin-left: 0.5rem;
}
.sin-borde{
    border-bottom: none !important;
    padding-top: 0.5rem;
}
.is-active {
    opacity: 1;
    pointer-events: auto;
}  
.header .a-btn{
    grid-row: 3/4;
    grid-column: 1/3;
    text-align: center;
    background-color: var(--violeta);
    border: 0;
    color: var(--White);
    border-radius: 3px;
    padding: 0.5rem 1rem;
    height: 18px;
    font-size: 15px;
    align-self: flex-end;
    justify-self: flex-end;
    margin-right: 2rem;
    font-family: var(--font), Sans-serif;
    line-height: 1.1;
    font-weight: 500;
}
/*---------------nav dropdown-----------------*/
.nav{
    overflow: hidden;
}
.dropdown {
    /* margin-top: 0; */
    float: left;
    overflow: hidden;
    width: 100%;
  }
  
  .dropdown .dropbtn {
    font-size: 15px;  
    border: none;
    outline: none;
    color: var(--Very-Dark-Blue);
    /* padding: 14px 16px; */
    background-color: var(--White);
    font-family: inherit;
    border-bottom: 1px solid rgb(218, 207, 207);
    /* margin: 0;
    padding-left: 14px;
    margin-left: 0.5rem; */
  }
  
  /* .nav a:hover, .dropdown:hover .dropbtn {
    background-color: red;
  } */
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--White);
    min-width: 120px;
    /* box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); */
    z-index: 1;
  }
  
  .dropdown-content a {
    float: none;
    color: var(--Very-Dark-Blue);
    margin-left: 0.5rem;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    padding: 0.2rem 0;
    
  }
  
  .dropdown-content a:hover {
    background-color: var(--White);
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
/*--------------Footer-------------------*/
.footer p{
    font-size: 14px;
    text-align: center;
    padding: 0;
    margin: 0;
    align-self: center;
    line-height: 2.5;
}
.footer{
    background-color: var(--Light-Grey);
    color: var(--Dark-Blue);
    height: 40px;
    width: 100%;
    padding: 1.5rem 0;
    margin-top: 15px;
    
}

/*---------------CUERPO-------------*/
/*_______________index_______________*/
.cuerpo{
    background-position: 40% 100%; 
   background-image: url("../../images/fondo-2-1.jpg");
   background-size: cover;
   background-repeat: no-repeat;
   background-attachment: fixed;
   border-radius: 15px;
   display: flex;
   flex-direction: column;
   margin: 0;
}
.cuerpo h6{
   font-weight: 300;
   margin-top: 120px;
   margin-bottom: 10px;
   color: black;
   font-family: "Roboto", Sans-serif;
   font-size: 18px;
   text-transform: uppercase;  
}
.cuerpo h2{
   font-size: 55px !important;
   line-height: 54px;
   font-weight: 400;
   color: black;
   align-self: flex-start;
   margin-top: 10px;
}
.cuerpo p{
   font-size: 18px !important;
   line-height: 1.3;
   font-weight: 300;
   margin: 1.5rem 0;
   margin-bottom: 1.5rem;
   color: black; 
}
.cuerpo .a-btn{
   margin: 20px 0;
   background-color: var(--violeta-oscuro);
   border: 0;
   color: var(--White);
   border-radius: 3px;
   padding: 1.2rem 2.2rem !important;
   height: 15px;
   font-size: 16px;
   line-height: 1;
   width: 100px;
   text-align: center;
   text-decoration: none;
}
.cuerpo img{
   width: 100%;
}

/*-----------------SECCIONES--------------------*/
.secciones{
    display: grid;
    grid-template-rows: repeat(5, auto);
    justify-content: center;
}
.seccion{
    max-width: 400px;
    border-radius: 15px;
    padding: 1.5rem ;
    margin: 1.5rem 0;
    margin-bottom: 2rem;
    height: 350px;
    display: grid;
    grid-template-rows: 25% 50% 25%; 
}
.seccion h2{
    margin-top: 1.5rem;
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
    /* letter-spacing: -0.7px; */
}
.seccion p{
    margin-top: 1.5rem;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
}
.seccion a p{
    margin-top: 1.5rem;
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    color: var(--White);
}
.seccion .texto-gris p{
    color: var(--Dark-Blue) !important;
}
.seccion .btn-ingresar,
.curso-camarero .btn-ingresar{
    background-color: var(--violeta);
    border: 0;
    color: var(--White);
    
    border-radius: 3px;
    padding: 12px 24px;
    height: 20px;
    font-size: 16px;
    font-weight: 500;
    width: 90px;
    
    text-align: center;

    cursor: pointer;

    text-decoration: none;
    transition: 0.5s;
}
.seccion .btn-ingresar:hover,
.curso-camarero .btn-ingresar:hover,
.cuerpo .a-btn:hover{
    opacity: 85%;
}
.foro2,
.autora2{
    max-width: 350px;
}

.foro2 h2,
.perfil2 h2,
.autora2 h2{
    margin-top: 1.8rem;
    font-size: 33px;
    line-height: 1.3;
}
/* .autora2 h2{
    margin-top: 1.8rem;
    font-size: 30px;
    line-height: 1;
} */
.foro2 p,
.perfil2 p,
.autora2 p{
    font-size: 20px;
    align-self: center;
    margin-bottom: 0.5rem;
}
/* .autora2 p{
    font-size: 17px;
    align-self: center;
    margin-bottom: 0.5rem;
} */
/*-------------foro-----------------*/
.foro{
    color: var(--White);
    background-image: url("../../images/moza2.png"), var(--gradient--violeta);
    background-repeat: no-repeat;
    background-position: 55% 100%;
    background-size: 140%;
    transition: 0.5s;
}
.foro:hover{
    background-position: 45% 100%;
    background-size: 145%;
}
/*-------------perfil-----------------*/
.perfil{
    color: var(--Dark-Blue);
    background-image: url("../../images/mozo-1.png"), var(--gradient--gris);
    background-repeat: no-repeat;
    background-position: 45% 100%;
    background-size: 150%;
    border: 1px solid rgb(218, 211, 211);
    transition: 0.5s;
}
.perfil:hover{
    background-position: 32% 100%;
    background-size: 160%;
}
.perfil2{
    background-position: 50% 100%;
    max-width: 350px;
    color: var(--White);
    background-image: url("../../images/mozo-1.png"), var(--gradient--violeta);
}
.perfil2:hover{
    background-position: 50% 100%;
    max-width: 450px;
}
/*-------------autora-----------------*/
.autora{
    color: var(--White);
    background-image: url("../../images/nacha-_-1447x2048.png"), var(--gradient--violeta);
    background-repeat: no-repeat;
    background-color: var(--violeta-oscuro);
    background-position: 35% 100%;
    background-size: 155%;
    transition: 0.5s;
}
.autora:hover{
    background-position: 25% 100%;
    background-size: 170%;
}
/*-------------curso-----------------*/
.curso-camarero{
    max-width: 400px;
    background-image: var(--gradient--gris);
    background-repeat: no-repeat;
    background-position: 40% 100%;
    background-size: 120%;
    transition: 0.5s;
    margin: 1.5rem 0;
    border-radius: 15px;
    border: 1px solid rgb(218, 211, 211);
    height: 600px;
    padding: 1.5rem;
    padding-bottom: 0;
    text-align: right;
}
.curso-camarero .der{
    background-image: url("../images/boy2-261x300.png");
    background-repeat: no-repeat;
    background-position: 40% 100%;
    background-size: 100%;
    height: 600px;
    transition: 0.5s;
}
.curso-camarero .der:hover{
    background-position: 45% 100%;
    background-size: 115%;
}
.curso-camarero .der h2{
  
    margin-top: 0;
    padding-top: 0;
    font-size: 44px;
    font-weight: 500;
    letter-spacing: -0.7px;
    line-height: 1;
    color: #484546;
    text-align: right;
}
.curso-camarero .der p{
    margin-left: 60%;
    margin-top: 2.5rem;
    padding-top: 0;
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.7px;
    line-height: 1.4;
    color: #6e696b;
    text-align: right;
    margin-bottom: 1.5rem;
}

.curso{
    /* width: 100%; */
    max-width: 400px;
    color: var(--White);
    background-color: var(--Light-Grey);
    display: grid;
    grid-template-rows: 45% 55%;
    height: 600px;
    /* padding: 0; */
    border-top-right-radius: 15px;
    border: 1px solid rgb(218, 211, 211);
}
.curso .izq{
    grid-row: 1/2;
    text-align: center;
    background-image: url("../../images/CAMARERO/INGLES/mujer-leyendo.png");
    /* transform: scaleX(-1); */
    background-repeat: no-repeat;
    background-position: 50% 100%;
    background-size: 110%;
    transition: 0.5s;
    background-color: var(--Light-Grey);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.curso .izq:hover{
    background-position: 40% 100%;
    background-size: 120%;
}
.curso .der{
    grid-row: 2/3;
    padding: 0.5rem auto;
    text-align: center;
    width: 100%;
    background-image: url("../../images/CAMARERO/INGLES/coleccion.png");
    background-repeat: no-repeat;
    background-position: 50% 60%;
    background-size: 90%;
    display: grid;
    grid-template-rows: 33% 33% 33%;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.curso .der p,.curso .der h2{
    align-self: center;
    width: 100%;
    margin: 1rem auto;
    color: var(--Dark-Blue);
}
.curso .der h2{
    width: 80%;
    grid-row: 1/3;
    align-self: flex-start;
    margin-top: 0.2rem;
    padding-top: 0;
    font-size: 31px;
    font-weight: 500;
    letter-spacing: -0.7px;
    line-height: 1;
    color: #484546;
}
.curso .der p{
    grid-row: 3/3;
    align-self: flex-end;
    margin-top: 5rem !important;
    width: 90%;
    line-height: 1.2;  
    font-weight: 500;
    font-size: 18px;
}
.curso .der p a{
    color: var(--violeta);
}
/*---------------bienvenido-------------*/
/*_________________home_______________*/
.bienvenido{
    width: 100%;
    margin: 0;
    margin-top: 2rem;
    padding: 0;
    color: var(--Light-Grey); 
    background-position: -25% 100%;
    background-size: 78%;
    transition: 0.5s;
    display: grid;
    grid-template-rows: 60% 40%;
}
.bienvenido .foto-bienvenida{
    grid-row: 1/2;
    background-image: linear-gradient(333deg, rgba(116,113,114,1) 0%, rgba(223,215,215,1) 34%, rgba(255,255,255,1) 51%);
    text-align: center;
    padding: 0;
}
.bienvenido .foto-bienvenida img{
    top: -55px; 
    bottom: 0;
    width: 250px;
    height: 400px; 
}
.bienvenido .texto-bienvenida{
    grid-row: 2/3;
    background-image:  var(--gradient--violeta);
    background-color: var(--violeta-oscuro);
    padding: 1rem auto;
    text-align: left;
}
.bienvenido .texto-bienvenida p, 
.bienvenido .texto-bienvenida h2{
    margin: 0;
    padding: 0;
    width: 100%;
    margin: 1rem;  
}
.bienvenido .texto-bienvenida h2{
    width: 90%;
    margin-top: 3rem;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 34px;
    text-transform: uppercase;
}
.bienvenido .texto-bienvenida p{
    margin-bottom: 10px !important;
    margin-top: 10px;
    width: 90%;
    line-height: 1.5;
    font-weight: 300;
    font-size: 20px;
    padding: 1rem 0;  
}
.bienvenido .texto-bienvenida p b{
    font-weight: 500;
}

.div-central h5 b{
    color: grey;
    letter-spacing: 1px;
    font-weight: 500;
    /* margin-top: 5rem; */
}
.div-central h5 a span{
    color: var(--violeta-oscuro);
    font-size: 14px;
    font-weight: 400;
}
.div-central h5 a span:hover{
    color: var(--violeta);
    font-weight: 500;
}
/*--------------------foro y anecdotas--------------------*/
/*------------------anecdotas--------------------*/
.anecdotas h4{
    margin: 2rem 0;
    padding-top: 2rem;
    padding-bottom: 1rem;
    border-top: 1px solid rgb(214, 211, 211);
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 18px;
}
.anecdotas .comentario{
    border-bottom: 1px solid rgb(214, 211, 211);
    margin: 0;
    padding-top: 1rem;
    display: grid;
    grid-template-rows: repeat(2, auto);
    
}
.anecdotas .comentario .usuario{
    display: grid;
    grid-template-rows: 50% 50%;
    grid-template-columns: 20% 80%;
    color: var(--violeta);
}
.anecdotas .comentario .usuario img{
    grid-row: 1/3;
    grid-column: 1/2;
    width: 50px;
    height: 50px;
    justify-self: left;
    align-self: center;
}
.anecdotas .comentario .usuario .nombre{
    grid-row: 1/2;
    grid-column: 2/3;
    margin: 0;
    font-size: 0.8125rem;
    text-transform: uppercase;
    font-weight: 600;
}
.anecdotas .comentario .usuario .fecha{
    grid-row: 2/3;
    grid-column: 2/3;
    margin: 0;
    font-size: 0.8125rem;
    text-transform: uppercase;
    font-weight: 400;
}
.anecdotas .proximamente{
    margin: 2rem auto;
    width: 80%;
    text-align: center;
    font-size: 25px;
    font-weight: 500;
}
.anecdotas .mensaje p {
    padding: 0.5rem 0;
    line-height: 30px;
    font-size: 15px;
    color: #555555;
    font-weight: 400;
    margin-bottom: 1rem;
}
.anecdotas .comentario .mensaje button{
    margin-right: 0;
    padding: 0;
    border: 0;
    width: 100px;
    background-color: transparent;
    color: var(--violeta-oscuro);
}
.anecdotas .comentario .mensaje button:hover{
    cursor: pointer;
    color: var(--violeta);
}
.no-visible{
    display: none;
}
.visible{
    display: block;
}
/*_________________formulario__________________*/
/* ------------- FORMULARIO DE REGISTRO --------------------*/
.div-central{
    display: flex;
    flex-direction: column;
    margin-top: 1.5rem;
    justify-items: center;
    align-items: center; 
    padding: 0 auto;
}

.div-central h5{
    margin: 0.5rem;
    color: rgb(46, 44, 44);
    font-weight: 300;
}
.alinear-izq{
    margin-top: 0; 
    width: 80%;
    max-width: 500px;
    /*justify-content: center;
     align-self: center; */
    margin-bottom: 1.5rem;
    padding-left: 0.5rem;
}
.alinear-izq h6{
    margin-bottom: 1rem; 
}

.formulario-registro{
    /* margin-top: 4rem;  */
    width: 100%;
    justify-content: center;
}
.formulario-registro .form-group .titulo-form{
    font-size: 24px;
    margin: 0;
    padding: 0;
    font-weight: 400;
}
.formulario-registro .form-group p small{
    font-size: 16px;
    line-height: 2;
    font-weight: 300;
}
.formulario-registro .form-group p small a{
    color: var(--violeta-oscuro);
}
.formulario-registro h5{
    margin: 0.3rem 0;
}
.formulario-registro .form-group p{
    margin: 0;
    padding: 0;
}
.formulario-registro .form-group p textarea{
    width: 95%;
    margin: 0;
    height: 200px;
    padding: 0.7rem;
    font-size: 16px;
    font-family: var(--font);
    line-height: 1.5;
    border-radius: 15px;
    font-weight: 300;
}
.formulario-registro .form-group p textarea:focus{
    outline: none !important;
    border:1px solid var(--violeta);
    box-shadow: 0 0 10px var(--violeta);
}
.formulario-registro select{
    height: 30px;
    width: 100%;
    margin: 0;
    padding-left: 5px;
    color: gray;
    border: 1px solid rgb(187, 184, 184);
    border-radius: 3px;
    display: block;
}

.formulario-registro input, button{
    display: block;
    width: 98%;
}
.form-group{
    padding: 0.5rem;
}

.formulario-registro .form-group h5 b{
    margin-bottom: 1rem;
    padding: 0;
    text-align: left;
    
    color: #555555;
   
    font-weight: 600;
    font-size: 15px;
    
    line-height: 1.3;
    margin: 0 0 4px 0;
    letter-spacing: 1px;
    

}
.formulario-registro input{
    
    color: gray;
    padding-left: 10px;
    line-height: 1.8;
    border: 1px solid rgb(187, 184, 184);
    border-radius: 3px;
    
    outline: none; 
    background: inherit;
}
.error{
    color: red;
    width: 300px;
    font-size: 14px;
    /* background-color: rgb(248, 165, 165);
    padding: 0.4rem 1rem;
    border-radius: 6px; */
}

.formulario-registro button{
    background-color: var(--violeta);
    border: 0;
    color: var(--White);
    text-align: center;
    border-radius: 3px;
    padding: 0.5rem 0.5rem;
    height: 40px;
    line-height: 1;
    font-size: 15px;
    /* margin-top: 0.5rem; */
    cursor: pointer;
    transition: 0.5s;
    width: 100%;
    
}

.formulario-registro .gris{
    background-color: rgb(209, 202, 202);
    color: var(--violeta-oscuro);
    margin: 0;
    margin-bottom: 0.5rem;
}
.formulario-registro .a-gris{
    background-color: rgb(209, 202, 202);
    color: var(--violeta-oscuro);
    margin: 0.5rem;
    margin-bottom: 0.5rem;
    height: 22px;
    text-align: center;
    border-radius: 3px;
    transition: 0.5s;
    cursor: pointer;
}
.formulario-registro .a-gris a{
    color: var(--violeta-oscuro);
}
.formulario-registro .a-gris:hover{
    background-color: rgb(187, 184, 184);
    color: var(--violeta) !important;
}

.formulario-registro .a-gris a:hover{
    
    color: var(--violeta) !important;
}


.formulario-registro button:hover{
    /* opacity: 85%; */
    background-color: var(--violeta-oscuro);
}

.formulario-registro .gris:hover{
    /* opacity: 85%; */
    background-color: var(--Light-Grey);
    color: var(--violeta);
}

.form-item{
    margin: 0 auto;
}
.a-btn-iniciar{
    background-color: var(--violeta);
    border: 0;
    color: var(--White);
    text-align: center;
    border-radius: 3px;
    padding: 0.5rem 3.3rem;
    min-width: 500px;
    height: 20px;
    line-height: 1.2;
    font-size: 15px;
    margin-top: .5rem;
    cursor: pointer;
    transition: 0.5s;
    align-self: flex-start;
}
.text-h4 a{
    color: var(--violeta);
}
.text-h4 a:hover{
    color: var(--violeta-oscuro);
}
.formulario-registro2{
    width: 90%;
    justify-content: center;
    margin: 0 auto;
}
.formulario-registro2 .form-group span{
    text-align: center;
}
.formulario-registro2 .form-item .izquierda{
    text-align: left;
}
.formulario-registro2 .form-item .izquierda p i{
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.custom-control{
    width: 200px;
    margin: 1.5rem auto;
    margin-bottom: 2.5rem;
    justify-self: center;
    display: grid;
    grid-template-columns: 80% 10%;
    font-size: 14px;
    justify-items: center; 
}

.custom-control input{
    margin: 0;
    /* justify-content: center; */
    line-height: 1;
}
.custom-control span{
    margin: 0 auto;
    /* justify-content: center; */
    display: block;
}


.otro{
    background-color: rgb(209, 202, 202);
}
.formulario-registro .botones{
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    margin-bottom: 3rem;
}

/*----------------------editar datos--------------------------------*/
/*-------------bienvenido-----------------*/
.bienvenido-user{
    width: 90%;
    margin: 2rem auto;
    padding: 0;
    color: var(--Light-Grey); 
    background-color: var(--Light-Grey);
    background-position: -25% 100%;
    background-size: 78%;
    transition: 0.5s;
    display: grid;
    grid-template-rows: 60% 40%;
    border-radius: 15px;
}
.sobre-mi p{
    width: 85%;
    margin: 0 auto;
    margin-bottom: 1.5rem; 
}
.bienvenido-user .foto-bienvenida{
    grid-row: 1/2;
    background-color: var(--Light-Grey);
    text-align: center;
}
.bienvenido-user .foto-bienvenida .form-group{
    padding: 1rem 0;
    width: 100%;
}
.bienvenido-user .foto-bienvenida{
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.bienvenido-user .foto-bienvenida .form-group .foto-portada .img-perfil{
    border-radius: 50%;
    justify-self: center;
}
.bienvenido-user .texto-bienvenida{
    grid-row: 2/3;
    background-color: var(--violeta-oscuro);
    padding: 1rem auto;
    text-align: center;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.bienvenido-user .texto-bienvenida p, 
.bienvenido-user .texto-bienvenida h2{
    align-self: center;
    width: 100%;
    margin: 1rem auto;
}

.bienvenido-user:hover{
    background-position: 0% 100%;
    background-size: 82%;
}
.bienvenido-user h2{
    width: 80%;
}
.bienvenido-user p{
    margin-bottom: 15px !important;
    width: 60%;
    line-height: 1.2;
}
.btn-rosa{
    background-color: var(--violeta);
    border: 0;
    color: var(--White);
    text-align: center;
    border-radius: 3px;
    padding: 0.5rem 0.5rem;
    height: 40px;
    line-height: 1;
    font-size: 15px;
    margin-top: 1.5rem;
    cursor: pointer;
    transition: 0.5s;
    width: 194px;
}
.btn-rosa:hover{
    background-color: var(--violeta-oscuro);
}
.a-btn-gris{
    text-align: center;
    background-color: rgb(190, 183, 183);
    border: 0;
    color: var(--Dark-Blue);
    border-radius: 3px;
    padding: 0.5rem 4.2rem;
    height: 25px;
    font-size: 15px;
    margin-left: 0.5rem;
}
/*----------------cv----------------*/
.div-central2{
    display: flex;
    flex-direction: column;
    /* border: 1px solid pink; */
    justify-items: center;
    align-items: center;  
    text-align: center;
}
.foto-perfil {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.foto-perfil:hover, .foto-perfil input[type="file"]:hover {
    background-color: pink;
    cursor: pointer;
}
.foto-perfil::before {
background-color: var(--violeta);
color: white;
display: flex;
justify-content: center;
align-items: center;
border-radius: 3px;
content: 'Select photo'; /* testo por defecto */
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
cursor: pointer;
}
.ancho{
    width: 100%;
}
.foto-perfil input[type="file"] {
opacity: 0;
width: 190px;
height: 40px;
display: inline-block;
cursor: pointer;
}
#foto-perfil::before {
content: 'Foto de Perfil';
cursor: pointer;
font-size: 14px;
}
input[type="file"]{ 
    color: transparent; 
    border: 0; 
    width: 200px; 
    height: 40px; 
    border-radius: 3px; 
    cursor: pointer;
 }
/*------------------------------------------*/
.archivo {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.archivo:hover, .archivo input[type="file"]:hover {
    background-color: pink;
    cursor: pointer;
}
.archivo::before {
background-color: var(--Light-Grey);
color: var(--Dark-Blue);
display: flex;
justify-content: center;
align-items: center;
border-radius: 3px;
content: 'Select photo'; /* texto por defecto */
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
cursor: pointer;
}
.archivo input[type="file"] {
opacity: 0;
width: 200px;
height: 32px;
display: inline-block;
cursor: pointer;
}
#cv::before {
content: 'Carga tu CV';
cursor: pointer;
font-size: 14px;
}
#portada-restaurant::before {
content: 'Foto de portada';
cursor: pointer;
font-size: 14px;
}
#fotos-restaurant::before {
content: 'Cargar Fotos';
cursor: pointer;
font-size: 14px;
}
#menu::before {
content: 'Carga Menú PDF';
cursor: pointer;
font-size: 14px;
}
.foto-portada img{
border-radius: 12px;
margin: 0;
}
fieldset{
    margin-top: 1.5rem;
    border: 1px solid var(--Medium-Grey);
    border-radius: 8px;
    color: var(--Dark-Blue);
}
.nada{
    background-color: transparent;
}

/*****************************************************/
@media screen and (min-width: 770px) {
    .no-mostrar{
        display: none;
    }
    .contenedor{
        max-width: 100%;
        display: flex;
        flex-direction: column; 
        margin: 1rem; 
        margin-top: 15px;
        
    }
    .registro-exitoso{
        text-align: center;
        margin-top: 6rem;
        height: 45vh;
    }
    .header{
        display: grid;
        grid-template-rows: 76px 30px;
        grid-template-columns: 8fr 2fr 200px;
    }
    .logo{
        max-width: 36%;
        grid-row: 1/2;
        grid-column: 1/2;
    }
    
    .header .menu-btn{
        grid-row: 1/2;
        grid-column: 2/3;
        margin: 0; 
        
        align-self: center;
        justify-self: flex-end;
        line-height: 1;
    }
    .menu{
        grid-row: 2/3;
        grid-column: 1/4;
        
        width: 100%;
        /* display: grid;
        grid-template-rows: repeat(6, 1fr);
        justify-content: flex-start; */
        
       /*  background-color: var(--White); */
        opacity: 0;
        pointer-events: none;
    }
    .menu a {
        font-size: 1.5rem;
        font-weight: 200;
        text-align: left;
        text-decoration: none;
        color: var(--Dark-Blue);
        font-family: var(--font); 
        font-size: 15px;
        font-weight: 400;
        line-height: 23px;
        transition: 0.1s;
        font-size: 15px;
        font-weight: 500;
    }
    .is-active {
        opacity: 1;
        pointer-events: auto;
    } 
    .header .a-btn{
        grid-row: 1/2;
        grid-column: 3/4;
    
        text-align: center;
    
        background-color: var(--violeta);
        border: 0;
        color: var(--White);
        
        border-radius: 3px;
        padding: 0.5rem 1rem;
        height: 18px;
        font-size: 15px;
        align-self: center;
        justify-self: flex-end;
        margin-right: 2rem;
        font-family: var(--font), Sans-serif;
        line-height: 1.1;
        font-weight: 500;
    
    }
    /*---------------CUERPO-------------*/
    .cuerpo{
        /*background-image: url("../images/fondo-2-1.jpg");
        background-size: cover;
        background-repeat: no-repeat;
         border-radius: 2px; */
        display: grid;
        grid-template-rows: repeat(5, auto);
        grid-template-columns: repeat(2,1fr);
        margin-bottom: 0;
    }
    .cuerpo h6{
        grid-row: 1/2;
        grid-column: 1/2;
        font-size: 18px;
        font-weight: 300;
    }
    .cuerpo h2{
        grid-row: 2/3;
        grid-column: 1/2;

        font-size: 55px !important;
        line-height: 54px;
        font-weight: 400;
        margin-bottom: 1.5rem;
    }
    .cuerpo p {
        font-size: 18px !important;
        line-height: 1.3;
        font-weight: 300;
        margin: 0;
    }
    .cuerpo p .bolsa{
        grid-row: 3/4;
        grid-column: 1/2;
    }
    
    .cuerpo button{
        grid-row: 4/5;
        grid-column: 1/2;

        background-color: var(--violeta-oscuro);
        border: 0;
        color: var(--White);
        
        border-radius: 3px;
        /* padding: 0.5rem 0.2rem; */
        height: 50px;
        font-size: 15px;
        width: 50%;
       margin: 3rem 0;
    }
    .cuerpo .a-btn{
        grid-row: 4/5;
        grid-column: 1/2;

        background-color: var(--violeta-oscuro);
        border: 0;
        color: var(--White);
        
        border-radius: 3px;
        /* padding: 0.5rem 0.2rem; */
        height: 20px;
        font-size: 15px;
        width: 50%;
       margin: 3rem 0;
       text-align: center;
       line-height: 1.2;
    }
    .division{
        grid-row: 5/6;
        grid-column: 1/2;
        display: flex;
    }
    .redes{
        margin-top: 0;
        display: flex;
        flex-direction: row;
        justify-content: left;
        height: 45px;
    }
    .redes .ico{
        margin: 0 0.5rem;
        width: 40px;
        height: 40px;
        text-align: center;
    }
    .redes .ico i{
        line-height: 2.4;
        color: var(--White);
        width: 40px;
        height: 40px;
        border-radius: 25px;
        background-color: var(--intermediate-dark-blue);
        transition: 0.2s; 
    }
    .redes .ico i:hover{
        line-height: 2.1;
        cursor: pointer; 
        width: 35px;
        height: 35px;
    }
    .cuerpo img{
        grid-row: 1/6;
        grid-column: 2/3;

        width: 100%;
        align-self: center;
        padding-left: 0.5rem;
    }
    /*-----------------SECCIONES--------------------*/
    .secciones{
        display: grid;
        /* grid-template-rows: 33% 33% 33%; */
        grid-template-columns: 33% 33% 33%;
    }
    .secciones2{
        display: grid;
        grid-template-rows: 50% 50%;
        grid-template-columns: 35% 65%;
    }
    .secciones3{
        display: grid;
        grid-template-rows: 50% 50%;
        grid-template-columns: 35% 65%;
    }
    .anecdotas{
        padding-left: 2.5rem;
    }
    .anecdotas h4{
        margin: 0.5rem 0;
        padding-top: 2rem;
        padding-bottom: 1rem;
        border-top: 1px solid rgb(214, 211, 211);
        font-weight: 400;
        font-size: 22px;
        letter-spacing: 1px;
    }
    .seccion{
        max-width: 100%;
        border-radius: 15px;
        padding: 1.5rem ;
        margin: 1rem;
        height: 300px;
    
        display: grid;
        grid-template-rows: 25% 50% 25%;
        
    }
    .seccion h2{
        font-size: 20px;
        line-height: 1;
    }
    .contenido{
        margin-top: 0;
        /* padding: 0; */
        padding-left: 0.8rem;
    }
    .seccion p{
        font-weight: 500;
        font-size: 16px;
        line-height: 1.5;
    }
    .seccion .btn-ingresar{
        background-color: var(--violeta);
        border: 0;
        color: var(--White);
        
        border-radius: 3px;
        padding: 0.5rem;
        height: 20px;
        font-size: 14px;
        width: 80px;
        
        text-align: center;
    
        cursor: pointer;
    
        text-decoration: none;
        transition: 0.5s;
    }
    .seccion .btn-ingresar:hover{
        opacity: 85%;
    }
 /*-------------bienvenido-----------------*/
.bienvenido{
    width: 98%;
    /* height: 340px; */
    margin: 0.5rem auto;
    /* margin-top: 2rem; */
    
    padding: 0;
    color: var(--Light-Grey); 
    /* background-color: var(--Light-Grey); */
    background-position: 50% 130%;
    background-size: 78%;
    transition: 0.5s;
    display: grid;
    grid-template-rows: 100%;
    grid-template-columns: 33% 66%;
}
.bienvenido .foto-bienvenida{
    grid-row: 1/2;
    grid-column: 1/2;
    background-image: linear-gradient(333deg, rgba(116,113,114,1) 0%, rgba(223,215,215,1) 34%, rgba(255,255,255,1) 51%);
    text-align: center;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    justify-content: flex-end;
     display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 0;
    align-content: flex-end;
}
.bienvenido .foto-bienvenida img{
    /* background-color: pink; */
    margin: 0 auto;
    width: 250px;
    height: 400px;
     /*margin: 0;  */
    /* margin-bottom: 0; 
    justify-self: flex-end;
    align-self: flex-end;*/ 
}
.bienvenido .texto-bienvenida{
    grid-row: 1/2;
    grid-column: 2/3;
    background-color: var(--violeta-oscuro);
    padding: 1rem;
    text-align: left;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px; 
    display: grid;
    grid-template-rows: 50% 50%;
    margin-top: 1rem;
}
.bienvenido .texto-bienvenida p, 
.bienvenido .texto-bienvenida h2{
    margin: 0;
    padding: 0;
    width: 100%;
    margin: 1rem;  
}

/* .bienvenido:hover{
    background-position: 0% 100%;
    background-size: 82%;
} */
.bienvenido .texto-bienvenida h2{
    width: 90%;
    margin-top: 5.5rem;
    /* letter-spacing: 1px; */
    font-weight: 500;
    font-size: 46px;
    text-transform: uppercase;
}

.bienvenido .texto-bienvenida p{
    margin-bottom: 10px !important;
    margin-top: 10px;
    width: 90%;
    line-height: 1.5;
    font-weight: 300;
    font-size: 20px;
    padding: 1rem 0;  
    padding-top: 2rem;
}
.bienvenido .texto-bienvenida p b{
    font-weight: 500;
}
    /*-------------foro-----------------*/
.foro{
    color: var(--White);
    /*  background: url("../images/atleta/ANECDOTAS.png");
    background-repeat: no-repeat; 
    background-color: var; */
    background-position: 65% 100%;
    background-size: 130%;
    transition: 0.5s;
}
.foro:hover{
    background-position: 50% 100%;
    background-size: 145%; 
}
.foro2{
    padding: 0.7rem;
    color: var(--White);
    /* background: url("../images/atleta/ANECDOTAS.png");
    background-repeat: no-repeat; 
    background-color: var; */
    background-position: 70% 100%;
    background-size: 130%;

    transition: 0.5s;  
    height: 400px;
    margin-left: 1.5rem;
}
.foro2:hover{
    background-position: 50% 100%;
    background-size: 145%;   
}
.foro2 h2,
.perfil2 h2,
.autora2 h2{
    margin-top: 1rem;
    font-family: "Roboto", Sans-serif;

    font-size: 33px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 43px;
    letter-spacing: -0.7px;
}
.foro2 p,
.perfil2 p,
.autora2 p{
    margin-top: 3rem;
    line-height: 1.5;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.7px;
    align-self: flex-start;
}
.anecdotas .mi-comentario .formulario-registro,
.autora .mi-comentario .formulario-registro{
    margin: 1.5rem 0;
    margin-bottom: 3rem;
}
.anecdotas .mi-comentario .formulario-registro p textarea{
    padding: 0.7rem;
    font-size: 15px;
    font-family: var(--font);
}
.anecdotas .comentario .usuario{
    display: grid;
    grid-template-rows: 50% 50%;
    grid-template-columns: 10% 90%;
}
.anecdotas .comentario .usuario h5,
.anecdotas .comentario .usuario h6{
    padding-left: 0.5rem;
    /* color: #1f2750; */
}
.anecdotas .mensaje p{
    padding: 0.5rem 0;
    line-height: 22px;
}
/* .mi-comentario{
    margin-top: 0;
} */


/*-------------perfil-----------------*/
.perfil{
    color: var(--Dark-Blue);
    /* background-image: url("../images/atleta/CALENDARIO.png");
    background-repeat: no-repeat;
    background-color: var(--Light-Grey); */
    background-position: 45% 100%;
    background-size: 160%;

    transition: 0.5s;
}
.perfil:hover{
    background-position: 45% 100%;
    background-size: 175%;
}
.perfil2{
    color: var(--White);
    background-position: 55% 100%;
    background-size: 170%;

    height: 400px;
    margin-left: 1.5rem;
    transition: 0.5s;
    padding: 0.7rem;
}
.perfil2:hover{
    background-position: 55% 100%;
    background-size: 195%;
}

.anecdotas .proximamente{
    margin-top: 100px;
    line-height: 1.5;
    font-size: 29px;
    font-weight: 400;
    line-height: 38px;
    width: 100%;
    text-align: left;
}
/*-------------autora-----------------*/
.autora{
    color: var(--White);
    /*background-image: url("../images/atleta/AUTORA-3.png");
    background-repeat: no-repeat;
    background-color: var(--violeta-oscuro); */
    background-position: 35% 100%;
    background-size: 160%;
    
    transition: 0.5s;
}
.autora:hover{
    background-position: 25% 100%;
    background-size: 170%;
}
.autora2{
    padding: 0.7rem;
    color: var(--White);
    /* background-image: url("../images/atleta/AUTORA-C.png");
    background-repeat: no-repeat;
    background-color: var(--violeta-oscuro); */
    background-position: 55% 100%;
    background-size: 380px;
    
    transition: 0.5s;
    height: 400px;
    margin-left: 1.5rem;
}
.autora2:hover{
    background-position: 45% 100%;
    background-size: 415px;
}


.mi-autora .formulario-registro{
    width: 80%;
    padding: 0 1rem;
    /* padding-left: 2rem; */
}
.mi-autora .formulario-registro .form-group{
    width: 100%; 
}
.mi-autora .formulario-registro .form-group p textarea{
    padding: 0.7rem;
    margin: 0; 
    width: 100%;
}
.mi-autora .formulario-registro .form-group h5{
    padding: 0;
    margin: 0;
    margin-bottom: 0.2rem;
}
.mi-autora .formulario-registro .form-group button{
    padding: 0;
    margin: 0;
    
}
.mi-autora h4 {
    margin-top: 100px;
    line-height: 1.5;
    font-size: 29px;
    font-weight: 400;
    line-height: 38px;
    width: 100%;
    text-align: left;
}
.mi-autora {
    padding-left: 2.5rem;
}
/*-------------------------*/
.mi-comentario .formulario-registro .form-group p textarea {
    height: 200px;
}


.mi-comentario .formulario-registro{
    width: 100%;
    max-width: 90%;
}

/*-------------curso-----------------*/
.curso-camarero{
    grid-row: 2/3;
    grid-column: 1/4;
    max-width: 100%;
    border-radius: 15px;
    padding: 1.5rem ;
    margin: 1.5rem 1rem;
    height: 300px;
    padding-bottom: 0;
    transition: 0.5s;
}
.curso-camarero .der{
    background-image: url("../images/boy2-261x300.png");
    background-repeat: no-repeat;
    background-position: 20% 100%;
    /* background-size: 35%; */
    background-size: 240px;
    height: 300px;
    transition: 0.5s;
}
.curso-camarero .der:hover{
    background-position: 30% 100%;
    background-size: 260px;
}
.curso-camarero .der p{
    margin-left: 45%;
    margin-bottom: 3rem;
}
.curso{
    max-width: none;
    grid-row: 3/4;
    grid-column: 1/4;
    color: var(--Dark-Blue); 
    display: grid;
    grid-template-columns: 40% 60%; 
    grid-template-rows: 33% 33% 33%;
    background-image: url("../../images/CAMARERO/INGLES/mujer-leyendo.png");
    background-repeat: no-repeat;
    background-position: 10% 100%;
    background-size: 350px 300px;
    /* background-size: 40%; */
    transition: 0.5s;
    padding: 0;
    
    /* margin: auto; */
    margin-top: 0;
    margin: 1rem;
    height: 350px;
}

.curso:hover{
    background-position: 18% 100%;
    /* background-size: 43%; */
    background-size: 360px 310px;
}
.curso .izq{
    grid-column: 1/2;
    grid-row: 1/4;
    text-align: center;
    background-image: none;
    background-color: transparent;
    transition: 0.5s;
    transform: scaleX(-1);
}

.curso .der{
    grid-column: 2/3;
    grid-row: 1/4;
    /*padding: 0;
    text-align: center;
    width: 100%;
    background-image: url("../images/atleta/Coleccion.png");
    background-repeat: no-repeat; */
    background-position: 50% 70%;
    
    background-size: 300px 200px;
    display: grid;
    grid-template-rows: 33% 33% 33%;
    transition: 0.5s;
    padding: 0.5rem 0;
    padding-top: 1rem;
}
.curso .der:hover{
    background-position: 50% 70%;
    background-size: 310px 210px;
}
.curso .der p,
.curso .der h2{
    align-self: center;
    width: 100%;
    margin: 0 auto;
    /* color: var(--Dark-Blue); */
}

.curso .der h2{
    width: 100%;
    grid-row: 1/3;
    align-self: flex-start;
    margin-top: 0.5rem;
    font-size: 44px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: -0.7px;
    /* padding-top: 0;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 1px; */
}

.curso .der p{
    grid-row: 3/3;
    align-self: flex-end;
    /* margin-top: 7rem !important; */
    width: 90%;
    line-height: 1.2;  
    /* color: black; */
    font-weight: 500;
    font-size: 20px;
}
.mi-autora .formulario-registro{
    margin-top: 1rem;
}
.formulario-registro2 {
    width: 85%;
    justify-content: center;
    margin: 0 auto;
}
/*inicio sesion*/
.formulario-registro{
    margin-top: 4rem; 
    width: 60%; 
    max-width: 90%;
    justify-content: center;
    /* align-self: center; 
    margin-bottom: 0.5rem;*/
}
.formulario-registro button{
    margin: 0;
}
.formulario-registro .botones{
    margin: 1rem 0;
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    margin-bottom: 3rem;
}
.formulario-registro .botones2{
    margin: 1rem 0;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.botones .a-btn-iniciar{
    margin: 0;
    padding: 0;
    background-color: rgb(194, 185, 185);
    border: 0;
    color: var(--White);
    text-align: center;
    border-radius: 3px;
    padding: 0.7rem 2.6rem;
    min-width: 200px;
    height: 24px;
    line-height: 1.2;
    font-size: 15px;
    
    cursor: pointer;
    transition: 0.5s;
}

}

@media screen and (min-width: 1025px) {
    .no-mostrar{
        display: none;
    }
    .contenedor{
        max-width: 100%;
        display: flex;
        flex-direction: column; 
        margin: 1rem; 
        margin-top: 3rem;
    }
    .registro-exitoso{
        text-align: center;
        margin-top: 7rem;
        height: 45vh;
    }
    .header{
        margin-top: 2rem;
        display: grid;
        grid-template-rows: 100px;
        grid-template-columns: 25% 58% 200px;
        align-items: center;
    }
    .logo{
        width: 100%;
        grid-column: 1/2;
        max-width: none;
    }
    .header .menu-btn{
        display: none;
    }
    .menu{
        grid-row: 1/2;
        grid-column: 2/3;
        width: 90%;
        justify-self: flex-end;
        padding: 1rem 0;
        display: grid;
        grid-template-rows:100%;
        grid-template-columns: repeat(6, auto);
        justify-content: right;
        align-items: center;
        background-color: var(--White);
        opacity: 1;
        pointer-events: visible;
        text-align: center;
        align-items: flex-start;
        align-content: flex-start;
    }
    .sin-borde{
        border-bottom: 0;
    }
    .menu a {
        /* justify-self: center !important; */
        margin: 0;
        padding: 0 ;
        max-width: 80px;
        text-align: left;
        text-decoration: none;
        color: var(--Dark-Blue);
        font-family: var(--font); 
        font-size: 15px;
        font-weight: 400;
        line-height: 23px;
        transition: 0.1s;
        padding: 0 0.2rem;
        cursor: pointer;
        margin: 0 0.5rem;
        border-bottom: none;
        text-indent: 0;
        border-bottom: 3px solid transparent;
        
        align-self: flex-start;
    }
    .dropdown .dropbtn {
        border-bottom: none;
    }
    .menu a:hover{
        border-bottom: 3px solid var(--violeta) !important;
    }
    .borde-b-negro{
        border-bottom: 3px solid black !important;
    }
    .desactivar{
        pointer-events: none;
        /* color: black; */
    }
    
    .marco{
        /* width: 0; */
        width: 100%;
        border-top: 0;
        border-bottom: 0;
    }
    .is-active {
        opacity: 1;
        pointer-events: auto;
    } 
    .header .a-btn{
        grid-column: 3/4;
        /* height: 32px; */
    
        /* text-decoration: none;
        text-align: center;

        padding: 0.5rem 0.5rem;
        line-height: 1.1;
        height: 30px;
        font-size: 15px;
        width: 75%;
        justify-self: center;
        
        margin-top: 0;   */
    }
    .dropdown-content a {
        padding-top: 0.5rem;
        padding-left: 0.5rem;
      }
    /*---------------CUERPO-------------*/
    .cuerpo{
        background-image: url("../images/fondo-2-1.jpg");
        background-size: cover;
        background-repeat: no-repeat;
        /* border-radius: 2px; */
        display: grid;
        grid-template-rows: repeat(5, auto);
        grid-template-columns: repeat(2,1fr);
        margin-bottom: 2.5rem;
        margin-top: -1rem;
        
        padding: 1rem;
        padding-left: 1rem;
        height: 550px;
    }
    .cuerpo h6{
        grid-row: 1/2;
        grid-column: 1/2;

        font-weight: 300;
        font-size: 18px !important;
        margin-top: 100px;
        align-self: flex-end;
    }
    .cuerpo h2{
        grid-row: 2/3;
        grid-column: 1/2;
        margin: 0;
        padding: 0;
        align-self: flex-start !important;
        font-size: 55px !important;
        color: black;
        line-height: 54px;
        font-weight: 400;
        margin-top: 0.8rem;
        margin-bottom: 1rem;
        width: 80%;
    }
    .cuerpo p {
        font-size: 18px !important;
        line-height: 1.3;
        font-weight: 300;
        margin: 0;
        width: 80%;
    }
    .cuerpo p .bolsa{
        grid-row: 3/4;
        grid-column: 1/2;
    }
    
    
    .cuerpo .a-btn{
        grid-row: 4/5;
        grid-column: 1/2;
        align-self: flex-start;
        background-color: var(--violeta-oscuro);
        border: 0;
        color: var(--White);
        margin: 0;
        border-radius: 3px;
        /* padding: 0.5rem 0.2rem; */
        height: 20px;
        font-size: 15px;
        width: 20%;
        margin: .5rem 0;
        margin-top: 1rem;
        text-align: center;
        line-height: 1.2;
    }
    .division{
        grid-row: 5/6;
        grid-column: 1/2;
        display: flex;
        align-items: center;
        margin-bottom: 3rem;
    }
    .redes{
        margin-top: 0;
        display: flex;
        flex-direction: row;
        justify-content: left;
        height: 45px;
        margin-left: 4rem;
    }
    .redes .ico{
        margin: 0 0.5rem;
        width: 40px;
        height: 40px;
        text-align: center;
    }
    .redes .ico i{
        line-height: 2.4;
        color: var(--White);
        width: 40px;
        height: 40px;
        border-radius: 25px;
        background-color: var(--intermediate-dark-blue);
        transition: 0.2s; 
    }
    .redes .ico i:hover{
        line-height: 2.1;
        cursor: pointer; 
        width: 35px;
        height: 35px;
    }
    .cuerpo img{
        grid-row: 1/6;
        grid-column: 2/3;

        width: 90%;
        align-self: center;
        
    }
    .div-central h5 b {
        color: grey;
        letter-spacing: 1px;
        font-weight: 700;
        font-size: 15px;
        /* margin-top: 5rem; */
    }
    .div-central h5{
        color: grey;
        letter-spacing: 0.9px;
        font-weight: 400;
        font-size: 15px;
        /* margin-top: 5rem; */
    }
    .div-central .formulario-registro {
        margin-top: 4rem;
        width: 40%;
        max-width: 90%;
        justify-content: center;
    }
    .formulario-registro .a-gris a{
        font-size: 15px;
    }
    /*-----------------SECCIONES--------------------*/
    .secciones{
        display: grid;
        grid-template-rows: repeat(3, auto);
        grid-template-columns: 33% 33% 33%;
        margin: 0;
    }
    .secciones2{
        display: grid;
        grid-template-rows: 50% 50%;
        grid-template-columns: 30% 70%;
        margin: 0 2rem;
        margin-top: 1rem;
    }
    .anecdotas{
        padding-left: 2rem;
    }
    .anecdotas .mi-comentario .formulario-registro,
    .autora .mi-comentario .formulario-registro {
        margin: 2.5rem 0;
        margin-bottom: 3rem;
    }
    .seccion{
        max-width: 100%;
        border-radius: 15px;
        padding: 1.5rem ;
        margin: 1rem;
        height: 380px;
    
        display: grid;
        grid-template-rows: 25% 50% 25%;
        
    }
    .seccion h2{
        font-size: 16px;
    }
    .seccion p{
        font-weight: 500;
        font-size: 12px;
    }
    .seccion .btn-ingresar{
        background-color: var(--violeta);
        border: 0;
        color: var(--White);
        
        border-radius: 3px;
        padding: 0.5rem;
        height: 20px;
        font-size: 14px;
        width: 100px;
        
        text-align: center;
    
        cursor: pointer;
    
        text-decoration: none;
        transition: 0.5s;
    }
    .seccion .btn-ingresar:hover{
        opacity: 85%;
    }
    /*-------------foro-----------------*/
        /*-------------foro-----------------*/
.foro{
    color: var(--White);
    /* background-image: url("../images/atleta/ANECDOTAS.png");
    background-repeat: no-repeat; */
    background-color: var(--violeta-oscuro);
    background-position: 50% 100%;
    background-size: 120%;

    transition: 0.5s;
    
}
.foro:hover{
    background-position: 40% 100%;
    background-size: 135%;
}
.foro h2,
.perfil h2,
.autora h2{
    font-size: 21px;
    line-height: 1.3;
}
.foro p,
.perfil p,
.autora p{
    font-size: 15px;
}
.foro2 h2,
.perfil2 h2,
.autora2 h2{
    margin-top: 1rem;
    font-family: "Roboto", Sans-serif;
    font-size: 33px;
    font-weight: 500;
    text-transform: uppercase;
    /* line-height: 1.3rem; 
    letter-spacing: -0.7px; */  
}
.foro2 p,
.perfil2 p,
.autora2 p{
    margin-top: 3rem;
    font-family: "Roboto", Sans-serif;
    font-size: 22px;
    font-weight: 500;  
}
.foro2,
.perfil2,
.autora2{
    margin: 0;
    padding-left: 1rem;
    height: 400px;
}
/* .autora2{
    height: 400px;
} */
/* .autora h2{
    font-size: 21px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.7px;  
} 
.autora2 p{
    font-size: 17px;
    font-weight: 400;
    letter-spacing: -0.7px;
}*/
.mi-autora .formulario-registro .form-group p textarea {
    height: 160px;
}
.mi-autora .formulario-registro {
    width: 100%;
    margin-top: 1rem;
}
/* .mi-autora{
    padding: 1.5rem 0;
} */
/*-------------perfil-----------------*/
.perfil{
    color: var(--Dark-Blue);
    /* background-image: url("../images/atleta/CALENDARIO.png");
    background-repeat: no-repeat; */
    background-color: var(--Light-Grey);
    background-position: 45% 100%;
    background-size: 150%;

    transition: 0.5s;
}

.perfil:hover{
    background-position: 35% 100%;
    background-size: 165%;
}
.perfil2{
    color: var(--White);
    background-position: 50% 100%;
    background-size: 150%;

    transition: 0.5s;
}
.perfil2:hover{
    
    background-position: 50% 100%;
    background-size: 180%;
}
/*-------------autora-----------------*/
.autora{
    color: var(--White);
    /* background-image: url("../images/atleta/AUTORA-C.png");
    background-repeat: no-repeat; */
    background-color: var(--violeta-oscuro);
    background-position: 45% 100%;
    background-size: 145%;
    transition: 0.5s;
}
.autora:hover{
    background-position: 30% 100%;
    background-size: 165%;
}
.autora2{
    background-position: 50% 100%;
    background-size: 170%;
    transition: 0.5s;
}
.autora2:hover{
    background-position: 50% 100%;
    background-size: 190%;
}
/*-------------curso-----------------*/
.curso-camarero{
    grid-row: 2/3;
    grid-column: 1/4;
    height: 340px;
    /* padding: 0; 
    margin-top: 3rem;*/
}
/* .curso-camarero{
    grid-row: 2/3;
    grid-column: 1/4;
    max-width: 100%;
    border-radius: 15px;
    padding: 1.5rem ;
    margin: 1rem;
    height: 300px;
    padding-bottom: 0;
} */
.curso-camarero .der{
    background-image: url("../images/boy2-261x300.png");
    background-repeat: no-repeat;
    background-position: 10% 100%;
    /* background-size: 35%; */
    background-size: 290px;
    height: 340px;
    transition: 0.6s;
    padding-right: 3rem;
}
.curso-camarero .der:hover{
    background-position: 18% 100%;
    background-size: 310px;
}
.curso-camarero .der > h2 {
    padding-top: 2rem;
}
.curso-camarero .der p{
    margin-left: 45%;
    margin-bottom: 3rem;
}

.curso{
    max-width: none;
    grid-row: 3/4;
    grid-column: 1/4;
    color: var(--Dark-Blue);
    display: grid;
    grid-template-columns: 40% 60%;
    grid-template-rows: 33% 33% 33%;
    background-image: url(../../images/CAMARERO/INGLES/mujer-leyendo.png);
    background-repeat: no-repeat;
    background-position: 10% 100%;
    background-size: 350px 300px;
    /* background-size: 40%; */
    transition: 0.5s;
    padding: 0;
    /* margin: auto; */
    
    margin: 1rem;
    margin-top: 1.5rem;
    height: 350px;
}
.curso:hover{
    background-position: 24% 100%;
    /* background-size: 43%; */
    background-size: 410px 350px;
}
.curso .izq{
    grid-column: 1/2;
    grid-row: 1/4;
    text-align: center;
    background-image: none;
    background-color: transparent;
    transition: 0.5s;
}

.curso .der{
    grid-column: 2/3;
    grid-row: 1/4;
    padding: 0;
    text-align: center;
    width: 100%;
    background-image: url("../../images/CAMARERO/INGLES/coleccion.png");
    background-repeat: no-repeat;
    background-position: 50% 90%;
    /* background-size: 80%; */
    background-size: 350px 250px;
    display: grid;
    grid-template-rows: 33% 33% 33%;
    transition: 0.5s;
    padding: 0.5rem 0;
    padding-top: 1rem;
}
.curso .der:hover{
    background-position: 50% 90%;
    background-size: 390px 290px;
}
.curso .der p,
.curso .der h2{
    align-self: center;
    width: 100%;
    margin: 0 auto;
    /* color: var(--Dark-Blue); */
}

.curso .der h2{
    width: 100%;
    grid-row: 1/3;
    align-self: flex-start;
    margin-top: 2rem;
    padding-top: 0;
    
    font-size: 44px;
    font-weight: 500;
    line-height: 59px;
    letter-spacing: -0.7px;
    /* color: #484546; */
    font-family: "Roboto", Sans-serif;
}

.curso .der p{
    grid-row: 3/3;
    align-self: flex-end;
    /* margin-top: 7rem !important; */
    width: 90%;
    line-height: 1.2;  
    /* color: black; */
    font-weight: 500;
    font-size: 20px;
}

.anecdotas .comentario .usuario{
    display: grid;
    grid-template-rows: 50% 50%;
    grid-template-columns: 15% 85%;
}
.anecdotas .mi-comentario textarea{
    width: 95%;
}
.bienvenido{
    margin: 2rem auto;
}
      
}

@media screen and (min-width: 1200px) {
    /* .header .a-btn {
        grid-column: 3/4;
        height: 18px;
        
    }  */
    .menu a{
        max-width: none;
    }
    .contenedor{
        max-width: 100%;
        display: flex;
        flex-direction: column;
        margin: 0.5rem 5rem;
        margin-top: 3.5rem;
        justify-content: center;
    }
    .cuerpo {
        background-image: url(../images/fondo-2-1.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        /* border-radius: 2px; */
        display: grid;
        grid-template-rows: repeat(5, auto);
        grid-template-columns: repeat(2,1fr);
        margin-bottom: 2.5rem;
        margin-top: -1rem;
        padding: 1rem;
        padding-left: 1rem;
        height: 550px;
    }
    /* .cuerpo{
        padding-left: 2.5rem;
    } */
    .cuerpo h6{
        grid-row: 1/2;
        grid-column: 1/2;
        font-weight: 300;
        font-size: 18px !important;
        margin-top: 9.5rem;
        padding-left: 1rem;
    }
    .cuerpo h2{
        width: 100%;
        padding-left: 1rem;
    }
    .cuerpo p{
        width: 90%;
        margin-bottom: 1.2rem;
        padding-left: 1rem;
    }
    .cuerpo .a-btn {
        margin-left: 1rem;
    }
     /*-------------bienvenido-----------------*/
     .bienvenido{
        /*width: 1000px;
        height: 280px;*/
        width: 100%;
        max-width:1150px;
        height: 350px;
        margin: 0.5rem auto;
        margin-top: 3rem;
        margin-bottom: 0;
        justify-content: center;
        
        padding: 0;
        
        color: var(--Light-Grey); 
        /* background-color: var(--Light-Grey); */
        background-position: -25% 100%;
        background-size: 78%;
        transition: 0.5s;
        display: grid;
        grid-template-rows: 100%;
        grid-template-columns: 33% 66%;
    }
    /* .secciones{
        margin: 0 auto;
        
        width: 100%;
        justify-content: center;
    } */
    .contenido{
        padding: 0;
        /* padding-left: 1rem; */
        width: 100%;
        max-width: 1150px;
        justify-content: center;
        margin: 0.5rem auto;
        margin-top: 1.5rem;
    }
    .contenedor2 {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        margin: 0.5rem 5rem;
        margin-top: 1rem;
        justify-content: center;

        width: 100%;
        max-width: 1100px;
        margin: 0.5rem auto;
    }
    .foro{
        margin-left: 0;
    }
    .autora{
        margin-right: 0;
    }
    .curso{
        margin-right: 0;
        margin-left: 0;
        margin-top: 2rem;
    }
    .secciones2,
    .secciones3{
        width: 1100px;
        margin: 3rem auto;
    }
    .foro2,
    .perfil2,
    .autora2 {
        width: 300px;
        background-position: 40% 100%;
        background-size: 120%;
        transition: 0.5s;
        height: 410px;
        margin-left: 0;
    }
    .perfil2{
        background-position: 50% 100%;
        background-size: 150%;
        transition: 0.5s;
        height: 410px;
        margin-left: 0;
    }
     .autora2 {
        background-position: 50% 100%;
        background-size: 150%;
     }
     .autora2:hover {
        background-position: 50% 100%;
        background-size: 165%;
     }
    
    .mi-autora .formulario-registro .form-group p textarea {
        height: 160px;
    }

    /* .anecdotas{
        padding-left: 3rem;
    } */
    .mi-comentario .formulario-registro{
        width: 100%;
        max-width: 100%;
    }
    .mi-comentario .formulario-registro .form-group button,
    .mi-autora .formulario-registro .form-group button {
        
        width: 30%;
    }
    .anecdotas .comentario .usuario {
        display: grid;
        grid-template-rows: 50% 50%;
        grid-template-columns: 10% 90%;
    }
    .anecdotas .mi-comentario p textarea {
        display: block;
    }
    .bienvenido-user{
        width: 1000px;
        margin: 2rem auto;
    }
    .sobre-mi p{
        width: 1000px;
        margin: 0.5rem auto;
        margin-bottom: 1.5rem;
    }
    .formulario-registro2 {
        width: 90%;
        justify-content: center;
        margin: 0 auto;
    }
    .formulario-registro2 .form-item{
        margin-left: 2rem;
    }
    .anecdotas .proximamente {
    margin-left: 0.5rem;
    }
    .cuerpo img {
        grid-row: 1/6;
        grid-column: 2/3;
        width: 88%;
        padding-top:1rem ;
        align-self: center;
    }
    .formulario-registro .botones {
        margin: .5rem 0;
        /* display: flex;
        flex-direction: row; */
        margin-bottom: 3rem;
        display: grid;
        grid-template-columns: 50% 50%;
    }
    .div-central .formulario-registro .form-group  h5 b{
        color: #555555;
        letter-spacing: 1px;
        font-weight: 500;
        font-size: 15px;
        /* margin-top: 5rem; */
    }
    .curso-camarero {
        margin: 0;
        margin-top: 2.5rem;
    }
} 
@media screen and (min-width: 1400px) {
    .contenedor{
        max-width: 1000px;
        display: flex;
        flex-direction: column;
        margin: 0.5rem auto;
        margin-top: 3.5rem;
        justify-content: center;
    }
    .header{
        margin-left: auto;
        margin-right: auto;
        max-width: 1200px;
        justify-content: center;
    }
}