*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100%;
    font-family: 'Ubuntu';
}

.parallax-completo{
    width: 100%;
    height:100vh;
    background-image: url('hero.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
}

.texto-hero{
    /* background: #111; */
    padding: 18px;
    width: 520px;
    text-align: center;
    color:#fff;
    
}
.ubuntu-light {
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .ubuntu-regular {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .ubuntu-medium {
    font-family: "Ubuntu", sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  
h1{
    font-size: 300px;
    font-weight: 600;
    color:#fff;
    text-align: center;
    padding-top: 20px;
    text-shadow: 5px 5px 5px #a1a19f;
    font-family: "Ubuntu", sans-serif;

}

h2{
    font-size:50px;
    font-weight: 100;
    font-family: "Ubuntu", sans-serif;
    text-align: justify;
    padding-bottom: 40px;
}

h3{
    font-size: 30px;
    font-weight: 100px;
    font-family: "Ubuntu", sans-serif;
    text-align: center;
    padding: 30px;
}

.center{
    max-width: 1100px;
    width: 90%;
    overflow: hidden;
    margin: auto;
    text-align: center;
}

.espacio{
    padding: 30px 0 60px 0;
}

.espacio h2{
    text-align: center;
    padding: 30px;
}

.espacio p{
    text-align: justify;
}

.parallax-chico{
    height:auto;
    background-image: url(fondo1.png);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.parallax-chico h2{
    display: flex;
    padding: 30px;
    height: inherit;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 200;
}

@keyframes slideInFromLeft {
  0% {
      transform: translateX(-100%);
      opacity: 0;
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}

h1 {
  animation: slideInFromLeft 1s ease-out;
}


@keyframes fadeInDown {
  0% {
      opacity: 0;
      transform: translateY(-20px); /* Mueve el elemento hacia arriba */
  }
  100% {
      opacity: 1;
      transform: translateY(0); /* El elemento regresa a su lugar original */
  }
}

h2 {
  animation: fadeInDown 1s ease-out;
}



.texto{
    background: #ccc;
    height:120px;
}

.texto h2{
    text-align: center;
    color: #000;
    display: flex;
    height:inherit;
    justify-content: center;
    align-items: center;
}

.parallax-chico h3{
  text-align: center;
  font-size:medium;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}



.ul-paginas {
  text-align: left;
}
ol li {
    text-align:left;
}

.card-body .ul-paginas {
  text-align: left !important;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link:focus,
.dropdown-menu .dropdown-item:hover, 
.dropdown-menu .dropdown-item:focus {
  color: rgb(238, 117, 31);
}

.d-flex .nav-link:hover, 
.d-flex .nav-link:focus {
  color:rgb(238, 117, 31);
}
  
@media (max-width: 360px) {
  .card-body ul.ul-paginas {
    padding-left: 20px; /* Asegura que las listas no se peguen a los bordes */
  }
}

