* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  *,
  ::before,
  ::after {
    box-sizing: border-box;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  a {
    text-decoration: none;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-wrap: balance;
  }
  
  p {
    text-wrap: pretty;
  }
  
  .pos-relative {
    position: relative;
  }
  
  :root {
    --font-family-proyect: "Nunito", sans-serif !important;
    --font-color-proyect: #153244 !important;
    --platform-name-color: #707070 !important;
  }
  
  body {
    font-family: var(--font-family-proyect) !important;
    color: var(--font-color-proyect) !important;
  }
  
  /* -------------- Estilos Header -------------- */
  
  .header-caba {
    position: sticky;
    top: 0;
    padding: 1rem 0;
    background-color: #ffffff;
    box-shadow: 0px 3px 6px #00000029;
    z-index: 100;
  }
  
  .center-vertically-items {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .center-items {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .navbar-logo {
    width: 64px;
    height: auto;
  }
  
  .navbar-platform-name {
    color: var(--platform-name-color);
    font-size: 18px;
    line-height: 1.25rem;
    font-weight: 700;
  }
  
  .container-caba {
    max-width: calc(100% - 48px);
    margin-right: auto;
    margin-left: auto;
  }
  
  .navbar-caba {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  /* -------- Main -------- */
  
  .main_container_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
  }
  
  .main_title {
    font-size: 32px;
    line-height: 2.25rem;
  }
  
  .main_text {
    font-size: 20px;
  }
  
  .main-container-caba {
    padding: 48px 0 32px 0;
  }
  
  .main_grid {
    display: grid;
    grid-template-columns: auto;
    gap: 2rem;
  }
  
  /* -------- Footer -------- */
  
  .bg-footer {
    background-color: var(--font-color-proyect);
    border-top: 4px solid #ffcc00;
  }
  
  .footer-caba {
    padding: 2rem 0;
  }
  
  .container-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .logo-princ-footer {
    display: none;
  }
  
  .text-social-media {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
  }
  
  .list-social-media {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 1rem;
  }
  
  .list-item-social-media {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .list-link-social-media {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
  }
  
  .list-img-social-media {
    width: 40px;
    height: auto;
  }
  
  .item-name-social-media {
    font-weight: 700;
    color: #ffffff;
  }
  
  .hr-style {
    margin: 2rem 0;
    border-color: #94a3b8;
  }
  
  .container-sec-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .container-sec-footer > .container-logo-sec {
    flex-grow: 1;
  }
  
  .logo-footer-sec {
    display: none;
    width: 100%;
    max-width: 255px;
  }
  
  .list-persons {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    gap: 1.5rem;
  }
  
  .list-person-job {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    margin: 0 0;
  }
  
  .list-person-name {
    font-size: 14px;
    font-weight: 100;
    color: #e2e8f0;
  }
  
  .container-copyright {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .container-img-copyright {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  
  .container-img-copyright > img {
    width: 25%;
    max-width: 125px;
    min-width: 80px;
  }
  
  .text-copyright {
    font-size: 14px;
    margin-top: 0.5rem;
    color: #94a3b8;
  }
  
  @media screen and (min-width: 576px) {
    .container-footer {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
  
    .logo-princ-footer {
      display: block;
    }
  
    .text-social-media {
      display: none;
    }
  
    .list-social-media {
      flex-direction: row;
      align-items: center;
      gap: 2rem;
    }
  
    .item-name-social-media {
      display: none;
    }
  
    .hr-style {
      margin: 2rem 0;
    }
  
    .logo-footer-sec {
      display: block;
    }
  
    .list-persons {
      padding-top: 1.5rem;
    }
  
    .container-img-copyright > img {
      width: 20%;
    }
  
    .text-copyright {
      font-size: 16px;
    }
  }
  
  @media screen and (min-width: 768px) {
    .container-img-copyright > img {
      width: calc(100% / 6);
    }
  
    .main_grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media screen and (min-width: 1024px) {
    .container-caba {
      max-width: calc(100% - 96px);
    }
  
    .main-container-caba {
      padding: 140px 0;
    }
  
    .list-persons {
      padding-top: 0;
    }
  
    .main_title {
      font-size: 40px;
      line-height: 2.5rem;
    }
  
    .container-sec-footer {
      gap: 1.5rem;
      justify-content: space-between;
      flex-wrap: nowrap;
    }
  
    .list-persons {
      flex-direction: row;
      width: auto;
      justify-content: flex-start;
      gap: 0;
    }
  
    .list-person-job,
    .list-person-name {
      text-align: end;
    }
  
    .list-person-divisor {
      border-color: #ffffff;
      border-style: solid;
      border-top: 0;
      border-right-width: 0;
      border-bottom: 0;
      border-left-width: 1px;
    }
  
    .list-person-pr {
      padding-right: 2rem;
    }
  
    .list-person-px {
      padding: 0 2rem;
    }
  
    .list-person-pl {
      padding-left: 1rem;
    }
  
    .container-img-copyright {
      display: none;
    }
  
    .text-copyright {
      margin-top: 0;
    }
  }
  
  @media (min-width: 1920px) {
    .container-caba {
      max-width: calc(1920px - 96px);
      margin: auto;
    }
  }