@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    /* Evita que o padding empurre as bordas para fora */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    text-decoration: none;
  }
  
  #titulo {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    animation: marvel-titulo 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
  }

  @keyframes marvel-titulo {
    0% {
      letter-spacing: -0.5em;
      -webkit-transform: translateZ(-700px) translateY(-500px);
              transform: translateZ(-700px) translateY(-500px);
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      -webkit-transform: translateZ(0) translateY(0);
              transform: translateZ(0) translateY(0);
      opacity: 1;
    }
  }

  .title {
    color: white;
    letter-spacing: 2px;
    text-shadow: 
    0px 0px 10px rgb(236, 190, 246),
    0px 0px 20px #ed69ef,
    0px 0px 40px #fd29f6,
    0px 0px 80px #ed06d2,
    0px 0px 100px rgb(127, 3, 102);
    -webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
  }

  @keyframes text-focus-in {
    0% {
      -webkit-filter: blur(12px);
              filter: blur(12px);
      opacity: 0;
    }
    100% {
      -webkit-filter: blur(0px);
              filter: blur(0px);
      opacity: 1;
    }
  }
  nav {

padding: 15px 0;
  }

  .center {
    align-items: center;
    display: flex;
    justify-content: center;
  }

  .nav-link {
    font-family: "Poppins", system-ui;
    text-decoration: none;
    color: white !important;
  }

  .nav-link:hover {
    color:rgb(52, 238, 5) !important;
    border-bottom: solid 2px rgb(52, 238, 5);
    transition: all 0.3s ease-in-out;
    scale: 1.1 !important;
  }

  body {
    height: 100%;
    width: 100%;
    background-image: url('../img/index_fondo.jpg');
    background-color: rgba(0, 0, 0, 30%);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
  }
  /*tarjetas*/

  .card {
    border-radius: 10px;
    margin-top: 40px;
    overflow: hidden;
  perspective: 1000px;
  box-shadow: 0 0 0 5px #ffffff80;
  transition: all 2s cubic-bezier(0.175, 0.885, 0.32, 1.275);

  }

  .card img {
    fill: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100%);
    transition: all 2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
  }

  .card-body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background-color: black;
    transform: rotateX(-90deg);
    transform-origin: bottom;
    transition: all 2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  
  .card:hover .card-body {
    transform: rotateX(0deg);
  }
  
  .card-title {
    margin-top: 50px;
    text-align: center;
    font-size: 24px;
    font-family: "Oswald", sans-serif;
    color: rgb(28, 249, 8) !important;
    font-weight: 700;
  }
  
  .card:hover img {
    scale: 0;
  }
  
  .card-text {
    margin: 20px 0 0;
    text-align: center;
    font-family: "Poppins", system-ui;
    font-size: 14px;
    color: whitesmoke !important;
    line-height: 1.5;
  }

  /*.footer {
    width: 100vmax;
    bottom: 0;
    position: fixed;
  }

  .footer h4 {
    color: grey;
    padding-top: 10px;
    letter-spacing: 2px;
    font-size: 15px;
    font-family: "Poppins", system-ui;
  }

  #txemikal {
    width: 150px;
  }*/

/*logo dexterfun*/

#logo {
  border: none;
  position: relative;
  width: 150px;
  height: 40px;
  padding: 0;
  margin-bottom: 12px;
  z-index: 2;
  cursor: pointer;
  background-color: transparent;
  transform: translateY(8px)
 }
 
 #logo:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 0px 0 0 0 white;
  transition: all 2s ease;
 }
 
 #logo:hover:after {
  box-shadow: 0px -13px 56px 12px #ffffffa6;
 }
 
 #logo span {
  position: absolute;
  width: 100%;
  font-size: 15px;
  font-weight: 100;
  left: 50%;
  top: 50%;
  letter-spacing: 3px;
  text-align: center;
  transform: translate(-50%,-50%);
  color: whitesmoke;
  transition: all 2s ease;
 }
 
 #logo:hover span {
  color: rgb(72, 246, 3);
 }
 
 #logo:before {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  background-color: black;
  border-radius: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
 }
 
 #logo:hover:before {
  width: 100%;
 }

  