@charset "UTF-8";
.navbar-nav {
  display: flex;
  justify-content: flex-end; /* Alinea a la derecha */
  width: 100%;
}

/* Agrega cualquier estilo adicional según tus preferencias */
.navbar-nav .nav-item {
  margin-left: 15px; /* Opcional: Ajusta el margen entre elementos según tus necesidades */
}

.navbar {
  padding: 2rem;
  background-color: #9fbcd9;
}

@media screen and (max-width: 767px) {
  .navbar-brand {
    display: none;
  }
}
.seccion-clara {
  color: black;
  background-color: white;
}

.hero {
  min-height: 450px;
  text-align: center;
  background-color: white;
}

.experiencia {
  padding: 40px;
}

h2 {
  margin-top: 20px; /* Agrega margen superior para separar del nombre */
  font-size: 1.5rem; /* Ajusta el tamaño del h2 según tus preferencias */
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-size: 2.5rem;
  font-family: "Open Sans", sans-serif;
}

.hero-principal {
  flex-direction: column;
  display: flex;
  padding: 3rem;
}

.hero-inferior {
  background-color: white;
  display: flex;
}

.hero-imagen-desarrollador {
  width: 200px;
  height: 200px;
  margin: 20px;
}

.hero-principal h2 {
  font-size: 1.5rem;
  color: #615151;
  font-family: "Rubik Dirt", cursive;
}

.seccion-Oscura {
  color: white;
  background-color: #1b1b32;
}

.Sobre-mi {
  height: 500px;
  padding: 10px;
}
.Sobre-mi .contenedor {
  max-width: 600px;
  text-align: center;
}

.seccion-titulo {
  font-size: 2rem;
  padding: 15px 10px;
  font-family: "Rubik Dirt", cursive;
}

.experiencia-titulo {
  font-weight: bold;
  font-size: 25px;
}

.bi-laptop {
  background-color: black;
  color: rgb(6, 208, 10);
  font-size: 30px;
  justify-content: center;
  padding: 8px 19px;
  align-items: center;
  border-radius: 50%;
}

.bi-book {
  background-color: black;
  color: rgb(6, 208, 10);
  font-size: 30px;
  justify-content: center;
  padding: 8px 19px;
  align-items: center;
  border-radius: 50%;
}

.bi-pencil {
  background-color: black;
  color: rgb(6, 208, 10);
  font-size: 30px;
  justify-content: center;
  padding: 8px 19px;
  align-items: center;
  border-radius: 50%;
}

.badges-contenedores {
  font-size: 25px;
  margin: 10px 0;
  font-weight: bold;
}
.badges-contenedores .badge {
  font-size: 14px;
  color: #1b1b32;
  margin: 5px;
}

.texto-negro {
  color: black;
}

.seccion-clara {
  color: black;
  background-color: #fff;
}

.columna {
  cursor: pointer;
  border: 2px solid black;
  background-color: #9ebcd9; /* Cambiar el color al pasar el mouse */
  border-radius: 10px; /* Bordes redondeados */
  box-shadow: 0 4px 8px rgba(201, 37, 37, 0.1); /* Sombra suave */
  padding: 20px; /* Espaciado interno */
  color: #fff; /* Color del texto */
  transition: background-color 0.3s ease; /* Transición suave del color de fondo */
}

.columna:hover {
  background-color: #0e0e0e; /* Cambiar el color al pasar el mouse */
  border: 5px solid rgb(255, 255, 255);
}

.seccion-titulo {
  font-size: 2rem;
  padding: 15px 0;
  font-family: "Courier New", Courier, monospace;
}

.seccion-descripcion {
  font-size: 1.2rem;
  color: #584e4e;
}

.proyectos-recientes img {
  height: 100%;
  width: 100%;
  padding: 10px;
  background-color: #4f4e51;
  border-radius: 10px;
  display: block;
  border: 5px solid black;
  margin: 12px;
  transition: all 0.2s ease;
}

.navbar-nav {
  /* margin-left: 1500px; Elimina esta línea */
  margin-left: auto; /* Centra el menú en dispositivos más grandes */
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .navbar-nav {
    margin-left: 0; /* Restablece el margen izquierdo en dispositivos más pequeños */
  }
}
.proyectos-contenedor {
  padding-top: 10px;
  margin-bottom: 40px;
}

.overlay {
  transition: all 0.2s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.overlay p {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 0;
}

.proyects:hover img {
  opacity: 0.2;
}

.proyects:hover .overlay {
  opacity: 1;
}

.proyects {
  position: relative;
}

.overlay .iconos-contenedor {
  display: flex;
}

.overlay i {
  color: black;
  font-size: 60px;
  margin: 10px;
}

body .btn-info {
  font-size: 1.1rem;
  margin: 20px;
}

.carousel-control-next-icon {
  background-color: #000;
  color: white;
  border-radius: 25px;
  font-size: 100px;
}

.carousel-control-prev-icon {
  background-color: #000;
  color: white;
  border-radius: 25px;
  font-size: 100px;
}

.carouselExampleIndicators {
  padding: 40px 40px 80px 40px;
}

.carouselExampleIndicators.carousel {
  max-width: 800px;
}

.carousel-item.container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.carousel-item img {
  height: 150px;
  box-shadow: -3px 2px 5px black;
  margin: 0 auto; /* Add this line to center the image horizontally */
  display: block; /* Add this line to ensure the margin:auto works */
}

.testimonio-texto {
  font-size: 20px;
  text-align: center;
  font-family: "Times New Roman", Times, serif;
}

.testimonio-info {
  font-weight: bold;
  text-align: center;
  padding: 40px;
}

.testimonio-info p {
  margin-bottom: 1px;
}

.testimonio-info.Cargo-cliente {
  font-size: 0.9rem;
  color: #656060;
}

footer {
  min-height: 500px;
}

.footer-logo {
  height: 80px;
  width: 80px;
  margin: 10px;
}

.footer-texto {
  font-size: 1.5rem;
  padding: 20px;
  margin-bottom: 30px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}

.contacto .container {
  max-width: 1100px;
  min-height: 200px;
  padding: 50px;
}

.contacto .rectangulo {
  margin-top: -5rem;
  background-color: rgb(13, 110, 253);
  border-radius: 10px;
  box-shadow: 0px 1px 4px 1px;
}

.contacto .row {
  width: 100%;
  display: flex;
  align-items: center;
}

.contacto .descripcion {
  color: white;
  font-size: 1.2rem;
}

.contacto button {
  color: white;
  font-weight: bold;
  background-color: transparent;
  border: 2px solid white;
  margin: 10px;
  padding: 1.25em 2em;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
}

.contacto button i {
  color: white;
  font-size: 1.3rem;
  transition: all 0.2s ease-in-out;
}

.contacto button:hover {
  background-color: white;
  color: #000;
}
.contacto button:hover:hover i {
  color: #000;
}

.iconos-redes-sociales {
  font-size: 70px;
}

.bi-linkedin {
  margin-right: 30px;
}

.bi-instagram {
  margin-right: 30px;
  color: #e715a8;
}

.bi-github {
  margin-right: 30px;
  color: black;
}/*# sourceMappingURL=style.css.map */