@charset "UTF-8";
/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Hind+Madurai:wght@300;400;500;600&family=Lora:wght@400;500&family=Montserrat:wght@500&display=swap");
/* Resetear valores por defecto */
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* Propiedades Generales */
html {
  font-size: 10px;
  min-height: 100vh;
  font-family: "Hind Madurai", sans-serif;
  font-weight: 300;
}

img {
  display: block;
}

a {
  text-decoration: none;
}

span {
  font-weight: 100;
  animation: animation 0.5s infinite alternate;
}

/* Animacion Span */
@keyframes animation {
  from {
    color: transparent;
  }
  to {
    color: white;
  }
}
/* Clases Generales */
.centerLimitator {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Container */
.container {
  background-color: #2C3333;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23395B64' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%232666CF'%3E%3Ccircle cx='769' cy='229' r='10'/%3E%3Ccircle cx='539' cy='269' r='10'/%3E%3Ccircle cx='603' cy='493' r='10'/%3E%3Ccircle cx='731' cy='737' r='10'/%3E%3Ccircle cx='520' cy='660' r='10'/%3E%3Ccircle cx='309' cy='538' r='10'/%3E%3Ccircle cx='295' cy='764' r='10'/%3E%3Ccircle cx='40' cy='599' r='10'/%3E%3Ccircle cx='102' cy='382' r='10'/%3E%3Ccircle cx='127' cy='80' r='10'/%3E%3Ccircle cx='370' cy='105' r='10'/%3E%3Ccircle cx='578' cy='42' r='10'/%3E%3Ccircle cx='237' cy='261' r='10'/%3E%3Ccircle cx='390' cy='382' r='10'/%3E%3C/g%3E%3C/svg%3E");
  min-height: 100vh;
  display: grid;
  margin: 0 auto;
  grid-template-areas: "header" "main" "footer";
  grid-template-rows: 60px auto 30px;
}

/* MAIN */
main {
  grid-area: main;
  display: grid;
  place-content: center;
}

/* Contenedor de contenido principal */
.block {
  width: 100%;
  background-color: rgba(57, 91, 100, 0.1882352941);
  overflow: hidden;
  border-radius: 0 100px 0 100px;
  border: 2px white inset;
  box-shadow: 0 3px 7px 0px rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* HEADER */
header {
  grid-area: header;
  background-color: rgba(38, 102, 207, 0.3333333333);
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0.6rem 0;
  box-shadow: 0 2px 5px 0px rgba(0, 0, 0, 0.5);
}

.nav {
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  padding: 0 3rem;
}
.nav__brand {
  justify-content: start;
  background-color: #2C3333;
  padding: 0.2rem 0.4rem;
  border: 1px white inset;
  border-radius: 0 10px 0 10px;
  color: white;
  text-decoration: none;
  font-size: 2.8rem;
  font-weight: 500;
}
.nav__ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  width: 100%;
}
.nav__ul a {
  text-decoration: none;
  color: white;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 10px;
  margin: 0 10px;
  border-radius: 1.8rem;
  transition: background-color 0.2s;
}
.nav__ul a:hover {
  background-color: rgba(44, 51, 51, 0.7529411765);
}
.nav__respbtn {
  color: white;
  font-size: 3rem;
  display: none;
  justify-content: flex-end;
}

/* AboutMe */
.aboutMe {
  max-width: 900px;
  width: 100%;
  height: 400px;
}
.aboutMe__img {
  display: inline-block;
  width: 50%;
  height: 400px;
  background: url(../assets/profile.jpg) center center/cover;
}
.aboutMe__data {
  width: 50%;
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.aboutMe__data h2 {
  text-align: center;
  margin: 20px;
  font-size: 3rem;
  color: white;
}
.aboutMe__data p {
  text-align: center;
  margin: 20px;
  padding: 0 20px;
  font-size: 1.8rem;
  line-height: 1.6;
  color: white;
}

/* Tech */
.tech {
  max-width: 900px;
  width: 900px;
  height: 400px;
  /* Tecnologias - Izquierda */
}
.tech__table {
  width: 92%;
}
.tech__table__head tr {
  background-color: rgba(44, 51, 51, 0.8745098039);
}
.tech__table__head__element {
  width: 30%;
  color: white;
  font-size: 1.9rem;
}
.tech__table__body tr {
  height: 50px;
  text-align: center;
}
.tech__table__body__name {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  font-size: 3rem;
  color: white;
}
.tech__icon {
  margin-right: 10px;
}
.tech__name {
  font-size: 1.4rem;
}

.element--sec {
  width: 70%;
}

/* Tecnologias - ProgressBar */
.prgbar {
  width: 90%;
  height: 40px;
  position: relative;
  z-index: -5;
}

/* Proyectos */
.proy {
  width: 100%;
  margin: 20px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  border-radius: 0;
  /* Contenedor de Proyectos */
}
.proy__card {
  width: 280px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  box-shadow: 0px 0px 20px #000;
}
.proy__title {
  width: 100%;
  text-align: center;
  margin: 10px 0;
  font-size: 2.2rem;
  color: white;
}
.proy__img {
  width: 100%;
  object-fit: cover;
  border: solid 1px white;
}
.proy__buttons {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.proy__button, .proy__button--ver, .proy__button--visitar {
  color: white;
  width: 110px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border-radius: 20px;
  font-size: 1.4rem;
  border: 1px solid white;
  opacity: 0.8;
}
.proy__button:hover, .proy__button--ver:hover, .proy__button--visitar:hover {
  opacity: 1;
}
.proy__button--visitar {
  background-color: rgba(38, 102, 207, 0.3333333333);
}
.proy__button--ver {
  background-color: #2C3333;
}

.img__container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
}

/* Main Contacto */
.contacto {
  width: 900px;
  height: 400px;
  /* Contenedor de Contacto */
}
.contacto__box {
  background-color: rgba(57, 91, 100, 0.1254901961);
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

/* Redes Sociales */
.social {
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.socialIcon--facebook {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 20%;
  text-decoration: none;
  background-color: #2279e4;
  transition: background-color 0.2s;
  opacity: 0.9;
}
.socialIcon--facebook:hover {
  opacity: 1;
}

.socialIcon--instagram {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 20%;
  text-decoration: none;
  background-color: #c92d8f;
  transition: background-color 0.2s;
  opacity: 0.9;
}
.socialIcon--instagram:hover {
  opacity: 1;
}

.socialIcon--linkedin {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 20%;
  text-decoration: none;
  background-color: blue;
  transition: background-color 0.2s;
  opacity: 0.9;
}
.socialIcon--linkedin:hover {
  opacity: 1;
}

.socialIcon--github {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 20%;
  text-decoration: none;
  background-color: #1d1d1d;
  transition: background-color 0.2s;
  opacity: 0.9;
}
.socialIcon--github:hover {
  opacity: 1;
}

.sico {
  font-size: 4rem;
  color: white;
}

/* Mapa */
.map {
  height: 80%;
  width: 100%;
}
.map__iframe {
  height: 100%;
  width: 100%;
}

/* Correo Electronico */
.inbox {
  justify-content: center;
  border-left: 1px solid white;
}
.inbox__title {
  font-size: 2.4rem;
  color: white;
}
.inbox__data {
  padding: 0 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.inbox__label {
  color: white;
  font-size: 1.4rem;
  width: 100%;
  text-align: left;
}
.inbox__input {
  width: 100%;
  outline: none;
  font-family: "Lora", serif;
  resize: none;
  padding: 5px 8px;
  border-radius: 0 10px 0 10px;
  border: none;
  font-size: 1.4rem;
}
.inbox__buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

/* Contenedor Botones */
.cont__button {
  width: 100px;
  margin: 10px 20px 0 20px;
  padding: 2px;
  background-color: rgba(38, 102, 207, 0.1215686275);
  border: 1px solid #fff;
  color: white;
  cursor: pointer;
  border-radius: 20px;
  font-size: 1.4rem;
  transition: background-color 0.2s;
  border: 1px solid white;
}
.cont__button:hover {
  background-color: rgba(38, 102, 207, 0.4705882353);
}

.button--clean {
  background-color: #395B64;
}

/* Footer */
footer {
  background-color: rgba(38, 102, 207, 0.3333333333);
  bottom: 0;
  width: 100%;
  padding: 6px 0;
  grid-area: footer;
}
footer h4 {
  color: white;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 100;
}

/* BREAKPOINTS */
@media (max-width: 980px) {
  /* About Me */
  html {
    font-size: 8px;
  }

  .aboutMe {
    max-width: 600px;
    max-height: 267px;
  }
  .aboutMe__img {
    height: 267px;
  }
  .aboutMe__data h2 {
    margin: 10px;
  }
  .aboutMe__data p {
    margin: 10px;
  }

  /* Tecnologias */
  .tech {
    max-width: 600px;
    max-height: 267px;
  }
  .tech__table__body tr {
    height: 26px;
  }
  .tech__table__body__name {
    height: 28px;
  }
  .tech__icon {
    margin-right: 5px;
  }

  .prgbar {
    width: 90%;
    height: 30px;
    position: relative;
  }

  /* Proyectos */
  .proy {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 16px;
  }

  /* Contacto */
  .contacto {
    width: 600px;
    height: 267px;
  }

  .social {
    margin-top: 6px;
  }

  .socialIcon {
    width: 40px;
    height: 40px;
  }

  /* Correo Electrónico */
  .inbox__data {
    padding: 0 30px;
  }
  .inbox__input {
    padding: 3px 5px;
  }
  .inbox__buttons {
    display: flex;
    justify-content: center;
    margin: 5px 0 0 0;
  }

  .cont__button {
    width: 100px;
    margin: 0 10px;
    padding: 1px;
  }

  footer h4 {
    font-size: 1.6rem;
  }
}
@media (max-width: 768px) {
  /* Barra de Navegación */
  .nav {
    /* Aparece el botón responsivo */
  }
  .nav__ul {
    position: absolute;
    display: none;
    flex-direction: column;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    justify-content: center;
    gap: 50px;
    background-color: rgba(44, 51, 51, 0.8784313725);
  }
  .nav__respbtn {
    display: flex;
  }
}
@media (max-width: 640px) {
  html {
    font-size: 6.8px;
  }

  /* Contenedor de Contenido Principal */
  .block {
    flex-direction: column;
  }

  /* About Me */
  .aboutMe {
    max-width: 250px;
    max-height: 500px;
  }
  .aboutMe__img {
    width: 100%;
    height: 50%;
  }
  .aboutMe__data {
    width: 100%;
    height: 50%;
  }
  .aboutMe__data h2 {
    margin: 5px;
  }
  .aboutMe__data p {
    margin: 5px;
  }

  /* Tecnologias */
  .tech {
    width: 90vw;
    height: 500px;
  }

  /* Proyectos */
  .proy {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
    padding: 16px;
  }

  /* Contacto */
  .contacto {
    max-width: 250px;
    max-height: 500px;
    height: 500px;
    border-radius: 0;
  }
  .contacto__box {
    width: 100%;
    height: 50%;
  }

  footer h4 {
    font-size: 2rem;
  }
}
/* Clases de Personalización y Funciones */
.no-selectable {
  user-select: none;
}

.active {
  display: flex;
}

/*# sourceMappingURL=style.css.map */
