@charset "UTF-8";
/* -------------------------------------- Reset -------------------------------------- */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* -------------------------------------- Estilos Generales -------------------------------------- */
body {
  color: whitesmoke;
  background-color: #1F1F1F;
}

.pag,
.pag-2,
.pag-3 {
  padding-left: 70px;
}

/* -------------------------------------- Estilos Navbar -------------------------------------- */
.sidebar {
  display: none;
  position: fixed;
  height: 100vh;
  width: 70px;
  background-color: #1B1B1B;
  transition: 0.3s;
  z-index: 1000;
}
.sidebar:hover {
  width: 160px;
}
.sidebar:hover nav .lista-redes li a i {
  opacity: 1;
  transition: opacity 0.3s;
  transition-delay: 0.1s;
}
.sidebar:hover nav .lista-links li a span {
  opacity: 1;
  transition: opacity 0.3s;
  transition-delay: 0.1s;
}
.sidebar nav {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: space-between;
}
.sidebar nav .lista-links {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
}
.sidebar nav .lista-links li a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: whitesmoke;
  text-decoration: none;
  transition: background-color 0.3s;
}
.sidebar nav .lista-links li a:hover {
  background-color: #343434;
}
.sidebar nav .lista-links li a i {
  margin: 20px 10px 20px 25px;
  font-size: 1.2rem;
}
.sidebar nav .lista-links li a span {
  opacity: 0;
  transition: opacity 0.1s;
  white-space: nowrap;
}
.sidebar nav .lista-redes {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
  gap: 10px;
  margin-left: 10px;
}
.sidebar nav .lista-redes li a {
  text-decoration: none;
}
.sidebar nav .lista-redes li a:hover i {
  background-color: whitesmoke;
  color: #1B1B1B;
}
.sidebar nav .lista-redes li a i {
  background-color: #343434;
  color: whitesmoke;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.1s;
}

/* -------------------------------------- Estilos Footer -------------------------------------- */
footer {
  text-align: center;
  padding: 20px 0px;
  border-top: 1px solid #343434;
  margin: 0 10%;
}
footer p {
  margin: 0;
}
footer p span {
  font-weight: bold;
}

/* -------------------------------------- Estilos Index -------------------------------------- */
/* ------------- Estilos Main -------------*/
.pag .index-main {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.pag .index-main .texto {
  max-width: 450px;
}
.pag .index-main .texto h1 {
  font-weight: bold;
  margin-bottom: 10px;
}
.pag .index-main .texto h2 {
  margin-bottom: 40px;
}
.pag .index-main .texto h2 span {
  font-weight: 100;
}
.pag .index-main .texto p {
  line-height: 25px;
}
.pag .index-main .texto .contenedor-botones {
  padding-top: 30px;
  display: flex;
  gap: 1rem;
}
.pag .index-main .texto .contenedor-botones .boton-uno {
  background-color: whitesmoke;
  color: #1F1F1F;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  font-weight: bolder;
  text-decoration: none;
  transition: 0.5s;
}
.pag .index-main .texto .contenedor-botones .boton-uno:hover {
  transform: translateY(-7px);
}
.pag .index-main .texto .contenedor-botones .boton-uno:hover {
  box-shadow: 1px 1px 15px whitesmoke;
}
.pag .index-main .texto .contenedor-botones .boton-dos {
  background-color: none;
  color: whitesmoke;
  border: 2px solid whitesmoke;
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  font-weight: bolder;
  text-decoration: none;
  transition: 0.5s;
}
.pag .index-main .texto .contenedor-botones .boton-dos:hover {
  transform: translateY(-7px);
}
.pag .index-main .texto .contenedor-botones .boton-dos:hover {
  box-shadow: 1px 1px 15px whitesmoke;
}
.pag .index-main .texto .contenedor-botones .boton-dos:hover {
  background-color: whitesmoke;
  color: #1B1B1B;
}
.pag .index-main .texto .contenedor-botones-redes {
  display: flex;
  gap: 10px;
  padding-top: 20px;
}
.pag .index-main .texto .contenedor-botones-redes a {
  text-decoration: none;
  transition: 0.5s;
}
.pag .index-main .texto .contenedor-botones-redes a:hover {
  transform: scale(1.1);
}
.pag .index-main .texto .contenedor-botones-redes a:hover i {
  background-color: whitesmoke;
  color: #1B1B1B;
}
.pag .index-main .texto .contenedor-botones-redes a i {
  background-color: #343434;
  color: whitesmoke;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
}
.pag .index-main .imagen {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pag .index-main .imagen img {
  max-width: 450px;
  border-radius: 50px;
  box-shadow: 30px 30px 3px #343434;
}
.pag .index-main .scroll-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  opacity: 0.7;
  transition: opacity 0.3 ease;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}

/* ------------- Estilos Section Sobre Mí -------------*/
.pag .wave-1 {
  margin-bottom: -2px;
}

.pag .index-sobre-mi {
  background-color: #343434;
}
.pag .index-sobre-mi h3 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}
.pag .index-sobre-mi h3::before, .pag .index-sobre-mi h3::after {
  content: "────";
  margin: 0 1rem 0 1rem;
}
.pag .index-sobre-mi h3 {
  padding-top: 5px;
}
.pag .index-sobre-mi .contenido {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 50px 0 50px 0;
}
.pag .index-sobre-mi .contenido .texto {
  display: flex;
  flex-direction: column;
  max-width: 400px;
}
.pag .index-sobre-mi .contenido .texto h4 {
  margin-bottom: 50px;
}
.pag .index-sobre-mi .contenido .info .tarjeta {
  background-color: #1F1F1F;
  width: 10rem;
  height: 10rem;
  padding: 1rem;
  border-radius: 50px;
  text-align: center;
  transition: 0.5s;
}
.pag .index-sobre-mi .contenido .info .tarjeta:hover {
  transform: scale(1.1);
}
.pag .index-sobre-mi .contenido .info .tarjeta:hover {
  box-shadow: 1px 1px 15px whitesmoke;
}
.pag .index-sobre-mi .contenido .info .tarjeta i {
  font-size: 2rem;
}
.pag .index-sobre-mi .contenido .info .tarjeta p {
  color: #888F8F;
}
.pag .index-sobre-mi .contenido .info .dato p {
  color: #888F8F;
  margin: 1rem 0 0 0;
}
.pag .index-sobre-mi .contenido .info .dato h4 {
  font-size: 1.2rem;
  font-weight: bold;
}
.pag .index-sobre-mi .contenido .info {
  width: 400px;
  display: grid;
  gap: 1rem;
  grid-template-areas: "area-1 area-2" "area-3 area-4" "area-5 area-6" "area-7 area-8";
}
.pag .index-sobre-mi .contenido .info .area-1 {
  grid-area: area-1;
}
.pag .index-sobre-mi .contenido .info .area-2 {
  grid-area: area-2;
}
.pag .index-sobre-mi .contenido .info .area-3 {
  grid-area: area-3;
}
.pag .index-sobre-mi .contenido .info .area-4 {
  grid-area: area-4;
}
.pag .index-sobre-mi .contenido .info .area-5 {
  grid-area: area-5;
}
.pag .index-sobre-mi .contenido .info .area-6 {
  grid-area: area-6;
}
.pag .index-sobre-mi .contenido .info .area-7 {
  grid-area: area-7;
}
.pag .index-sobre-mi .contenido .info .area-8 {
  grid-area: area-8;
}

/* ------------- Estilos Section Habilidades -------------*/
.pag .index-habilidades {
  margin-bottom: 100px;
}
.pag .index-habilidades h3 {
  text-align: center;
  font-weight: bold;
  padding-top: 50px;
}
.pag .index-habilidades h3::before {
  content: "────";
  margin: 0 1rem 0 1rem;
}
.pag .index-habilidades h3::after {
  content: "────";
  margin: 0 1rem 0 1rem;
}
.pag .index-habilidades .hab-1 .hab-2 {
  transition: 0.5s;
}
.pag .index-habilidades .hab-1 .hab-2:hover {
  transform: scale(1.1);
}
.pag .index-habilidades .hab-1 .hab-2:hover {
  box-shadow: 1px 1px 15px whitesmoke;
}

/* -------------------------------------- Estilos Proyectos -------------------------------------- */
/* ------------- Estilos Main -------------*/
.pag-2 .proyectos-main {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
}
.pag-2 .proyectos-main h1 {
  font-weight: bold;
  padding: 3rem 0;
}
.pag-2 .proyectos-main .texto {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.pag-2 .proyectos-main .texto p {
  text-align: center;
  max-width: 450px;
}
.pag-2 .proyectos-main .texto i {
  font-size: 5rem;
  margin-top: 50px;
  animation: hammer 1.5s infinite;
}
@keyframes hammer {
  70% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.pag-2 .proyectos-main .scroll-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  opacity: 0.7;
  transition: opacity 0.3 ease;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}

/* ------------- Estilos Section Mis Especialidades -------------*/
.pag-2 .proyectos-especialidades h2 {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}
.pag-2 .proyectos-especialidades h2::before, .pag-2 .proyectos-especialidades h2::after {
  content: "────";
  margin: 0 1rem 0 1rem;
}
.pag-2 .proyectos-especialidades h2 {
  padding: 3rem 0;
}
.pag-2 .proyectos-especialidades .sitios .landing {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #343434;
  padding: 30px 0;
}
.pag-2 .proyectos-especialidades .sitios .landing:hover {
  box-shadow: 1px 1px 15px whitesmoke;
}
.pag-2 .proyectos-especialidades .sitios .landing {
  transition: 0.3s;
}
.pag-2 .proyectos-especialidades .sitios .landing:hover {
  transform: scaleY(1.01);
}
.pag-2 .proyectos-especialidades .sitios .landing:hover i {
  animation: pulse 1s infinite;
}
@keyframes pulse {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pag-2 .proyectos-especialidades .sitios .landing i {
  margin: 0 50px;
  background-color: #1F1F1F;
  color: whitesmoke;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  padding: 0 25px;
}
.pag-2 .proyectos-especialidades .sitios .landing .landing-text h3 {
  font-size: 1.5rem;
}
.pag-2 .proyectos-especialidades .sitios .corporativo {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1F1F1F;
  padding: 30px 0;
}
.pag-2 .proyectos-especialidades .sitios .corporativo:hover {
  box-shadow: 1px 1px 15px whitesmoke;
}
.pag-2 .proyectos-especialidades .sitios .corporativo {
  transition: 0.3s;
}
.pag-2 .proyectos-especialidades .sitios .corporativo:hover {
  transform: scaleY(1.01);
}
.pag-2 .proyectos-especialidades .sitios .corporativo:hover i {
  animation: pulse 1s infinite;
}
@keyframes pulse {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pag-2 .proyectos-especialidades .sitios .corporativo i {
  margin: 0 50px;
  background-color: #343434;
  color: whitesmoke;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  padding: 0 25px;
}
.pag-2 .proyectos-especialidades .sitios .corporativo .corporativo-text h3 {
  font-size: 1.5rem;
}
.pag-2 .proyectos-especialidades .sitios .portfolio {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #343434;
  padding: 30px 0;
}
.pag-2 .proyectos-especialidades .sitios .portfolio:hover {
  box-shadow: 1px 1px 15px whitesmoke;
}
.pag-2 .proyectos-especialidades .sitios .portfolio {
  transition: 0.3s;
}
.pag-2 .proyectos-especialidades .sitios .portfolio:hover {
  transform: scaleY(1.01);
}
.pag-2 .proyectos-especialidades .sitios .portfolio:hover i {
  animation: pulse 1s infinite;
}
@keyframes pulse {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pag-2 .proyectos-especialidades .sitios .portfolio i {
  margin: 0 50px;
  background-color: #1F1F1F;
  color: whitesmoke;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  padding: 0 25px;
}
.pag-2 .proyectos-especialidades .sitios .portfolio .portfolio-text h3 {
  font-size: 1.5rem;
}
.pag-2 .proyectos-especialidades .sitios .e-commerce {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1F1F1F;
  padding: 30px 0;
}
.pag-2 .proyectos-especialidades .sitios .e-commerce:hover {
  box-shadow: 1px 1px 15px whitesmoke;
}
.pag-2 .proyectos-especialidades .sitios .e-commerce {
  transition: 0.3s;
}
.pag-2 .proyectos-especialidades .sitios .e-commerce:hover {
  transform: scaleY(1.01);
}
.pag-2 .proyectos-especialidades .sitios .e-commerce:hover i {
  animation: pulse 1s infinite;
}
@keyframes pulse {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pag-2 .proyectos-especialidades .sitios .e-commerce i {
  margin: 0 50px;
  background-color: #343434;
  color: whitesmoke;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  padding: 0 25px;
}
.pag-2 .proyectos-especialidades .sitios .e-commerce .e-commerce-text h3 {
  font-size: 1.5rem;
}
.pag-2 .proyectos-especialidades .sitios .blog {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #343434;
  padding: 30px 0;
}
.pag-2 .proyectos-especialidades .sitios .blog:hover {
  box-shadow: 1px 1px 15px whitesmoke;
}
.pag-2 .proyectos-especialidades .sitios .blog {
  transition: 0.3s;
}
.pag-2 .proyectos-especialidades .sitios .blog:hover {
  transform: scaleY(1.01);
}
.pag-2 .proyectos-especialidades .sitios .blog:hover i {
  animation: pulse 1s infinite;
}
@keyframes pulse {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pag-2 .proyectos-especialidades .sitios .blog i {
  margin: 0 50px;
  background-color: #1F1F1F;
  color: whitesmoke;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  padding: 0 25px;
}
.pag-2 .proyectos-especialidades .sitios .blog .blog-text h3 {
  font-size: 1.5rem;
}
.pag-2 .proyectos-especialidades .sitios .dashboard {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1F1F1F;
  padding: 30px 0;
}
.pag-2 .proyectos-especialidades .sitios .dashboard:hover {
  box-shadow: 1px 1px 15px whitesmoke;
}
.pag-2 .proyectos-especialidades .sitios .dashboard {
  transition: 0.3s;
}
.pag-2 .proyectos-especialidades .sitios .dashboard:hover {
  transform: scaleY(1.01);
}
.pag-2 .proyectos-especialidades .sitios .dashboard:hover i {
  animation: pulse 1s infinite;
}
@keyframes pulse {
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pag-2 .proyectos-especialidades .sitios .dashboard i {
  margin: 0 50px;
  background-color: #343434;
  color: whitesmoke;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  padding: 0 25px;
}
.pag-2 .proyectos-especialidades .sitios .dashboard .dashboard-text h3 {
  font-size: 1.5rem;
}

/* -------------------------------------- Estilos Contacto -------------------------------------- */
/* ------------- Estilos Main -------------*/
.pag-3 .contacto-main {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.pag-3 .contacto-main .imagen img {
  max-width: 450px;
}
.pag-3 .contacto-main .texto {
  max-width: 450px;
}
.pag-3 .contacto-main .texto h1 {
  font-weight: bold;
}
.pag-3 .contacto-main .texto h2 {
  margin-bottom: 40px;
}
.pag-3 .contacto-main .texto ul {
  padding: 0;
}
.pag-3 .contacto-main .texto ul li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
}
.pag-3 .contacto-main .texto ul li i {
  font-size: 1.8rem;
}
.pag-3 .contacto-main .scroll-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  opacity: 0.7;
  transition: opacity 0.3 ease;
  animation: bounce 1.5s infinite;
}
@keyframes bounce {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}

/* ------------- Estilos Section Formulario -------------*/
.pag-3 .wave-3 {
  margin-bottom: -2px;
}

.pag-3 .contacto-formulario {
  background-color: #343434;
}
.pag-3 .contacto-formulario .container .card:hover {
  box-shadow: 1px 1px 15px whitesmoke;
}
.pag-3 .contacto-formulario .container .card form .form-control:focus {
  box-shadow: 0 0 0 2px whitesmoke;
}
.pag-3 .contacto-formulario .container .card form .boton-form:hover {
  box-shadow: 1px 1px 15px whitesmoke;
}
.pag-3 .contacto-formulario .container .card form .boton-form {
  font-weight: bold;
}
.pag-3 .contacto-formulario .container .card form .placeholder-gris::placeholder {
  color: #888F8F;
}

/* ------------- Estilos Section Final -------------*/
.pag-3 .contacto-final {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 100%;
  margin: 50px 0;
}
.pag-3 .contacto-final p {
  margin: 50px 0;
  max-width: 450px;
}
.pag-3 .contacto-final .contenedor-botones-redes {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 50px;
}
.pag-3 .contacto-final .contenedor-botones-redes a {
  background-color: whitesmoke;
  color: #1F1F1F;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 1.5rem;
  font-weight: bolder;
  text-decoration: none;
  width: 150px;
}
.pag-3 .contacto-final .contenedor-botones-redes a:hover {
  box-shadow: 1px 1px 15px whitesmoke;
}
.pag-3 .contacto-final .contenedor-botones-redes a {
  transition: 0.5s;
}
.pag-3 .contacto-final .contenedor-botones-redes a:hover {
  transform: scale(1.1);
}

/* -------------------------------------- Media Queries Tablet -------------------------------------- */
/* --------- HOME ---------- */
@media screen and (max-width: 1024px) {
  .pag,
  .pag-2,
  .pag-3 {
    padding-left: 0;
  }
  .pag .index-main {
    flex-direction: column;
  }
  .pag .index-main .texto {
    text-align: center;
  }
  .pag .index-main .texto .contenedor-botones {
    justify-content: center;
  }
  .pag .index-main .texto .contenedor-botones-redes {
    justify-content: center;
  }
  .pag .index-main .scroll-arrow {
    display: none;
  }
  .pag .index-sobre-mi .contenido {
    flex-direction: column;
  }
  .pag .index-sobre-mi .contenido .texto {
    text-align: center;
  }
  .pag .index-sobre-mi .contenido .info {
    justify-content: center;
  }
  .pag .index-sobre-mi .contenido .info .dato {
    text-align: center;
  }
}
/* --------- PROYECTOS ---------- */
@media screen and (max-width: 1024px) {
  .pag-2 .proyectos-main .scroll-arrow {
    display: none;
  }
  .pag-2 .proyectos-especialidades .sitios .landing {
    flex-direction: column;
  }
  .pag-2 .proyectos-especialidades .sitios .landing .landing-text {
    text-align: center;
    margin-top: 30px;
  }
  .pag-2 .proyectos-especialidades .sitios .landing .landing-text p {
    margin: 20px 20px 0 20px;
  }
  .pag-2 .proyectos-especialidades .sitios .corporativo {
    flex-direction: column;
  }
  .pag-2 .proyectos-especialidades .sitios .corporativo .corporativo-text {
    text-align: center;
    margin-top: 30px;
  }
  .pag-2 .proyectos-especialidades .sitios .corporativo .corporativo-text p {
    margin: 20px 20px 0 20px;
  }
  .pag-2 .proyectos-especialidades .sitios .portfolio {
    flex-direction: column;
  }
  .pag-2 .proyectos-especialidades .sitios .portfolio .portfolio-text {
    text-align: center;
    margin-top: 30px;
  }
  .pag-2 .proyectos-especialidades .sitios .portfolio .portfolio-text p {
    margin: 20px 20px 0 20px;
  }
  .pag-2 .proyectos-especialidades .sitios .e-commerce {
    flex-direction: column;
  }
  .pag-2 .proyectos-especialidades .sitios .e-commerce .e-commerce-text {
    text-align: center;
    margin-top: 30px;
  }
  .pag-2 .proyectos-especialidades .sitios .e-commerce .e-commerce-text p {
    margin: 20px 20px 0 20px;
  }
  .pag-2 .proyectos-especialidades .sitios .blog {
    flex-direction: column;
  }
  .pag-2 .proyectos-especialidades .sitios .blog .blog-text {
    text-align: center;
    margin-top: 30px;
  }
  .pag-2 .proyectos-especialidades .sitios .blog .blog-text p {
    margin: 20px 20px 0 20px;
  }
  .pag-2 .proyectos-especialidades .sitios .dashboard {
    flex-direction: column;
  }
  .pag-2 .proyectos-especialidades .sitios .dashboard .dashboard-text {
    text-align: center;
    margin-top: 30px;
  }
  .pag-2 .proyectos-especialidades .sitios .dashboard .dashboard-text p {
    margin: 20px 20px 0 20px;
  }
}
/* --------- CONTACTO ---------- */
@media screen and (max-width: 1024px) {
  .pag-3 .contacto-main {
    flex-direction: column-reverse;
    gap: 0;
  }
  .pag-3 .contacto-main .texto h1, .pag-3 .contacto-main .texto h2 {
    text-align: center;
  }
  .pag-3 .scroll-arrow {
    display: none;
  }
}
/* -------------------------------------- Media Queries Mobile -------------------------------------- */
/* --------- HOME ---------- */
@media screen and (max-width: 768px) {
  .pag .index-main {
    height: auto;
  }
  .pag .index-main .texto {
    padding: 50px 20px 0 20px;
  }
  .pag .index-main .imagen {
    max-width: 100vw;
    padding-bottom: 100px;
  }
  .pag .index-main .imagen img {
    max-width: 95%;
    box-shadow: none;
  }
  .pag .index-sobre-mi .contenido .info {
    justify-content: center;
  }
  .pag .index-sobre-mi .contenido .info .dato {
    text-align: center;
  }
  .pag .index-sobre-mi .contenido .texto p {
    padding: 0 20px;
  }
}
/* --------- PROYECTOS ---------- */
@media screen and (max-width: 768px) {
  .pag-2 .proyectos-main .texto p {
    margin: 5px 20px;
  }
  .pag-2 .proyectos-especialidades h1::before, .pag-2 .proyectos-especialidades h1::after {
    content: none;
  }
}
/* --------- CONTACTO ---------- */
@media screen and (max-width: 768px) {
  .pag-3 .contacto-main .texto {
    margin: 0 20px;
  }
  .pag-3 .contacto-main .texto ul li {
    margin-bottom: 15px;
  }
  .pag-3 .contacto-main .imagen img {
    display: none;
  }
  .pag-3 .contacto-final p {
    margin: 50px 20px;
  }
}

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