.content-banner-marquee {
  overflow: hidden;
  background-color: var(--black);
  padding: 0.5rem 0;
  padding-bottom: 0.7rem;
  position: relative;
}

.content-banner-marquee .wrapper-marquee {
  display: flex;
  white-space: nowrap;
  position: relative;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.content-banner-marquee .wrapper-marquee h3 {
  margin: 0;
  padding: 0 0.5rem;
  color: var(--sky-blue);
  font-size: 0.8rem;
  line-height: 1;
  display: inline-block;
}

.content-banner-marquee .wrapper-marquee h3 span {
  color: white;
}

.footer-desktop-view {
  display: none;
}
.footer-mobile-view {
  display: block;
}

@media only screen and (min-width: 768px) {
  .footer-desktop-view {
    display: flex; /* O el display que corresponda, en este caso 'flex' */
  }
  .footer-mobile-view {
    display: none;
  }
}

/* Estilos Generales del Footer */
footer .content-footer {
  padding: 2rem 1rem;
  background-color: var(--sky-blue);
}

footer .content-footer .content-image {
  margin-bottom: 2.5rem;
}

footer .content-footer .content-image img {
  width: 120px;
  display: block;
}

/* Estilos del Formulario */
footer .content-footer .cotent-form .title-form {
  margin-bottom: 1.5rem;
}

footer .content-footer .cotent-form .title-form h2 {
  margin: 0;
}

footer .content-footer .cotent-form .title-form h3 {
  margin: 0;
  font-size: 16px;
  padding-left: 13px;
}

footer .content-footer .cotent-form .content-input {
  margin-bottom: 0.625rem;
}

footer .content-footer .cotent-form .content-input p {
  margin: 0;
}

footer .content-footer .cotent-form .content-input input {
  height: 42px;
  padding: 0 0.5rem;
  color: var(--black);
  font-size: 16px;
  border-radius: 8px;
  font-family: var(--font-medium);
  border: 2px solid var(--black);
  width: 100%;
  box-sizing: border-box;
}

footer .content-footer .cotent-form .content-input input::placeholder {
  font-size: 14px;
  font-family: var(--font-medium);
  color: var(--black);
}

footer .content-footer .cotent-form .content-action {
  margin-top: 1.5rem;
}

footer .content-footer .cotent-form .content-action > p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0;
}

footer .content-footer .cotent-form .content-action > p input[type="submit"] {
  cursor: pointer;
  border: 2px solid var(--black);
  background-color: var(--yellow);
  text-transform: uppercase;
  padding: 0.8rem 1.5em;
  border-radius: 10px;
  font-size: 18px;
  font-family: var(--font-medium);
  position: relative;
}

footer .content-footer .cotent-form .content-action > p input[type="submit"] img {
  position: absolute;
  right: -0.5rem;
  bottom: -1rem;
  width: 23px;
}

/* Estilos de Información de Contacto */
footer .content-footer .content-info .wrap-wsp {
  margin: 2rem 0 0.25rem;
  display: flex;
  gap: 5px;
  align-items: center;
}

footer .content-footer .content-info .wrap-wsp img {
  width: 32px;
}

footer .content-footer .content-info .wrap-wsp a {
  color: white;
  text-decoration: none;
  font-size: 36px;
}

footer .content-footer .content-info .wrap-email a {
  font-size: 20px;
  color: white;
  text-decoration: none;
}

footer .content-footer .content-info .wrap-row {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}

footer .content-footer .content-info .wrap-row .text p {
  margin: 0;
  font-size: 28px;
}

footer .content-footer .content-info .wrap-row .text p span {
  color: white;
  line-height: 1;
  display: inline;
  position: relative;
  z-index: 1;
  background-color: var(--black);
  padding: 0 5px;
}

footer .content-footer .content-info .wrap-row .rrss ul {
  padding-top: 5px;
  display: flex;
  gap: 15px;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
}

footer .content-footer .content-info .wrap-row .rrss ul li a img {
  width: 36px;
  display: block;
}

/* Estilos de Dirección */
footer .content-footer .content-address p {
  line-height: 1.4;
  font-size: 13px;
  color: var(--black);
}

/* Media Query para 768px (Tablet/Desktop) */
@media only screen and (min-width: 768px) {
  /* Aquí usamos la clase que definimos para la vista de escritorio */
  .footer-desktop-view {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }

  .footer-desktop-view .footer-left {
    width: 100%;
    max-width: 54%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer-desktop-view .footer-left .content-image img {
    width: 150px;
  }

  .footer-desktop-view .footer-left .content-info .wrap-email {
    margin-bottom: 3rem;
  }

  .footer-desktop-view .footer-left .content-info .legal p {
    font-size: 14px;
  }

  .footer-desktop-view .footer-left .content-info .legal .link {
    gap: 10px;
    display: flex;
    flex-direction: column;
  }

  .footer-desktop-view .footer-left .content-info .legal .link a {
    color: white;
  }

  .footer-desktop-view .footer-right {
    width: 100%;
    max-width: 44%;
  }

  .footer-desktop-view .footer-right .cotent-form .title-form h2 {
    margin-left: -15px;
    font-family: var(--font-semiBold);
  }

  .footer-desktop-view .footer-right .cotent-form .title-form h3 {
    padding: 0;
    font-family: var(--font-semiBold);
  }

  .footer-desktop-view .footer-right .cotent-form .wrap-row {
    margin: 2rem 0 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .footer-desktop-view .footer-right .cotent-form .wrap-row .rrss ul {
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
    list-style: none;
    gap: 10px;
  }

  .footer-desktop-view .footer-right .cotent-form .wrap-row .text p {
    font-size: 22px;
    margin: 0;
  }
}

/* Media Query para 960px */
@media only screen and (min-width: 960px) {
  footer .content-footer {
    padding: 3rem 2rem;
  }

  .footer-desktop-view .footer-left {
    max-width: 50%;
  }

  .footer-desktop-view .footer-left .content-info .wrap-wsp {
    margin: 0 0 0.25rem;
  }

  .footer-desktop-view .footer-left .content-info .wrap-wsp a {
    font-size: 40px;
  }

  .footer-desktop-view .footer-left .content-info .wrap-email {
    margin: 0 0 3rem;
  }

  .footer-desktop-view .footer-left .content-info .wrap-email a {
    font-size: 22px;
  }

  .footer-desktop-view .footer-left .content-info .legal p {
    margin: 0 0 1rem;
  }

  .footer-desktop-view .footer-left .content-info .legal .link {
    flex-direction: row;
  }

  .footer-desktop-view .footer-left .content-info .legal .link a {
    font-size: 14px;
  }

  .footer-desktop-view .footer-right {
    max-width: 50%;
  }

  .footer-desktop-view .footer-right .cotent-form {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .footer-desktop-view .footer-right .cotent-form .title-form {
    flex-grow: 0;
  }
  .footer-desktop-view .footer-right .cotent-form .body-form {
    flex-grow: 1;
  }
  .footer-desktop-view .footer-right .cotent-form .wrap-row {
    flex-grow: 0;
  }

  .footer-desktop-view .footer-right .cotent-form .title-form h2 {
    font-size: 32px;
    margin-bottom: 0.3rem;
  }

  .footer-desktop-view .footer-right .cotent-form .title-form h3 {
    font-size: 18px;
  }

  .footer-desktop-view .footer-right .cotent-form .body-form .inputs {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-desktop-view .footer-right .cotent-form .body-form .inputs .content-input {
    width: 49%;
  }

  .footer-desktop-view .footer-right .cotent-form .body-form .content-action {
    margin-top: 1rem;
  }

  .footer-desktop-view .footer-right .cotent-form .body-form .content-action button {
    font-size: 15px;
    padding: 0.5rem 0;
    width: 215px;
  }

  .footer-desktop-view .footer-right .cotent-form .body-form .content-action button img {
    width: 18px;
  }

  .footer-desktop-view .footer-right .cotent-form .wrap-row {
    width: 100%;
  }

  .footer-desktop-view .footer-right .cotent-form .wrap-row .rrss ul li a img {
    width: 45px;
  }

  .footer-desktop-view .footer-right .cotent-form .wrap-row .text p {
    font-size: 30px;
  }
}

/* Media Query para 1300px */
@media only screen and (min-width: 1300px) {
  .content-banner-marquee {
    padding: 0.8rem 0;
    padding-bottom: 0.9rem;
  }
  .content-banner-marquee .wrapper-marquee h3 {
    font-size: 1.2rem;
  }
  footer {
    background-color: var(--sky-blue);
  }
  footer .content-footer {
    padding: 4rem 0;
    margin: 0 auto;
    max-width: 1280px;
  }
  .footer-desktop-view .footer-left {
    max-width: 47%;
  }

  .footer-desktop-view .footer-left .content-info .wrap-wsp {
    gap: 10px;
    margin-bottom: 0.5rem;
  }
  .footer-desktop-view .footer-left .content-info .wrap-wsp img {
    width: 45px;
  }

  .footer-desktop-view .footer-left .content-info .wrap-wsp a {
    line-height: 1;
    font-size: 48px;
  }
  .footer-desktop-view .footer-left .content-info .wrap-email a {
    font-size: 28px;
  }
  .footer-desktop-view .footer-left .content-info .legal p {
    font-size: 16px;
  }
  .footer-desktop-view .footer-left .content-info .legal .link a {
    font-size: 17px;
  }

  .footer-desktop-view .footer-right {
    max-width: 53%;
  }
  .footer-desktop-view .footer-right .cotent-form .body-form .content-action {
    margin-top: 0.8rem;
  }

  .footer-desktop-view .footer-right .cotent-form .body-form .content-action button {
    font-size: 18px;
    width: 280px;
  }

  .footer-desktop-view .footer-right .cotent-form .content-input {
    margin-bottom: 0.826rem;
  }

  .footer-desktop-view .footer-right .cotent-form .content-input input {
    font-size: 17px;
  }
  .footer-desktop-view .footer-right .cotent-form .content-input input::placeholder {
    font-size: 17px;
  }
  .footer-desktop-view .footer-right .cotent-form .wrap-row {
    gap: 170px;
    justify-content: flex-start;
  }

  .footer-desktop-view .footer-right .cotent-form .wrap-row .rrss ul {
    gap: 15px;
  }

  .footer-desktop-view .footer-right .cotent-form .wrap-row .rrss ul li a img {
    width: 50px;
  }

  .footer-desktop-view .footer-right .cotent-form .wrap-row .text p {
    font-size: 32px;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
