 @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
  
  



  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root{
    --bg-color: #080808;
    --second-bg-color: #131313;
    --text-color: white;
    --main-color: #ead8c0;
    --third-color: #a98b63;
    --white-color: #FFF;
}

  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #FFF;
    background-color: #080808;
  }
  
  
  
      @keyframes animateheader{
      0%{opacity: 0; transform: translateY(-100px)}
      50%{opacity: 1;  transform: translateY(0px)}
      100%{opacity: 1; transform: translateY(0px)}
  }
  
    

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  
    @keyframes animatepassive{
      0%{opacity: 0;}
      50%{opacity: 1;}
      100%{opacity: 1;}
  }
  

  header {
    background-color: #080808;
    color: #FFF;
    padding: 1rem 0;
    animation:animatepassive 2.2s ease;
  }

  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  
  .logo-responsive{
    display: none;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #ecf0f1;
    }

  .logo {
    display: flex;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    color: #ecf0f1;
    background: linear-gradient(45deg, #FFF, #7e5927);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  }

  .nav-links {
    display: flex;
    list-style: none;
  }

  .nav-links li {
    margin-left: 20px;
  }

  .nav-links a {
    color: #FFF;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .nav-links a:hover {
    color: #FFF;
  }

  main {
    padding: 3rem 0;
  }

  h1 {
  font-size: 2.5rem;
  margin: 2rem 0 -1.7rem 0;
  color: #FFF;
  display: flex;
  position: relative;
  justify-content: left;
  align-content: left;
  align-items: left;
  animation: animate 0.8s ease;
}
  
  

  .about-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0.3rem 0 1.6rem 0;
    animation: animate 0.8s ease;
  }

  .about-text {
    flex: 1;
    margin-right: 2rem;
    color: #939393;
  }

  .about-image {
    flex: 1;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .team-section {
    margin-top: -1rem;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
    @keyframes animateheader{
      0%{opacity: 0; transform: translateY(-10)}
      50%{opacity: 1;  transform: translateY(3px)}
      100%{opacity: 1; transform: translateY(0px)}
  }
  
  
  @keyframes animate{
      0%{opacity: 0; transform: scale(0)}
      50%{opacity: 1; transform: scale(1.03)}
      1000%{opacity: 1; transform: scale(1)}
  }

  .team-member {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    /*background-image: linear-gradient(to top right, #a98b63, #222733);*/
    /*background-image: linear-gradient(to top right, #000 10%, #a98b63 50%);*/
    background-image: linear-gradient(to top right, #000 10%, #a98b63 70%);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    outline: solid 2px #a98b63;
    border: solid 1px #222733;
    transition: transform 0.3s ease;
    animation: animate 0.6s ease;
  }

  .team-member:hover {
    transform: translateY(0px);
  }

  .team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    animation: animate 0.6s ease;
  }

  .team-member-info {
    padding: 1rem;
  }

  .team-member h3 {
    font-size: 1.2rem;
    margin: 0 0 0.5rem 0;
  }

  .team-member p {
    font-size: 0.9rem;
    color: #e1dbdb;
  }

  footer {
    background-color: #080808;
    color: #ecf0f1;
    text-align: center;
    padding: 1rem 0;
    margin-top: 1rem;
    animation: animate 0.8s ease;
  }
  
  
  #regresar {
  display: flex;
  position: absolute;
  transform: scale(1);
  top: 1.5rem;
  right: 2rem;
  text-transform: uppercase;
  color: #222733 !important;
  border-bottom: solid 3px #000;
  font-weight: 600;
  background-color: #FFF !important;
  font-size: 12px;
  padding: 10px 15px;
  border-radius: 10px;
  color: #222733;
  display: inline-block;
  line-height: 1.5;
  text-decoration: none;
  letter-spacing: 1px;
  transition:0.4s ease-in-out;
  outline: solid 2px #ead8c0;
  z-index: 1001;
  animation: appearregresar 1.2s ease-in-out;
}

 #regresar:hover {
  display: flex;
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  transform: scale(1.04);
  text-transform: uppercase;
  color: #222733 !important;
  border-bottom:solid 3px #000;
  font-weight: 600;
  background-color: #ead8c0 !important;
  font-size: 12px;
  padding: 10px 15px;
  border-radius: 10px;
  color: #222733;
  display: inline-block;
  line-height: 1.5;
  text-decoration: none;
  letter-spacing: 1px;
  transition:0.4s ease-in-out;
  outline: solid 2px #ead8c0;
  z-index: 1001;
  cursor: pointer;
}

#regresar:focus {
  display: flex;
  position: absolute;
  transform: scale(1);
  top: 1.5rem;
  right: 2rem;
  text-transform: uppercase;
  color: #FFF !important;
  border-bottom: solid 0.1px #000;
  font-weight: 600;
  background-color: #a98b63 !important;
  font-size: 12px;
  padding: 10px 15px;
  border-radius: 10px;
  color: #fff;
  display: inline-block;
  line-height: 1.5;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.2s ease-in-out;
  outline: solid 0.1px #a98b63;
  z-index: 1001;
  cursor: pointer;
}

.ing{
    margin: 1rem 0 0 0;
    animation: animate 0.8s ease;
}



.footer .copyright{
    /*margin: 50px 0 0 0;*/
    margin: 0;
    text-align: center;
    font-size: 16px;
    color: #71767b;
}
.footer .developer-copyright{
    margin: -26px 0 0 0;
    text-align: center;
    font-size: 16px;
    color: #71767b;
}

.footer #ncruztech-footer{
    text-transform: uppercase;
    font-weight: bold;
    color: #71767b;
}

.technical-skills{
    border: solid thin var(--main-color);
    border-radius: 4px;
    display: inline-flex;
    position: relative;
    padding: 7px 10px;
    margin: 7px 3px 7px 3px;
}

.span-technical-skills{
  margin: 21px 0 -21px 0;
  position: relative;
  display: block;
  font-size: 18px;
}

.span-soft-skills{
  margin: 21px 0 -21px 0;
  position: relative;
  display: block;
  font-size: 18px;
}


#border-line-about-page{
  border-top: solid 1px #71767b;
  /*padding: 5px 5px 19px 5px;*/
  display: block;
  width: 88%;
  margin: 0 auto 27px auto;
  position: relative;
}

#border-line-about-page::after {
  content: ""; /* Pseudo-elemento vacío */
  position: absolute; /* Posición relativa al contenedor */
  top: 100%; /* Coloca el triángulo justo debajo del contenedor */
  left: 50%; /* Posiciona horizontalmente al centro */
  transform: translateX(-50%); /* Centra el triángulo */
  border-left: 8px solid transparent; /* Lado izquierdo del triángulo */
  border-right: 8px solid transparent; /* Lado derecho del triángulo */
  border-top: 8px solid #71767b; /* Parte superior del triángulo (color visible) */
}

#border-line-skills{
  border-top: solid 1px #71767b;
  display: block;
  width: 98%;
  margin: 10px auto 25px auto;
  position: relative;
}

#border-line-skills::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #71767b;
}






@media screen and (min-width: 400px){
   .team-member img {
    width: 100%;
    height: auto ;
    object-fit: cover;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    transition: 0.3s ease;
  }

}

@media screen and (max-width: 378px){
    .logo-responsive{
        display: flex;
    }
    
    .logo{
        display: none;
    }
}

 .checkmark {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 2px solid #ead8c0;
            border-radius: 4px;
            position: relative;
            margin: 2px 7px 2px 0;
        }

        .checkmark::after {
            content: '';
            position: absolute;
            width: 5px;
            height: 10px;
            border: solid #ead8c0;
            border-width: 0 2px 2px 0;
            top: 0px;
            left: 5px;
            transform: rotate(45deg);
        } 
        
        
        
@keyframes appearavoidmessage{
    0%{opacity: 0; transform: scale(0) translate(-50%); left: 50%;}
    25%{opacity: 1; transform: scale(1.07) translate(-50%); left: 50%;}
    50%{opacity: 1; transform: scale(1) translate(-50%); left: 50%;}
    75%{opacity: 1; transform: scale(1.02) translate(-50%); left: 50%;}
    100%{opacity: 1; transform: scale(1) translate(-50%); left: 50%;}
}

@keyframes dissappearavoidmessage{
      0%{opacity: 1; transform: scale(1) translate(-50%); left: 50%;}
      35%{opacity: 1; transform: scale(1.02) translate(-50%); left: 50%;}
      70%{opacity: 1; transform: scale(1) translate(-50%);  left: 50%;}
      100%{opacity: 0; transform: scale(0) translate(-50%);  left: 50%;}
}

        
        #avoidmessage{
    display: none;
    position: fixed;
    justify-content: center;
    align-content: center;
    align-items: center;
    background-color: #FFF;
    color: #2c3240;
    border-left: 4px solid #de636f;
    border-radius: 2px;
    padding: 15px 15px 15px 15px;
    z-index: 9999;
    font-size: 15px;
    font-weight: 600;
    top: 20%;
    left: 50%;
    transform: translate(-50%);
    transform-origin: center;
    flex-wrap: wrap;
    transition: 0.4s ease;
    gap: 10px;
    max-width: 300px;
    box-shadow: 0 4px 7px #0d1117;
}



.border-line-access-denied{
  border: none;
  height: 1px;
  position: absolute;
  display: flex;
  margin: 0 0 25px 0;
  background: linear-gradient(to right, transparent, #de636f, transparent);
  width: 80%;
}

.avoidmessage-icon{
    margin: 0 4px 0 0;
    color: #de636f;
    display: flex;
}

.shortestspan{
    display: flex;
    align-items: center;
    background-color: #FFF;
    color: #2c3240;
    z-index: 9999;
    font-size: 15px;
    font-weight: 600;
}

        
        
        
        
