/*CSS Reset / Normalize*/
/* Hemos disponibilizado el básico de reset de estilos. Si quieren, añadan más informaciones 
en las secciones señaladas */
/*Já deixaremos o básico de reset de estilos. Caso queira adicionar mais informações
coloque nas sessões indicadas*/

:root {
  /* Inserta la variable de los otros colores inspeccionando el exemplo de figma */
  /*Se esforce para trabalhar com variáveis, é uma dica profissional valiosa*/
  --cor-de-fundo: #f5f5f5;
  --cor-de-link: #000;
  --col-de-back-nav: #fff;
  --col-button: #2a7ae4;
  /* --col-de-back-nav: #fff; */
  /* --col-de-back-inf: #EAF2FD; */
  --col-de-back-inf: #eaf2fd;
  --Raleway: "Raleway", sans-serif;
  --open-sans: "Open Sans", sans-serif;
  --Fasthand: "Fasthand", serif;
}

body {
  box-sizing: border-box;
  background-color: var(--cor-de-fundo);
  /* background-color: var(--col-de-back-inf); */
  /* font-family: var(--Raleway); */
  font-family: var(--Raleway);
  margin: 0;
  padding: 0;
  line-height: 1;
}
ol,
ul,
li {
  list-style: none;
}
a {
  text-decoration: none;
  color: var(--cor-de-link);
}

/*En este desafío nosostros gustaríamos que ustedes intentaran utilizar la metodología BEM. 

Lo que es el BEM?

BEM (Bloque, Elemento, Modificador) es un enfoque basado en componentes para el 
desarrollo web. La idea detrás de esto es dividir la interfaz de usuario en bloques
independientes. Esto hace que el desarrollo de la interfaz sea fácil y rápido, incluso
con una interfaz de usuario compleja, y permite la reutilización del código existente sin copiar y pegar.

Enlace de la documentación oficial!
https://en.bem.info/methodology/quick-start/*/

.modal{
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 800px; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
/*Sección Menu*/

/* .tudo{ */

/* } */
blockquote {
  quotes: "\201C""\201D""\2018""\2019";
}
/* blockquote {
  quotes: "«" "»";
} */
blockquote:before {
  content: open-quote;
}
blockquote:after {
  content: close-quote;
}

section.menu {
 
  padding-top: 2%;
  display: flex;
  align-items: center;
  justify-content: space-between;
   /* background-color: red; */
}

.menu__header {
  display: flex;
   /* background-color: red; */
  /* flex-wrap: wrap; */
}

.menu__list {
  display: flex;
  /* flex-direction: column; */
  padding-right: 50px;
  /* align-content: space-around; */
  align-items: center;
}

.menu__list__item {
  padding-right: 10px;
}

.menu__list__item__contato {
  font-weight: bold;
}
/*Sección Title*/
.title__container {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  align-content: space-around;
  /* padding-top: 100px; */
  /* margin: 100px; */
}

/* .title__bio .title__subsection .title__network {
    margin: 100px 0 100px 0;
} */
section.title {
  padding-top: 2%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  /* margin-bottom: 100px; */
}

/*Sección About*/

section.about {
  background-color: var(--col-de-back-inf);
  padding: 64px 152px;
}

/* Secction skills */
section.skills {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 100px;
}

/*Sección Hobbies*/

section.hobbies {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  padding: 100px;
}

/* Experiencia Académica*/

section.academic {
  display: flex;
  flex-direction: column;
  background-color: var(--col-de-back-inf);
  padding: 64px 152px;
}

/* experiencia*/

section.experience {
  display: flex;
  flex-direction: column;
  gap: 40px;

  padding: 64px 152px;
}

/*Contacto*/

section.formcontato {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  background-color: var(--col-de-back-inf);
  padding: 64px 152px;
}

/*footeer*/



/* Vamos a desafiarnos trabajando con responsividad?
Utiliza las referencias de los breakpoints @media abajo */

/*Tablet*/
@media only screen and (max-width: 768px) {

/* @media (min-width: 768px) { */
  /* Menú */
  	/* .menu {
		width: 85%;	
	} */
  .menu {
        /* display: none;
         */
        display: flex;
        justify-content:space-between;
        /* color: #2a7ae4; */
        /* background: red; */
        /* d-column: none; */
        /* grid-row: none; */
    }

  /*title*/

  .title__div{
    display: flex;
    flex-direction: column;
    font-size: 21px;
    /* background-color: aqua; */
    width: 46rem;
    font-size:1rem;
    padding: 5px;
    /* width: 700px; */
    justify-content: center;
    /* padding: 1px; */
    /* margin: auto; */
    /* width: 500px; */
  }

  .title__network{
    flex-direction: column;
  }

/* .title__profile {
  padding-left: 100px;
  height: 200px;
  width: 400px;
  border-top-left-radius: 100% 100%;
  border-top-right-radius: 100% 100%;
  border-bottom-right-radius: 100% 100%;
  border-bottom-left-radius: 100% 100%;
} */

  /*Skills*/

  /*Hobbies*/

  /*Formación Académica*/
section.academic{

  /* background-color: #2a7ae4; */
  display: flex;
  align-items: center;
}
  /*  Experiencia Profesional */
.experience{
  /* background-color: aqua; */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* width: 46rem; */
  /* width: 400px; */
}


.experience .experience__box {
  /* color: aqua; */
display: flex;
flex-direction: column;
/* width: 400px; */
/* background-color:rebeccapurple; */
align-items: center;
 width: 46rem;
}
.experience__description{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
   /* width: 46rem; */
}

.experience .experience__box:nth-child(2n+1) {
  /* color: aqua; */
  display: none;
  /* background-color: green; */
  display: flex;
  justify-content: center;
  /* display: flex; */
  /* flex-direction: row-reverse;
  align-items: center;
  justify-content: center; */
  /* gap: 10px; */
  /* width: 400px; */
  flex-direction: column;
  align-items: center;
   width: 46rem;
  
}
.experience__img{
  width: 500px;
  height: 500px;
}
/* form */
.formcontato__contacto {
  display: flex;
  flex-direction: column;
  /* flex-wrap: wrap; */
  /* height: 400px; */
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* padding: 0px; */
  /* width: 656px; */
}

.formcontato__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.formcontato__title {
  font-weight: 20;
  font-size: 32px;
  line-height: 38px;
}

.formcontato__subtext {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  font-style: normal;
  font-weight: 50;
  font-size: 16px;
  line-height: 19px;
  /* width: 40px; */
  /* color: aquamarine; */
}

.formcontato__form {
  display: flex;
  flex-direction: column;
  gap: 30px;
    width: 300px;
  /* align-content: space-around; */
  /* width: 200px; */
  /* justify-items: flex-end; */
}

.formcontato__botao {
  background-color: var(--col-button);

  border-style: none;
  /* Preto/branco */
  padding: 16px;

  color: var(--col-de-back-nav);
  width: 144px;
  height: 51px;
  border-radius: 100px;
}

.formcontato__img{
  width: 200px;
}
.formcontato__input {
  /* height: 56px; */
  background-color: var(--col-de-back-nav);
}
.formcontato__textarea {
  /* display: none; */
  flex-direction: column;
  /* width: 400px; */
  /* height: 10px; */
  border-radius: 4px;
  overflow: scroll;
  resize: none;
}

}

/*Mobile*/


@media only screen and (max-width: 425px) {

/* @media (min-width: 768px) { */
  /* Menú */
  	/* .menu {
		width: 85%;	
	} */
  .menu {
        /* display: none;
         */
        display: flex;
        /* flex-direction: column; */
       align-items: center;
       justify-content: flex-end;
        /* color: #2a7ae4; */
        /* background: red; */
        /* d-column: none; */
        /* grid-row: none; */
    }

    .menu__list__item{
      display: none;
      /* flex-wrap: wrap; */
      flex-direction: column;
    }
    .menu__list__item__contato{
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
    }
  /*title*/

  .title__div{
    display: flex;
    align-items: center;
    width:  407px;
    justify-content: center;
    /* background-color: #2a7ae4; */
  }

  

 .title__profile {
  display: none;
  padding-left: 100px;
  height: 200px;
  width: 400px;
  border-top-left-radius: 100% 100%;
  border-top-right-radius: 100% 100%;
  border-bottom-right-radius: 100% 100%;
  border-bottom-left-radius: 100% 100%;
} 

.about{
display: flex;
/* padding: 1px; */
/* background-color: aqua; */
}
.about__container{
  /* display: flex; */
  /* flex-direction: column; */
  /* width: 420px;; */
  /* margin: 100px; */
  display: flex;
  flex-direction: column;


}
.about__paragraph{
  display: flex;
  align-items: flex-start;
  /* background-color: #2a7ae4; */
  margin: 10px 0 0 -100px;
  /* width: 300px; */
}
  /*Skills*/
section.skills ,section.hobbies{

  display: none;
  flex-direction: column;
}
  /*Hobbies*/

  /*Formación Académica*/
section.academic{

  /* background-color: #2a7ae4; */
  display: none;
  align-items: center;
  flex-direction: column;
}
  /*  Experiencia Profesional */
.experience{
  /* background-color: aqua; */
  display: none;
  flex-direction: column;
  align-items: center;
  /* width: 46rem; */
  /* width: 400px; */
}


.experience .experience__box {
  /* color: aqua; */
display: none;
flex-direction: column;
/* width: 400px; */
/* background-color:rebeccapurple; */
align-items: center;
 width: 300px;
}
.experience__description{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
   /* width: 46rem; */
}

.experience .experience__box:nth-child(2n+1) {
  /* color: aqua; */
  display: none;
  /* background-color: green; */
  display: flex;
  justify-content: center;
  /* display: flex; */
  /* flex-direction: row-reverse;
  align-items: center;
  justify-content: center; */
  /* gap: 10px; */
  /* width: 400px; */
  flex-direction: column;
  align-items: center;
   width: 300px;
  
}
.experience__img{
  display: none;
  width: 500px;
  height: 500px;
}
/* form */
.formcontato__contacto {
  /* display: flex; */
  /* flex-direction: row; */
  /* flex-wrap: wrap; */
  /* height: 400px; */
  align-items: center;
  /* justify-content: center; */
  gap: 10px;
  /* padding: 0px; */
  /* width: 156px; */
}

.formcontato__text {
  /* display: flex; */
  /* flex-direction: row; */
  /* align-items:flex-end; */
  gap: 20px;
  /* align-content: flex-end; */
  justify-content: center;
  /* background-color: #2a7ae4; */
  width: 300px;
}
.formcontato__title {
  font-weight: 20;
  font-size: 32px;
  line-height: 38px;
}

.formcontato__subtext {
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  font-style: normal;
  justify-content: center;
  font-weight: 50;
  font-size: 16px;
  line-height: 19px;
  /* width: 40px; */
  /* color: aquamarine; */
}

.formcontato__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: space; */
  gap: 30px;
  margin: 1px 1px 1px -100px;
  /* padding-top: 100px; */
    /* width: 100px; */
  /* align-content: space-around; */
  /* width: 200px; */
  /* justify-items: flex-end; */
}

.formcontato__botao {
  background-color: var(--col-button);

  border-style: none;
  /* Preto/branco */
  padding: 16px;

  color: var(--col-de-back-nav);
  width: 144px;
  height: 51px;
  border-radius: 100px;
}

.formcontato__img{
  width: 200px;
  display: none;
}
.formcontato__input {
  /* height: 56px; */
  background-color: var(--col-de-back-nav);
}
.formcontato__textarea {
  /* display: none; */
  flex-direction: column;
  /* width: 400px; */
  /* height: 10px; */
  /* padding-top: 100px; */
  /* margin-bottom: 10px; */
  border-radius: 4px;
  overflow: scroll;
  resize: none;
}

}