body {
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

a {
  text-decoration: none;
}

a:link,
a:visited {
  color: inherit; 
}

h1 {
    font-family: "Michroma", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
  font-family: "Michroma", sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  font-family: "Michroma", sans-serif;
  font-weight: 300;
  font-size:medium;}

/* Margen top especial */
.mt-titulos {
  margin-top: 5rem;
}

/* Hamburger Menu */
.hamburger {
  position: fixed;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  width: 2rem;
  height: 2rem;
}

.hamburger span {
  width: 100%;
  height: 0.25rem;
  background-color: #fff;
  transition: opacity 0.5s ease;
  display: block;
}

.hamburger.active span {
  opacity: 0;
}

.close-icon {
  position: absolute;
  width: 2rem;
  height: 2rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.hamburger.active .close-icon {
  opacity: 1;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 1000;
  transition: left 0.7s ease;
  padding-top: 6rem;
  padding-left: 2rem;
  font-family: "Michroma", sans-serif;
}

.sidebar.active {
  left: 0;
}

.sidebar .nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar .nav-link {
  font-size: 1.25rem;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.sidebar .nav-link:hover {
  opacity: 0.7;
}

/* Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  display: none;
}

.sidebar-overlay.active {
  display: block;
}

/* Main Content */
.main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

#logo video {
  width: 22rem;
}

#logo img {
  width: 17rem;
  margin-top: 1rem;
}

/* Responsive - Show sidebar on sm breakpoint and larger */
@media (min-width: 576px) {
  .sidebar {
    left: 0;
    width: 25%;
    background-color: #000;
  }

  .sidebar.active {
    left: 0;
  }

  .hamburger {
    display: none;
  }

  .sidebar-overlay {
    display: none !important;
  }

  .main-content {
    margin-left: 25%;
    width: 75%;
  }

}


/* Quienes somos */
.quienes-somos {
  text-align: justify;
  width: 100%;
  padding: 1rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.quienes-somos img {
  width: 20rem;
}

.quienes-somos p {
  text-align: justify;
}

.texto-naranjo {
  color: #ffc000;
}

.texto-azul {
  color: #007fad;
}

#logo-chrysalis {
  width: 25rem;
}

/* Qué hacemos */
.que-hacemos {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}

.que-hacemos p {
  text-align: start;
}

.card {
  background-color: #000;
  border-color: rgb(70, 70, 70);
  height: 18rem;
}

.card-title {
  font-family: "Michroma", sans-serif;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  h1 {
    font-size: 1.75rem;
  }

  p {
    font-size: 0.9rem;
    text-align: center;
  }

  .quienes-somos {
    padding: 1rem 0.5rem;
    text-align: center;
  }

  .quienes-somos .row {
    justify-content: center;
  }

  .quienes-somos img {
    width: 100%;
    max-width: 20rem;
  }

  #logo-chrysalis {
    width: 100%;
    max-width: 18rem;
  }

  .offset-md-3 {
    margin-left: 0 !important;
  }

  .col-md-3,
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Zoom de las card */
.zoom {
  transition: transform .7s;
}
.zoom:hover {
  transform: scale(1.05);
}

.zoom1 {
  transition: transform 0.6s;
}
.zoom1:hover {
  transform: scale(1.01);
}



/* Diseño de espacios */

.diseno-espacios {
  margin-left: 0;
}

.diseno-espacios .row {
  justify-content: center;
}

.diseno-espacios .card {
  height: auto;
}

.diseno-espacios .card-body {
  height: 5rem;
  padding: 5;
}

.diseno-espacios .btn {
  width: auto;
  padding: 0.5rem 1.5rem;
  margin-top: -1rem;
  margin-left: 0.35rem;
}

@media (min-width: 576px) {
  .diseno-espacios {
    margin-left: 25%;
  }

  .diseno-espacios .row {
    justify-content: start;
  }
}

/* conctacto */

.mail {
  font-family: "Michroma";
  font-weight: 300;
  font-size:medium;
}

.fono {
  font-family: "Michroma";
  font-weight: 300;
  font-size: small;
  margin-top: 0.5rem;
}

.main-contacto {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  margin-top: -2rem;
}

/* Proyectos */

.proyectos .card {
  height: auto;
  }

.proyectos img {
  height: 10rem;
  margin: 1rem;
}

.proyectos .card-text {
  text-align: start;
}