@import url("https://fonts.googleapis.com/css?family=DM+Sans:400,500|Jost:400,500,600&display=swap");



.card {
  width: 23vw;
  margin-top: 2vw;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  transition: 0.3s;
  flex-direction: column;
  border-radius: 0.52vw;
  box-shadow: 0 0 0 0.42vw rgba(255, 255, 255, 0.2);

}

.card[data-state="#about"] {
  height: 28vw;
  .card-main {
    padding-top: 0;
  }
}

.card[data-state="#contact"] {
  height: 20vw;
}

.card[data-state="#experience"] {
  height: 28.65vw;
}

.card.is-active {
  .card-header {
    height: 4.17vw;
  }

  .card-cover {
    height: 5.21  vw;
    top: -2.6vw;
  }

  .card-avatar-container {
    transform: none;
    left: 1.04vw;
    width: 2.6vw;
    height: 2.6vw;
    bottom: 0.52vw;
  }

  .card-fullname,
  .card-jobtitle {
    left: 4.48vw;
    transform: none;
  }

  .card-fullname {
    bottom: 0.94vw;
    font-size: 0.99vw;
  }

  .card-jobtitle {
    bottom: 0.08vw;
    letter-spacing: 0.05vw;
    font-size: 0.52vw;
  }
}

.card-header {
  position: relative;
  display: flex;
  height: 12vw;
  flex-shrink: 0;
  width: 100%;
  transition: 0.3s;

  * {
    transition: 0.3s;
  }
}

.card-cover {
  width: 100%;
  height: 100%;
  position: absolute;
  height: 8.33vw;
  top: -20%;
  left: 0;
  will-change: top;
  background-size: cover;
  background-position: center;
  filter: blur(1.56vw);
  transform: scale(1.2);
  transition: 0.5s;
}

.card-avatar-container{
  height: 7vw;
  width: 7vw;
  border-radius:50%;
  box-shadow: 0 0.42vw 0.42vw rgba(0, 0, 0, 0.2);
  object-position: center;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-4vw);
}

.card-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  
}


.card-fullname {
  position: absolute;
  bottom: 0;
  font-size: 1.15vw;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transform: translateY(-0.52vw) translateX(-50%);
  left: 50%;
}

.card-jobtitle {
  position: absolute;
  bottom: -.5vw;
  font-size: 0.57vw;
  white-space: nowrap;
  font-weight: 500;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1.0.26vw;
  margin: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-0.36vw);
}

.card-main {
  position: relative;
  flex: 1;
  display: flex;
  padding-top: 0.52vw;
  flex-direction: column;
}

.card-subtitle {
  font-weight: 700;
  font-size: 0.68vw;
  
}

.card-content {
  padding: 1.04vw;
}

.card-desc {
  line-height: 1.6;
  color: #636b6f;
  font-size: 0.73vw;
  margin: 0;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}
.card-social i {
  font-size: 2vw; 
  transition: 0.3s; 
  text-decoration: none;
  margin-left: 1vw;
  margin-top: 1.2vw;
}

.card-social i:hover {
  transform: scale(1.2); 
  color: #2054fd; 
}
.card-social a {
  text-decoration: none; 
  color: inherit; 
}
.card-social a.ig:hover i {
  background: linear-gradient(
    100deg,
    rgb(131, 58, 180),
    rgb(193, 53, 132),
    rgb(253, 29, 29),
    rgb(245, 96, 64),
    rgb(252, 176, 69)
  );
  background-size: 300% 300%;
  animation: igGradient 3s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: 0.1s;
}

/* Animación del fondo en movimiento */
@keyframes igGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.card-buttons {
  display: flex;
  background-color: #fff;
  margin-top: auto;
  position: sticky;
  bottom: 0;
  left: 0;

  button {
    flex: 1 1 auto;
    user-select: none;
    background: 0;
    font-size: 0.68vw;
    border: 0;
    padding: 0.78vw 0.26vw;
    cursor: pointer;
    color: #000000;
    transition: 0.3s;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    outline: 0;
    border-bottom: 0.16vw solid transparent;

    &.is-active,
    &:hover {
      color: #482b2b;
      border-bottom: 0.16vw solid #c47b68;
      background: linear-gradient(
        to bottom,
        rgba(127, 199, 231, 0) 0%,
        rgba(255, 207, 204, 0.2) 44%,
        rgba(255, 211, 211, 0.4) 100%
      );
    }
  }
}

.card-section {
  display: none;
  &.is-active {
    display: block;
    animation: fadeIn 0.6s both;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translatey(2.08vw);
  }
  100% {
    opacity: 1;
  }
}

.card-timeline {
  margin-top: 1.56vw;
  position: relative;
  &:after {
    background: linear-gradient(
      to top,
      rgba(134, 214, 243, 0) 0%,
      #c47b68 100%
    );
    content: "";
    left: 2.19vw;
    width: 0.1vw;
    top: 0;
    height: 100%;
    position: absolute;
    content: "";
  }
}

.card-item {
  position: relative;
  padding-left: 3.12vw;
  padding-right: 1.04vw;
  padding-bottom: 1.56vw;
  z-index: 1;
  &:last-child {
    padding-bottom: 0.26vw;
  }

  &:after {
    content: attr(data-year);
    width: 0.52vw;
    position: absolute;
    top: 0;
    left: 1.95vw;
    width: 0.42vw;
    height: 0.42vw;
    line-height: 0.6;
    border: 0.1vw solid #fff;
    font-size: 0.57vw;
    text-indent: -1.82vw;
    border-radius: 50%;
    color: rgba(#868686, 0.7);
    background: #c77d6a;
  }
}

.card-item-title {
  font-weight: 500;
  font-size: 0.73vw;
  margin-bottom: 0.26vw;
}

.card-item-desc {
  font-size: 0.68vw;
  color: #6f6f7b;
  line-height: 1.5;
  font-family: "DM Sans", sans-serif;
}

.card-contact-wrapper {
  margin-top: 1.04vw;
}

.card-contact {
  display: flex;
  align-items: center;
  font-size: 0.9vw;
  color: #6f6f7b;
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  cursor: pointer;

  & + & {
    margin-top: 0.83vw;
  }

  svg {
    flex-shrink: 0;
    width: 1.56vw;
    min-height: 1.77vw;
    margin-right: 0.62vw;
    transition: 0.3s;
    padding-right: 0.62vw;
    border-right: 0.05vw solid #dfe2ec;
  }
}

.contact-me {
  border: 0;
  outline: none;
  background: linear-gradient(
    to right,
    #d98e7b 0%,
    #c47b68 96%
  );
  box-shadow: 0 0.21vw 0.31vw rgba(0, 0, 0, 0.15);
  color: #fff;
  padding: 0.62vw 0.83vw;
  width: 100%;
  border-radius: 0.26vw;
  margin-top: 1.3vw;
  cursor: pointer;
  font-size: 0.73vw;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
}

/* segunda carta */

.card2 {
  width: 23vw;
  margin-top: 2vw;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  background-color: rgba(255, 255, 255, 1);
  display: flex;
  transition: 0.3s;
  flex-direction: column;
  border-radius: 0.52vw;
  box-shadow: 0 0 0 0.42vw rgba(255, 255, 255, 0.2);
  font-size: 0.73vw; /* Tamaño base del texto */
}

.card2[data-state="#about2"] {
  height: 28vw;
}

.card2[data-state="#contact2"] {
  height: 20vw;
}

.card2[data-state="#experience2"] {
  height: 28.65vw;
}

.card2.is-active2 {
  .card-header2 {
    height: 4.17vw;
  }

  .card-cover2 {
    height: 5.21vw;
    top: -2.6vw;
  }

  .card-avatar-container2 {
    transform: none;
    left: 1.04vw;
    width: 2.6vw;
    height: 2.6vw;
    bottom: 0.52vw;
  }

  .card-fullname2,
  .card-jobtitle2 {
    left: 4.48vw;
    transform: none;
  }

  .card-fullname2 {
    bottom: 0.94vw;
    font-size: 0.99vw;
  }

  .card-jobtitle2 {
    bottom: 0.08vw;
    letter-spacing: 0.05vw;
    font-size: 0.52vw;
  }
}

.card-header2 {
  position: relative;
  display: flex;
  height: 12vw;
  flex-shrink: 0;
  width: 100%;
  transition: 0.3s;

  * {
    transition: 0.3s;
  }
}

.card-cover2 {
  width: 100%;
  height: 100%;
  position: absolute;
  height: 8.33vw;
  top: -20%;
  left: 0;
  will-change: top;
  background-size: cover;
  background-position: center;
  filter: blur(1.56vw);
  transform: scale(1.2);
  transition: 0.5s;
}

.card-avatar-container2 {
  height: 7vw;
  width: 7vw;
  border-radius:50%;
  box-shadow: 0 0.42vw 0.42vw rgba(0, 0, 0, 0.2);
  object-position: center;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-4vw);
}

.card-avatar2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.card-fullname2 {
  position: absolute;
  bottom: 0;
  font-size: 1.15vw;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transform: translateY(-0.52vw) translateX(-50%);
  left: 50%;
}

.card-jobtitle2 {
  position: absolute;
  bottom: -0.5vw;
  font-size: 0.57vw;
  white-space: nowrap;
  font-weight: 500;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1.0.26vw;
  margin: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-0.36vw);
}

.card-main2 {
  position: relative;
  flex: 1;
  display: flex;
  height: 1vw;
  padding-top: 0.52vw;
  flex-direction: column;
}

.card-subtitle2 {
  font-weight: 700;
  font-size: 0.68vw;
}

.card-content2 {
  padding: 1.04vw;
}

.card-desc2 {
  line-height: 1.6;
  color: #636b6f;
  font-size: 0.73vw;
  margin: 0;
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
}

.card-social2 i {
  font-size: 2vw; 
  transition: 0.3s; 
  text-decoration: none;
  margin-left: 1vw;
  margin-top: 1.2vw;
}

.card-social2 i:hover {
  transform: scale(1.2); 
  color: #2054fd; 
}
.card-social2 a {
  text-decoration: none; 
  color: inherit; 
}
.card-social2 a.ig2:hover i {
  background: linear-gradient(
    100deg,
    rgb(131, 58, 180),
    rgb(193, 53, 132),
    rgb(253, 29, 29),
    rgb(245, 96, 64),
    rgb(252, 176, 69)
  );
  background-size: 300% 300%;
  animation: igGradient 3s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: 0.1s;
}

/* Animación del fondo en movimiento */
@keyframes igGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.card-buttons2 {
  display: flex;
  background-color: #fff;
  margin-top: auto;
  position: sticky;
  bottom: 0;
  left: 0;

  button {
    flex: 1 1 auto;
    user-select: none;
    background: 0;
    font-size: 0.68vw;
    border: 0;
    padding: 0.78vw 0.26vw;
    cursor: pointer;
    color: #5c5c6d;
    transition: 0.3s;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    outline: 0;
    border-bottom: 0.16vw solid transparent;

    &.is-active2,
    &:hover {
      color: #482b2b;
      border-bottom: 0.16vw solid #c47b68;
      background: linear-gradient(
        to bottom,
        rgba(127, 199, 231, 0) 0%,
        rgba(255, 207, 204, 0.2) 44%,
        rgba(255, 211, 211, 0.4) 100%
      );
    }
  }
}

.card-section2 {
  display: none;
  &.is-active2 {
    display: block;
    animation: fadeIn 0.6s both;
    /* aqui deberia tener un margin-bottom: pero cuando intento agregar el efecto se daña; */
  }
}

.card-timeline2 {
  margin-top: 1.56vw;
  position: relative;
  &:after {
    background: linear-gradient(
      to top,
      rgba(134, 214, 243, 0) 0%,
      #c47b68 100%
    );
    content: "";
    left: 2.19vw;
    width: 0.1vw;
    top: 0;
    height: 100%;
    position: absolute;
    content: "";
  }
}

.card-item2 {
  position: relative;
  padding-left: 3.12vw;
  padding-right: 1.04vw;
  padding-bottom: 1.56vw;
  z-index: 1;
  &:last-child {
    padding-bottom: 0.26vw;
  }

  &:after {
    content: attr(data-year);
    width: 0.52vw;
    position: absolute;
    top: 0;
    left: 1.95vw;
    width: 0.42vw;
    height: 0.42vw;
    line-height: 0.6;
    border: 0.1vw solid #fff;
    font-size: 0.57vw;
    text-indent: -1.82vw;
    border-radius: 50%;
    color: rgba(#868686, 0.7);
    background: #c47b68;
  }
}

.card-item-title2 {
  font-weight: 500;
  font-size: 0.73vw;
  margin-bottom: 0.26vw;
}

.card-item-desc2 {
  font-size: 0.68vw;
  color: #6f6f7b;
  line-height: 1.5;
  font-family: "DM Sans", sans-serif;
}

.card-contact-wrapper2 {
  margin-top: 1.04vw;
}

.card-contact2 {
  display: flex;
  align-items: center;
  font-size: 0.68vw;
  color: #6f6f7b;
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  cursor: pointer;
  font-size: 0.9vw;

  & + & {
    margin-top: 0.83vw;
  }

  svg {
    flex-shrink: 0;
    width: 1.56vw;
    min-height: 1.77vw;
    margin-right: 0.62vw;
    transition: 0.3s;
    padding-right: 0.62vw;
    border-right: 0.05vw solid #dfe2ec;
  }
}

.contact-me2 {
  border: 0;
  outline: none;
  background: linear-gradient(
    to right,
    #d98e7b 0%,
    #c47b68 96%
  );
  box-shadow: 0 0.21vw 0.31vw rgba(0, 0, 0, 0.15);
  color: #fff;
  padding: 0.62vw 0.83vw;
  width: 100%;
  border-radius: 0.26vw;
  margin-top: 1.3vw;
  cursor: pointer;
  font-size: 0.73vw;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
}
/* FIN DE LA SEGUNDA CARTA */


/* CONFIGURACION MEDIA */

@media (max-width: 500px){

  .card{
    box-shadow: 0 0 0 1.4vw rgba(255, 255, 255, 0.2);
    margin-top: 135vw;
  }

  .card[data-state="#about"] {
    height:102vw;
    width: 93vw;
    right: 35vw;
    font: 30vw;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -68vw;
    box-shadow: 0 0 0 1.4vw rgba(255, 255, 255, 0.2);
    
  }

  .card-desc{
    font-size: 3vw;
    position: relative;
    top: 38VW;
    margin-left: 2vw;
  }

  .card-cover{
    position: absolute;
    bottom: 50vw;
    height: 30vw;
  }
    
.Rol1{
  position: relative;
  top: 65vw;
  width: 70vw;
  font-size: 7vw;
  right: 25vw;
}

.card-avatar-container{
  height: 26vw;
  width: 26vw;
  position: absolute;
  top: 8vw;
}

.card-social i{
  font-size: 6vw;
  position: relative;
  top: 40vw;
  left: 2vw;
}

.card-subtitle{
  font-size: 4vw;
  position: relative;
  top: 38vw;
  left: 2vw;
}
  
.card-fullname{
  position: relative;
  top: 35vw;
  font-size: 4vw;
}

.card-jobtitle{
  font-size: 2vw;
  top: 40vw;
}

.card-buttons{
  button{
    font-size: 3vw;
    padding: 3vw;
  }
}


/* EXPERIENCIA */
.card[data-state="#experience"] {
  height:102vw;
  width: 93vw;
  right: 35vw;
  font: 30vw;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -68vw;
  
  .card-avatar-container{
  height: 20vw;
  width: 20vw;
  position: relative;
  top: 3vw;
  left: 4vw;
  }

  .card-fullname{
    font-size: 3vw;
    position: relative;
    top: 12vw;
    left: 7vw;
  }

  .card-jobtitle{
    font-size: 2vw;
    position: relative;
    left: -29.4vw;
    top: 16vw;
  }

  .card-subtitle{
    font-size: 2.7vw;
    position: relative;
    top: 22vw;
    left: 2vw;
  }

  .card-item{
    position: relative;
    top: 25vw;
  }

  .card-item-title{
    font-size: 2.7vw;
    position: relative;
    left: 4vw;
    padding: 2vw;
  }
  
  .card-item-desc{
    font-size: 2vw;
    position: relative;
    left: 6vw;
    padding: .3vw;
  }

  .card-item::after{
    content: attr(data-year);
    font-size: 2vw;
    position: absolute;
    top: 2vw;
    left: 5.8vw;
    width: 1vw;
    height: 1vw;
    line-height: 0.6;
    border: 1vw solid #fff;
    text-indent: -6vw;
    border-radius: 50%;
    color: rgba(#868686, 1);
    background: #c77d6a;
    
  }

  .card-timeline {
    margin-top: 1.56vw;
    position: relative;
    &:after {
      background: linear-gradient(
        to top,
        rgba(134, 214, 243, 0) 0%,
        #c47b68 100%
      );
      content: "";
      left: 7vw;
      width: 0.3vw;
      top: 27vw;
      height: 100%;
      position: absolute;
      content: "";
    }
  }


  button {
    flex: 1 1 auto;
    user-select: none;
    background: 0;
    font-size: 3vw;
    border: 0;
    margin: 0 5vw 0 5vw;
    cursor: pointer;
    color: #000000;
    transition: 0.3s;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    outline: 0;
    border-bottom: 0.16vw solid transparent;

    &.is-active,
    &:hover {
      color: #482b2b;
      border-bottom: 0.16vw solid #c47b68;
      background: linear-gradient(
        to bottom,
        rgba(127, 199, 231, 0) 0%,
        rgba(255, 207, 204, 0.2) 44%,
        rgba(255, 211, 211, 0.4) 100%
      );
    }
  }
}


/* Contactos */

.card[data-state="#contact"] {
  height: 90vw;
  width: 93vw;
  right: 35vw;
  font: 30vw;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -68vw;
  
  .card-avatar-container{
  height: 20vw;
  width: 20vw;
  position: relative;
  top: 3vw;
  left: 4vw;
  }

  .card-fullname{
    font-size: 3vw;
    position: relative;
    top: 12vw;
    left: 7vw;
  }

  .card-jobtitle{
    font-size: 2vw;
    position: relative;
    left: -29.4vw;
    top: 16vw;
  }

  .card-subtitle{
    font-size: 4vw;
    position: relative;
    top: 30vw;
    left: 5vw;
  }

  .card-contact{
    position: relative;
    top: 30vw;
    margin-top: 4vw;
    font-size: 4vw;
    margin-left: 3vw;

    svg {
      flex-shrink: 0;
      width: 5.4vw;
      min-height: 1.77vw;
      margin-right: 0.62vw;
      transition: 0.3s;
      padding-right: 0.62vw;
      border-right: 0.05vw solid #dfe2ec;
    }
  }

  

  button {
    flex: 1 1 auto;
    user-select: none;
    background: 0;
    font-size: 3vw;
    border: 0;
    margin: 0 5vw 0 5vw;
    cursor: pointer;
    color: #000000;
    transition: 0.3s;
    font-family: "Jost", sans-serif;
    font-weight: 500;
    outline: 0;
    border-bottom: 0.16vw solid transparent;

    &.is-active,
    &:hover {
      color: #482b2b;
      border-bottom: 0.16vw solid #c47b68;
      background: linear-gradient(
        to bottom,
        rgba(127, 199, 231, 0) 0%,
        rgba(255, 207, 204, 0.2) 44%,
        rgba(255, 211, 211, 0.4) 100%
      );
    }
  }

}


/* SEGUNDA CARTA */
.card2{
  box-shadow: 0 0 0 1.4vw rgba(255, 255, 255, 0.2);
  position: relative;
  margin-top: 20vw;
  left: 0;
 
}

.card2[data-state="#about2"] {
  height:102vw;
  width: 93vw;
  right: 35vw;
  font: 30vw;
  justify-content: center;
  align-items: center;
  position: relative;
  top: -68vw;
  box-shadow: 0 0 0 1.4vw rgba(255, 255, 255, 0.2);
  
}

.card-desc2{
  font-size: 3vw;
  position: relative;
  top: 38VW;
  margin-left: 2vw;
}

.card-cover2{
  position: absolute;
  bottom: 50vw;
  height: 30vw;
}
  
.Rol2{
position: relative;
bottom: 52vw;
width: 100%;
font-size: 7vw;

}

.card-avatar-container2{
height: 26vw;
width: 26vw;
position: absolute;
top: 8vw;
}

.card-social2 i{
font-size: 6vw;
position: relative;
top: 40vw;
left: 2vw;
}

.card-subtitle2{
font-size: 4vw;
position: relative;
top: 38vw;
left: 2vw;
}

.card-fullname2{
position: relative;
top: 35vw;
font-size: 4vw;
}

.card-jobtitle2{
font-size: 2vw;
top: 40vw;
}

.card-buttons2{
button{
  font-size: 3vw;
  padding: 3vw;
}
}


/* EXPERIENCIA */
.card2[data-state="#experience2"] {
height:102vw;
width: 93vw;
right: 35vw;
font: 30vw;
justify-content: center;
align-items: center;
position: relative;
top: -68vw;


.card-avatar-container2{
height: 20vw;
width: 20vw;
position: relative;
top: 3vw;
left: 4vw;
}


.card-cover2{
  position: absolute;
  bottom: 50vw;
  height: 25vw;
}

.card-fullname2{
  font-size: 3vw;
  position: relative;
  top: 12vw;
  left: 7vw;
}

.card-jobtitle2{
  font-size: 2vw;
  position: relative;
  left: -22.1vw;
  top: 16vw;
}

.card-subtitle2{
  font-size: 2.7vw;
  position: relative;
  top: 22vw;
  left: 2vw;
}

.card-item2{
  position: relative;
  top: 25vw;
}

.card-item-title2{
  font-size: 2.7vw;
  position: relative;
  left: 4vw;
  padding: 2vw;
}

.card-item-desc2{
  font-size: 2vw;
  position: relative;
  left: 6vw;
  padding: .3vw;
}

.card-item2::after{
  content: attr(data-year);
  font-size: 2vw;
  position: absolute;
  top: 2vw;
  left: 5.8vw;
  width: 1vw;
  height: 1vw;
  line-height: 0.6;
  border: 1vw solid #fff;
  text-indent: -6vw;
  border-radius: 50%;
  color: rgba(#868686, 1);
  background: #c77d6a;
  
}

.card-timeline2 {
  margin-top: 1.56vw;
  position: relative;
  &:after {
    background: linear-gradient(
      to top,
      rgba(134, 214, 243, 0) 0%,
      #c47b68 100%
    );
    content: "";
    left: 7vw;
    width: 0.3vw;
    top: 27vw;
    height: 100%;
    position: absolute;
    content: "";
  }
}


button {
  flex: 1 1 auto;
  user-select: none;
  background: 0;
  font-size: 3vw;
  border: 0;
  margin: 0 5vw 0 5vw;
  cursor: pointer;
  color: #000000;
  transition: 0.3s;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  outline: 0;
  border-bottom: 0.16vw solid transparent;

  &.is-active,
  &:hover {
    color: #482b2b;
    border-bottom: 0.16vw solid #c47b68;
    background: linear-gradient(
      to bottom,
      rgba(127, 199, 231, 0) 0%,
      rgba(255, 207, 204, 0.2) 44%,
      rgba(255, 211, 211, 0.4) 100%
    );
  }
}
}


/* Contactos */

.card2[data-state="#contact2"] {
height: 90vw;
width: 93vw;
right: 35vw;
font: 30vw;
justify-content: center;
align-items: center;
position: relative;
top: -68vw;

.card-avatar-container2{
height: 20vw;
width: 20vw;
position: relative;
top: 3vw;
left: 4vw;
}


.card-cover2{
  position: absolute;
  bottom: 50vw;
  height: 30vw;
}

.card-fullname2{
  font-size: 3vw;
  position: relative;
  top: 12vw;
  left: 7vw;
}

.card-jobtitle2{
  font-size: 2vw;
  position: relative;
  left: -22.1vw;
  top: 16vw;
}

.card-subtitle2{
  font-size: 4vw;
  position: relative;
  top: 30vw;
  left: 5vw;
}

.card-contact2{
  position: relative;
  top: 30vw;
  margin-top: 4vw;
  font-size: 4vw;
  margin-left: 3vw;

  svg {
    flex-shrink: 0;
    width: 5.4vw;
    min-height: 1.77vw;
    margin-right: 0.62vw;
    transition: 0.3s;
    padding-right: 0.62vw;
    border-right: 0.05vw solid #dfe2ec;
  }
}



button {
  flex: 1 1 auto;
  user-select: none;
  background: 0;
  font-size: 3vw;
  border: 0;
  margin: 0 5vw 0 5vw;
  cursor: pointer;
  color: #000000;
  transition: 0.3s;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  outline: 0;
  border-bottom: 0.16vw solid transparent;

  &.is-active,
  &:hover {
    color: #482b2b;
    border-bottom: 0.16vw solid #c47b68;
    background: linear-gradient(
      to bottom,
      rgba(127, 199, 231, 0) 0%,
      rgba(255, 207, 204, 0.2) 44%,
      rgba(255, 211, 211, 0.4) 100%
    );
  }
}

}

}




