*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-neutral-100: #e3e5e8;
  --color-neutral-200: #c7cbd1;
  --color-neutral-500: #6f7989;
  --color-neutral-600: #5b6471;
  /* --color-blue-500: #2058AC; */
  --color-blue-500: #001489;
  --color-red-500: #ef3340;
  --color-footer-500: #3a4351;
  --color-footer-600: #222831;
}

body {
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  color: var(--color-neutral-500);
  position: relative;
  background-image: url("img/digraf-logo-bg.png");
  /* path to your PNG */
  background-repeat: no-repeat;
  background-size: 800px;
  /* makes it fill the screen */
  background-position: right;
  /* centers the image */
  background-attachment: fixed;
  /* THIS makes it fixed */
}

p,
.font-body-regular {
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
}

.font-body-bold {
  font-size: 1rem;
  line-height: 150%;
  font-weight: 600;
}

.font-display-medium {
  font-family: "belleza";
  font-size: 3.5rem;
  line-height: 110%;
  font-weight: 600;
}

.font-display-small {
  font-size: 1.5rem;
  line-height: 150%;
  font-weight: 400;
}

.font-title-regular {
  font-family: "libre baskerville";
  font-size: 2rem;
  line-height: 140%;
  font-weight: 600;
  color: var(--color-neutral-600);
}

.font-heading-regular {
  font-family: "libre baskerville";
  font-size: 1.25rem;
  line-height: 150%;
  font-weight: 600;
  color: var(--color-neutral-600);
}

.font-subheading-regular {
  font-family: "libre baskerville";
  font-size: 1rem;
  line-height: 150%;
  font-weight: 600;
  color: var(--color-neutral-600);
}

/*--WHATS CTA*/
.whatsapp-cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: fit-content;
  position: fixed;
  z-index: 50;
  /* margin-right: 5%;
  margin-left: auto;
  top: 85%; */
  bottom: 7%;
  right: 5%;
  border: solid 1px var(--color-neutral-200);
  text-decoration: none;
  color: var(--color-neutral-500);
  background-color: white;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-radius: 1rem;

  i {
    font-size: 1.5rem;
    color: green;
  }
}

/*Banner prueba*/
.banner-prueba {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
  font-size: 2rem;
  width: fit-content;
  opacity: 0.5;
}

/*---NAV*/
.nav-section {
  width: 100%;
  border-bottom: 1px solid var(--color-neutral-100);
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 999;

  .nav-container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    padding: 1.5rem 2rem;

    .nav-brand-link {
      width: 3rem;

      img {
        width: 100%;
      }
    }

    .nav-links-wrapper {
      display: flex;
      gap: 1rem;

      .nav-link-item {
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;



        .nav-link {
          text-decoration: none;
          color: var(--color-neutral-500);
          width: 100%;
          height: 100%;
          padding: 0.75rem 1rem;
        }
      }

      .nav-link-item::after {
        content: '';
        position: absolute;
        bottom: -4px;
        /* distance of underline from text */
        left: 50%;
        width: 0;
        height: 2px;
        /* underline thickness */
        background-color: var(--color-red-500);
        /* underline color */
        transform: translateX(-50%);
        transition: width 0.3s ease;
      }

      .nav-link-item:hover::after {
        width: 100%;
      }
    }

    .nav-link-cta {
      text-decoration: none;
      color: white;
      background-color: var(--color-red-500);
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
      overflow: hidden;
      border: 1px solid transparent;
      transition: all 0.5s ease;
    }

    .nav-link-cta:hover {
      color: var(--color-red-500);
      background-color: white;
      border: 1px solid var(--color-red-500);
    }
  }
}

.navMenuMobile {
  display: none;
}

#mobileLinks {
  display: none;
}

/*---HERO*/

.hero-section {
  width: 100%;

  .hero-container {
    width: 100%;
    max-width: 60rem;
    margin: auto;
    padding: 5rem 2rem 2.5rem 2rem;
    /* height: 480px; */
    display: flex;
    align-items: center;
    justify-content: center;

    .hero-wrapper {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 4rem;
      margin: auto;
      outline: 1px red;

      .hero-img {
        width: 30%;
      }

      .hero-content-wrapper {
        display: flex;
        flex-direction: column;
        width: 70%;
        gap: 1rem;

        h1 {
          color: var(--color-blue-500);

          .logo-y {
            font-size: 3rem;
            color: var(--color-red-500);
          }
        }

        p {
          color: var(--color-neutral-500);
        }

        .generic-cta {
          text-decoration: none;
          color: white;
          background-color: var(--color-red-500);
          padding: 0.75rem 1rem;
          border-radius: 0.5rem;
          overflow: hidden;
          align-self: flex-start;
          transition: all ease 0.5s;
          border: 1px solid transparent;
        }

        .generic-cta:hover {
          color: var(--color-red-500);
          background-color: white;
          border: 1px solid var(--color-red-500);
        }
      }
    }
  }
}

.value-text-section {
  width: 100%;

  .value-text-container {
    width: 100%;
    max-width: 1280px;
    padding: 2rem;
    margin: auto;

    .value-text-wrapper {
      width: 100%;
      text-align: center;

      h3 {
        font-family: "libre baskerville";
        font-style: italic;
        font-weight: 400;
        color: var(--color-neutral-500);
        font-size: 1.25rem;

        span {
          color: var(--color-red-500);
        }
      }
    }
  }
}



/*---MAIN HOME*/

.general-section {
  width: 100%;

  .general-container {
    width: 100%;
    padding: 0 4rem;
    max-width: 1440px;
    margin: auto;

    .general-wrapper {
      width: 100%;
      padding: 2% 0;
    }
  }
}

ul {
  list-style-position: inside;
  padding-left: 0;
}

.full-width-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;

  h3 {
    margin: auto;
  }

}

.vertical-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.top-padding {
  height: 2rem;
  width: 100%;
}

.servicios-wrapper {
  margin: auto;
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  width: 100%;

  h2 {
    color: var(--color-neutral-600);
  }
}

.wrapper-two-halves-row {
  display: flex;
  width: 100%;
  justify-content: space-between;

  .wrapper-two-halves-row-img {
    width: 48%;
    min-height: 320px;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;

    img {
      width: 100%;
      height: 100%;
      position: absolute;
      object-fit: cover;
      transition: all 1s ease;
    }

    img:hover {
      transform: scale(1.1);
    }
  }

  .half-content-wrapper {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;

    .generic-cta {
      text-decoration: none;
      color: white;
      background-color: var(--color-red-500);
      padding: 0.75rem 1rem;
      border-radius: 0.5rem;
      overflow: hidden;
      align-self: flex-start;
      transition: all ease 0.5s;
      border: 1px solid transparent;
    }

    .generic-cta:hover {
      color: var(--color-red-500);
      background-color: white;
      border: 1px solid var(--color-red-500);
    }
  }
}

.main-section {
  width: 100%;
  outline: 1px solid blue;

  .main-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 2.5rem 2rem 2.5rem 2rem;
    outline: 1px solid red;

    .main-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2.5rem;
      outline: 1px solid green;

      h2 {
        color: var(--color-neutral-600);
      }

      .main-content-box-wrapper {
        display: flex;
        width: 100%;
        justify-content: space-between;
        outline: 1px solid blue;

        .main-content-img {
          width: 48%;
          min-height: 320px;
          overflow: hidden;
          position: relative;
          display: flex;
          justify-content: center;
          align-items: center;
          border-radius: 1rem;

          img {
            width: 100%;
            height: 100%;
            position: absolute;
            object-fit: cover;
          }
        }

        .main-content-wrapper {
          width: 48%;
          display: flex;
          flex-direction: column;
          gap: 1rem;
          justify-content: center;

          .generic-cta {
            text-decoration: none;
            color: white;
            background-color: var(--color-red-500);
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            overflow: hidden;
            align-self: flex-start;
            transition: all ease 0.5s;
            border: 1px solid transparent;
          }

          .generic-cta:hover {
            color: var(--color-red-500);
            background-color: white;
            border: 1px solid var(--color-red-500);
          }
        }
      }
    }
  }
}

.articulos-perso-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  margin: auto;
  max-width: 1140px;

  .home-articulos-content-wrap {
    display: flex;
    align-items: center;

    .home-articulos-img {
      max-width: 480px;
      width: 40%;

      img {
        width: 100%;
      }
    }

    .home-articulos-text {
      padding: 2rem;
      width: 60%;
    }
  }
}

.home-products-section {
  width: 100%;

  h3 {
    color: var(--color-neutral-600);
  }

  .home-products-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 2.5rem 2rem;

    .home-products-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      gap: 2.5rem;

      .generic-cta {
        text-decoration: none;
        color: white;
        background-color: var(--color-red-500);
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        overflow: hidden;
        align-self: flex-start;
        margin: auto;
        border: 1px solid transparent;
        transition: all ease 0.5s;
      }

      .generic-cta:hover {
        color: var(--color-red-500);
        background-color: white;
        border: 1px solid var(--color-red-500);
      }

      .home-products-wrap {
        display: flex;
        justify-content: space-between;
        gap: 2rem;

        .home-product-card-wrap {
          width: 30%;
          display: flex;
          flex-direction: column-reverse !important;
          gap: 1rem;
          align-items: center;

          .home-product-img {
            width: 100%;
            max-height: 320px;
            overflow: hidden;
            border-radius: 1rem;

            img {
              width: 100%;
              transition: all 1s ease;
            }

            img:hover {
              transform: scale(1.1);

            }
          }
        }
      }
    }
  }
}

/*GALLERY*/

.section-gallery {
  width: 100%;
  padding: 0 0;
}

.container-gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0;
}

.gallery-title {
  margin-bottom: 1rem;
}

.galleryWrap {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 1rem;
}

/* BIG IMAGE (first one) */
.galleryWrap a:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

/* ALL IMAGES */
.galleryWrap a {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.galleryWrap img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover zoom (optional but nice) */
.galleryWrap a:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {


  .galleryWrap {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .galleryWrap a:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .galleryWrap a:not(:first-child) {
    aspect-ratio: 1 / 1;
  }
}

/*--------------CONTACTO PAG----------*/
.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-wrapper {
  display: flex;
  gap: 2rem;
  width: 100%;
  margin: auto;
  padding: 4rem;
  justify-content: center;

  .contact-img {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    img {
      height: 280px;
    }
  }

  .contact-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    width: 50%;
  }
}


/*-------------VALORES-----------------*/
.valores-title {
  text-align: center;
  padding: 2rem 0 0 0;
}

/* GRID WRAPPER */
.valores-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

/* INDIVIDUAL ITEM */
.valor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

/* ICON */
.valores-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
  object-fit: contain;
}

/* TITLE */
.valor-item p strong {
  font-size: 1rem;
  font-weight: 600;
}

/* DESCRIPTION */
.valor-item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 260px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .valores-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem !important;
    align-items: baseline !important;

    .hero-img {
      width: 50% !important;

      img {
        width: 100%;
      }
    }
  }
}


@media (max-width: 478px) {


  .valores-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.estuches-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 100%;
  margin: 0 auto;
  align-items: stretch;

  /* IMPORTANT */
  .estuche-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: 100%;
    /* IMPORTANT */
  }

  .estuche-image {
    background: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 280px;
    flex: 1;
    overflow: hidden;
    border-radius: 1rem;
  }

  .estuche-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s ease;
  }


  .estuche-image img:hover {
    transform: scale(1.1);
  }
}

@media (max-width: 991px) {
  .estuches-cards-wrapper {
    grid-template-columns: 1fr;
  }
}

/*---FORM*/

.form-section {
  width: 100%;

  .form-container {
    h3 {
      color: var(--color-neutral-600);
    }

    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    gap: 2.5rem;
    padding: 2.5rem 2rem;

    h3,
    p {
      text-align: center;
    }

    .form-wrapper {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;

      .form-img {
        max-width: 480px;

        img {
          width: 100%;
        }
      }

      .contact-form {
        width: 48%;
      }
    }
  }
}

.contact-section {
  width: 100%;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 1rem;
}

.contact-intro>*+* {
  margin-top: 1rem;
}

.contact-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
}

.contact-description {
  color: rgb(107 114 128);
}

.form-group-container {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 600;
}

.form-input,
.form-textarea {
  padding: 0.5rem;
  border: 1px solid var(--color-neutral-200);
  display: flex;
  height: 2.5rem;
  width: 100%;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  cursor: pointer;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-neutral-200);
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}

.form-submit {
  width: 100%;
  margin-top: 1.2rem;
  background-color: var(--color-red-500);
  color: #fff;
  padding: 1rem;
  border-radius: 0.375rem;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all ease 0.5s;
}

.form-submit:hover {
  color: var(--color-red-500);
  background-color: white;
  border: 1px solid var(--color-red-500);
}

/*---FOOTER*/

.footer-section {
  width: 100%;
  background-color: var(--color-footer-500);

  .footer-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 2.5rem 2rem;

    .footer-wrapper {
      width: 100%;

      .footer-top-wrapper {
        display: flex;
        align-content: flex-start;
        justify-content: center;
        color: white;

        .footer-brand-wrap {
          width: 33%;
          display: flex;
          align-items: center;

          .footer-brand {
            width: 100%;
            max-width: 80px;
          }

          img {
            max-width: 80px;
          }
        }

        .footer-info-wrapper {
          width: 30%;
          display: flex;
          flex-direction: column;
          gap: 1rem;

          a {
            text-decoration: none;
            color: white;
            align-self: flex-start;
          }

          div {
            display: flex;
            gap: 0.5rem;

            i {
              font-size: 1.5rem;
            }
          }
        }
      }
    }
  }

  .footer-bottom-wrapper {
    padding: 1rem 2rem;
    color: white;
    background-color: var(--color-footer-600);
    text-align: center;
  }
}

.mobile-top-padding {
  display: none;
}


/*---TABLET----*/



@media (max-width: 991px) {
  /*Nav bar*/

  .hide-mobile {
    display: none;
  }

  .mobile-top-padding {
    display: block;
    width: 100%;
    height: 80px;
  }

  #navHeader {
    display: none;
  }

  .navMenuMobile {
    position: fixed;
    width: 100vw;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    /* outline: red solid; */
    padding: 0 4rem;
    border-bottom: solid 1px rgba(0, 0, 0, 0.178);
    z-index: 115;
    background-color: white;

    .nav-brand-mobile {
      display: flex;
      width: 50px;


      .nav-brand-img {
        width: 50px !important;
      }

    }

    #navBtn {
      display: flex;
      width: 45px;
      height: 45px;
      padding: 0.5rem 0.5rem;
      border-radius: 10px;
      background-color: hsl(0, 0%, 100%);
      border: none;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;

      .navBtnLine {
        height: 4px;
        background-color: rgba(0, 0, 0, 0.564);
        width: 100%;
      }
    }
  }

  #mobileLinks {
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: 80px;
    left: 0;
    display: inline-block;
    height: calc(100dvh - 80px);
    width: 100vw;
    transform: translateX(-1000px);
    z-index: 114;
    transition: all ease 500ms;
    overflow: scroll;
    background-color: white;

    .nav-menu {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 100%;
      align-items: center;
      padding-bottom: 0%;
      justify-content: center;

      .mobile-menu-list-item {
        display: flex;
        height: 80px;
        min-height: 40px;
        width: 100%;
        justify-content: flex-start;
        align-items: center;

        /* background-color: #027B00; */
        /* border-bottom: rgb(219, 219, 219) 1px solid; */
        .mobile-nav-link {
          display: flex;
          height: 100%;
          width: 100%;
          justify-content: center;
          align-items: center;
          /* background-color: #C14448; */
          text-decoration: none;
          color: var(--clr-dark);
          font-size: 1.5rem;
          font-weight: 400;
        }
      }
    }
  }

  #mobileLinks.active {
    background-color: #ffffff;
    transform: translateX(0px);
  }
}

@media (max-width: 478px) {
  .font-display-medium {
    font-family: "belleza";
    font-size: 2.5rem;
    line-height: 110%;
    font-weight: 600;
  }

  .font-title-regular {
    font-size: 1.8rem;
  }

  .logo-y {
    font-size: 2rem !important;
  }

  .hero-content-wrapper {
    display: flex;
    flex-direction: column;
    width: 100% !important;
    gap: 1rem;

    .generic-cta {
      width: 100%;
      display: flex;
      justify-content: center;
    }

  }

  .general-container {
    padding: 0 3rem !important;
  }

  .wrapper-two-halves-row {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    gap: 2rem;

    .wrapper-two-halves-row-img {
      width: 100%;
      min-height: 320px;
      overflow: hidden;
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 1rem;

      img {
        width: 100%;
        height: 100%;
        position: absolute;
        object-fit: cover;
      }
    }

    .half-content-wrapper {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;

      .generic-cta {
        text-decoration: none;
        color: white;
        background-color: var(--color-red-500);
        padding: 0.75rem 1rem;
        border-radius: 0.5rem;
        overflow: hidden;
        align-self: flex-start;
        width: 100%;
        display: flex;
        justify-content: center;
      }
    }
  }

  .articulos-perso-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    margin: auto;
    max-width: 1140px;
    padding: 4rem 0 2rem 0;

    h3 {
      text-align: center;
    }

    .home-articulos-content-wrap {
      display: flex;
      align-items: center;
      flex-direction: column;
      gap: 1rem;

      .home-articulos-img {
        max-width: 480px;
        width: 100%;

        img {
          width: 100%;
        }
      }

      .home-articulos-text {
        padding: 0rem;
        width: 100%;
      }
    }
  }

  .home-products-wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;

    .home-product-card-wrap {
      width: 100% !important;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;


      .home-product-img {
        width: 100%;
        max-height: 320px;
        overflow: hidden;
        border-radius: 1rem;

        img {
          width: 100%;
        }
      }
    }
  }

  .form-section {
    width: 100%;

    .form-container {
      h3 {
        color: var(--color-neutral-600);
      }

      width: 100%;
      max-width: 960px;
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: auto;
      gap: 2.5rem;
      padding: 2.5rem 2rem;

      h3,
      p {
        text-align: center;
      }

      .form-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;

        .form-img {
          max-width: 480px;

          img {
            width: 100%;
          }
        }

        .contact-form {
          width: 100%;
        }
      }
    }
  }

  .form-group-container {
    display: grid;
    gap: 1rem;
    margin-top: 0;
  }


  /*---FOOTER*/

  .footer-section {
    width: 100%;
    background-color: var(--color-footer-500);

    .footer-container {
      width: 100%;
      max-width: 1280px;
      margin: auto;
      padding: 2.5rem 2rem;

      .footer-wrapper {
        width: 100%;

        .footer-top-wrapper {
          display: flex;
          flex-direction: column;
          align-content: flex-start;
          justify-content: center;
          color: white;
          gap: 2rem;

          .footer-brand-wrap {
            width: 100%;
            display: flex;
            align-items: center;

            .footer-brand {
              width: 100%;
              max-width: 80px;
            }

            img {
              max-width: 80px;
            }
          }

          .footer-info-wrapper {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 1rem;

            a {
              text-decoration: none;
              color: white;
              align-self: flex-start;
            }

            div {
              display: flex;
              gap: 2rem;

              i {
                font-size: 1.5rem;
              }
            }
          }
        }
      }
    }

    .footer-bottom-wrapper {
      padding: 1rem 2rem;
      color: white;
      background-color: var(--color-footer-600);
      text-align: center;
    }
  }

  .contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;

    h2 {
      text-align: center;
    }
  }

  .contact-wrapper {
    display: flex;
    gap: 2rem;
    width: 100%;
    margin: auto;
    padding: 4rem;
    justify-content: center;

    .contact-img {
      display: none;
      width: 50%;
      display: flex;
      align-items: center;
      justify-content: center;

      img {
        height: 280px;
        display: none;
      }
    }

    .contact-content {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      justify-content: center;
      width: 100%;
    }
  }


  /*--WHATS CTA*/
  .whatsapp-cta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: fit-content;
    position: fixed;
    z-index: 50;
    /* margin-right: 5%;
  margin-left: auto;
  top: 85%; */
    bottom: 20%;
    right: 10%;
    border: solid 1px var(--color-neutral-200);
    text-decoration: none;
    color: var(--color-neutral-500);
    background-color: white;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 1rem;

    i {
      font-size: 1.5rem;
      color: green;
    }

    p {
      display: none;
    }
  }

  /*Banner prueba*/
  .banner-prueba {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    font-size: 1.2rem;
    width: 100%;
    opacity: 0.5;
  }

  .reverse-column {
    flex-direction: column-reverse;
  }
}

/*INTERSECTION OBSERVER*/

/* Base hidden state */
.reveal {
  opacity: 0;
  filter: blur(0);
  transform: translateY(30px);
  transition:
    opacity 0.5s ease,
    filter 0.5s ease,
    transform 0.5s ease;
  will-change: opacity, filter, transform;
}

/* Revealed state */
.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}