.hero-shot {
    position: relative;
  }

  #section_dev {
    position: relative;
    padding: 70px;
  }

  .container {
    width: 100%;
    max-width: var(--container-regular);
    padding: 0 5%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .flex-row--wrap {
    flex-wrap: wrap;
  }
  .flex-column--center, .flex-row--vcenter {
    align-items: center;
  }
  .flex-row--space {
    justify-content: space-between;
  }
  .flex-row {
    display: grid;
  grid-template-columns: 1fr 1fr;
  }

    .hero-shot__text-container {
      width: 600px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin-left: 140px;
    
    }
  

  .hero-shot__image {
    right: 0;
    bottom: 0;
    display: flex;
    border-radius: 8%;
    overflow: hidden;
    margin-top: 50px;
    margin-right: 250px;
    width: 600px;
  height: 490px;
}  

  




.card-api {
    --border-radius: 0.80rem;
    --primary-color: #bbb;
    --secondary-color: #3c3852;
    width: 310px;
    height:250px;
    font-family: "Arial";
    padding: 1rem;
    cursor: pointer;
    border-radius: var(--border-radius);
    background: #f1f1f3;
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 3%);
    position: relative;
  }
  
  .card-api > * + * {
    margin-top: 1.1em;
  }
  
  .card-api .card__content {
    color: var(--secondary-color);
    font-size: 0.86rem;
  }
  
  .card-api .card__title {
    padding: 0;
    font-size: 1.3rem;
    font-weight: bold;
  }
  
  .card-api .card__date {
    color: #6e6b80;
    font-size: 0.8rem;
  }
  
  .card-api .card__arrow {
    position: absolute;
    background: var(--primary-color);
    padding: 0.4rem;
    border-top-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    bottom: 0;
    right: 0;
    transition: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .card-api svg {
    transition: 0.2s;
  }
  
  /* hover */
  .card-api:hover .card__title {
    color: var(--primary-color);
    text-decoration: underline;
  }
  
  .card-api:hover .card__arrow {
    background: #111;
  }
  
  .card-api:hover .card__arrow svg {
    transform: translateX(3px);
  }

h1,h2,h3,h4,h5{
  font-family: var(--font-serif);
}

.dev_icons{
  width: 80px;
}

/* Adaptación para pantallas móviles */

@media (max-width:1100px){
  .flex-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-shot__image {
    margin-inline: auto;
  }

  .hero-shot__text-container {
    width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 140px;
    align-items: center;
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .hero-shot {
    position: relative;
  }
 

  .hero-shot .container {
    min-height: 40vh; 
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 2%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .flex-row--wrap {
    flex-wrap: wrap;
  }

  .flex-row--vcenter {
    align-items: center;
  }

  .flex-row--space {
    justify-content: space-between;
  }

  .flex-row {
    display: flex;
    flex-direction: column; 
  }

  .hero-shot__text-container {
    width: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
    margin-bottom: 20px; 
    margin-right: 0px;
  }

  .hero-shot__image {
    width: 90%; 
    right: 0;
    bottom: 0;
    display: flex;
    border-radius: 8%;
    overflow: hidden;
    margin-top: 20px;
    margin-right: 0; 
    margin-left: 0;
  }

  .pre-title{
    margin-top: 20px;
  }

  #section_dev {
    position: relative;
    padding: 40px;
  }
  .dev_icons {
    
    margin: 0 auto;
  }
}
