@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

html,
body {
  width: 100%;
  font-family: "Poppins", sans-serif;
  color: #222;
  position: relative;
  min-height: 100vh; /* Asegura que el cuerpo ocupe al menos toda la altura de la ventana del navegador */
  margin-bottom: 0px; /* Ajusta según la altura del footer */
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:before,
:after {
  box-sizing: border-box;
}
.error {
  border: 1px solid red;
}

.error-message {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

/*=============== whatsapp ===============*/
.header0 {
  display: flex;
  justify-content: flex-end; /* Alinea los elementos al final (derecha) */
  align-items: center; /* Centra verticalmente */
  height: 30px;
  background-color: dimgray;
  padding: 0 20px; /* Ajusta el espaciado interior según necesites */
}

.header-item {
  display: flex;
  align-items: center;
}

.whatsapp-text {
  margin-right: 5px; /* Espacio entre el texto y el ícono */
  color: white; /* Color del texto */
  font-weight: bold;
  text-decoration: none; /* Quita el subrayado del enlace */
}

.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
}

.whatsapp-icon {
  width: auto; /* Permite que la imagen mantenga su proporción */
  height: auto; /* Permite que la imagen mantenga su proporción */
  max-width: 240px; /* Ajusta según el tamaño que necesites */
  max-height: 100px; /* Ajusta según el tamaño que necesites */
  /* Remover el borde redondeado para mantener la forma original */
  border-radius: 0;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 30px;
    right: 30px;
  }
  .whatsapp-icon {
    max-width: 160px;
    max-height: 60px;
  }
}

@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-icon {
    max-width: 140px;
    max-height: 50px;
  }
}

/*=============== whatsapp END ===============*/

/*=============== HEADER ===============*/

.header-container {
  max-width: 1200px;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.v-center {
  align-items: center;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}

.header {
  display: block;
  width: 100%;
  position: relative;
  z-index: 99;
  padding: 15px;
  position: -webkit-sticky; /* Para navegadores basados en WebKit */
  position: sticky; /* Para otros navegadores */
  top: 0;
  z-index: 1000; /* Ajusta el índice z para que esté por encima de otros elementos si es necesario */
  background-color: whitesmoke;
}

.header .item-left {
  flex: 0 0 auto;
  margin-right: 150px; /* Ajusta el margen según sea necesario */
  text-align: center; /* Centra el contenido */
}

.header .logo {
  max-width: 100px; /* Ajusta el ancho máximo del logo según sea necesario */
  margin: 0 auto; /* Centra el logo horizontalmente */
  text-align: center; /* Centra el contenido dentro del div */
}

.header .logo img {
  max-width: 100%; /* Ajusta el tamaño máximo del logo */
  height: auto; /* Permite que la altura se ajuste automáticamente */
}

.header .item-center {
  flex: 0 0 66%;
}
.header .item-right {
  flex: 0 0 17%;
  display: flex;
  justify-content: flex-end;
}
.header .item-right a {
  text-decoration: none;
  font-size: 16px;
  color: #555555;
  display: inline-block;
  margin-left: 10px;
  transition: color 0.3s ease;
}
.header .menu > ul > li {
  display: inline-block;
  line-height: 50px;
  margin-left: 25px;
}
.header .menu > ul > li > a {
  font-size: 15px;
  font-weight: 500;
  color: #000000;
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #ffffff;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 20px 30px;
  transition: all 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
}

.header .menu > ul > li .sub-menu > ul > li {
  line-height: 1;
}
.header .menu > ul > li .sub-menu > ul > li > a {
  display: inline-block;
  padding: 10px 0;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
}
.header .menu > ul > li .single-column-menu {
  min-width: 280px;
  max-width: 350px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li {
  line-height: 1;
  display: block;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
  padding: 10px 0;
  display: inline-block;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
}
.header .menu > ul > li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 15px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
  flex: 0 0 25%;
  padding: 0 5px;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item .title {
  font-size: 16px;
  color: #003366;
  font-weight: 500;
  line-height: 1;
  padding: 10px 0;
}
.header
  .menu
  > ul
  > li
  .sub-menu.mega-menu-column-4
  > .list-item.text-center
  .title {
  text-align: center;
}
.header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  margin-top: 10px;
}
.header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a:hover,
.header .menu > ul > li .sub-menu > ul > li > a:hover,
.header .item-right a:hover,
.header .menu > ul > li:hover > a {
  color: #003366;
}
/*Ocultar el menu movil*/
.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}
.destacado-img {
  height: 200px;
}
/*=============== BREAKPOINTS ===============*/
@media (min-width: 768px) {
  .header .menu > ul > li.menu-item-has-children:hover .sub-menu {
    margin-top: 0;
    visibility: visible;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .header .item-center {
    order: 3;
    flex: 0 0 100%;
  }

  .header .item-left,
  .header .item-right {
    flex: 0 0 auto;
  }
  .v-center {
    justify-content: space-between;
  }

  /*aca transforma el menu movil con las medidas*/
  .header .mobile-menu-trigger {
    display: flex;
    height: 30px;
    width: 30px;
    margin-left: 15px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
  }
  .header .mobile-menu-trigger span {
    display: block;
    height: 2px;
    background-color: #333333;
    width: 24px;
    position: relative;
  }
  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333333;
  }
  .header .mobile-menu-trigger span:before {
    top: -6px;
  }
  .header .mobile-menu-trigger span:after {
    top: 6px;
  }
  .header .item-right {
    align-items: center;
  }
  .header .menu {
    position: fixed;
    width: 320px;
    background-color: #ffffff;
    left: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    transform: translate(-100%);
    transition: all 0.5s ease;
    z-index: 1099;
  }
  .header .menu.active {
    transform: translate(0%);
  }
  .header .menu > ul > li {
    line-height: 1;
    margin: 0;
    display: block;
  }
  .header .menu > ul > li > a {
    line-height: 50px;
    height: 50px;
    padding: 0 50px 0 15px;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header .menu > ul > li > a i {
    position: absolute;
    height: 50px;
    width: 50px;
    top: 0;
    right: 0;
    text-align: center;
    line-height: 50px;
    transform: rotate(-90deg);
  }
  .header .menu .mobile-menu-head {
    display: flex;
    height: 50px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 501;
    position: sticky;
    background-color: #ffffff;
    top: 0;
  }
  .header .menu .mobile-menu-head .go-back {
    height: 50px;
    width: 50px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 16px;
    display: none;
  }
  .header .menu .mobile-menu-head.active .go-back {
    display: block;
  }
  .header .menu .mobile-menu-head .current-menu-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
  }
  .header .menu .mobile-menu-head .mobile-menu-close {
    height: 50px;
    width: 50px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    line-height: 50px;
    text-align: center;
    color: #000000;
    font-size: 25px;
  }
  .header .menu .menu-main {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
  }
  .header .menu > ul > li .sub-menu.mega-menu,
  .header .menu > ul > li .sub-menu {
    visibility: visible;
    opacity: 1;
    position: absolute;
    box-shadow: none;
    margin: 0;
    padding: 15px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 65px;
    max-width: none;
    min-width: auto;
    display: none;
    transform: translateX(0%);
    overflow-y: auto;
  }
  .header .menu > ul > li .sub-menu.active {
    display: block;
  }

  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item img {
    margin-top: 0;
  }
  .header
    .menu
    > ul
    > li
    .sub-menu.mega-menu-column-4
    > .list-item.text-center
    .title {
    margin-bottom: 20px;
  }
  .header
    .menu
    > ul
    > li
    .sub-menu.mega-menu-column-4
    > .list-item.text-center:last-child
    .title {
    margin-bottom: 0px;
  }
  .header .menu > ul > li .sub-menu.mega-menu-column-4 > .list-item {
    flex: 0 0 100%;
    padding: 0px;
  }
  .header .menu > ul > li .sub-menu > ul > li > a,
  .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul > li > a {
    display: block;
  }
  .header .menu > ul > li .sub-menu.mega-menu > .list-item > ul {
    margin-bottom: 15px;
  }
  .menu-overlay {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease;
  }
  .menu-overlay.active {
    visibility: visible;
    opacity: 1;
  }
  @keyframes slideLeft {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0%);
    }
  }
  @keyframes slideRight {
    0% {
      opacity: 1;
      transform: translateX(0%);
    }
    100% {
      opacity: 0;
      transform: translateX(100%);
    }
  }
}
/*=============== HEADER END ===============*/

/*=============== SLIDER SHOW ===============*/
/*=============== SLIDER SHOW ===============*/
.slider-show {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 90vh; /* Ajuste para ocupar el alto completo del viewport */
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%; /* Ajuste para ocupar el alto completo del viewport */
}

.slide-item {
  min-width: 100%;
  height: 100vh; /* Ajuste para ocupar el alto completo del viewport */
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 10%; /* Ajuste para alinear el contenido a la izquierda */
  transform: translateY(-50%); /* Mantiene el texto centrado verticalmente */
  text-align: left; /* Justifica el texto a la izquierda */
  width: auto; /* Ajuste para ocupar el ancho necesario */
}

.slide-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo negro con 50% de opacidad */
  padding: 10px 20px; /* Ajusta el padding según sea necesario */
  display: inline-block; /* Para que el fondo se ajuste al texto */
}

.slide-button {
  padding: 10px 20px;
  background-color: rgba(0, 31, 63, 0.8); /* Azul marino con 80% de opacidad */
  color: #fff;
  border: none;
  border-radius: 20px; /* Borde redondeado */
  cursor: pointer;
  font-size: 1rem;
  display: inline-block; /* Mantiene el botón en línea con el texto */
}

.slide-button:hover {
  background-color: #003366; /* Cambio de color en hover */
}

.navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.nav-arrow {
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  padding: 10px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.3s ease;
}

.nav-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

/*=============== BREAKPOINTS ===============*/
@media (max-width: 768px) {
  .slides {
    height: auto; /* Cambia la altura a automático para ajustarse al contenido */
  }

  .slide-item {
    min-height: 50vh; /* Ajusta la altura mínima de cada slide en dispositivos móviles */
  }

  .slide-content {
    top: 70%; /* Ajusta la posición del contenido en los slides */
    left: 5%; /* Ajusta el margen izquierdo para dispositivos móviles */
    transform: translateY(-50%); /* Mantiene el texto centrado verticalmente */
  }

  .slide-content h1 {
    font-size: 1.5rem; /* Reduce el tamaño del título en dispositivos móviles */
  }

  .slide-button {
    padding: 8px 16px; /* Ajusta el padding del botón */
    font-size: 0.9rem; /* Reduce el tamaño del texto del botón */
  }

  .navigation {
    bottom: 10px; /* Ajusta la posición de los controles de navegación en dispositivos móviles */
  }
}
/*=============== SLIDER CSS END ===============*/

/*=============== SLIDER CSS END ===============*/

/*=============== SWIPPER CORTINA PRODUCTOS ===============*/
.swiper {
  width: 100%;
  padding: 20 0px 0 50px 0;
}
.swiper-slide {
  width: 300px;
  height: 500%;
  background-color: #323232;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  padding: 40px;
  text-align: center;
}
.icons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.icons i {
  font-size: 20px;
  color: #ffb900;
}
.icons img {
  width: 120px;
}
.product-content {
  display: flex;
  justify-content: space-between;
}
.product-txt {
  flex-basis: 50%;
  text-align: center;
}
.product-txt span {
  font-size: 25px;
  color: #ffb900;
  font-weight: bold;
}
.product-txt h3 {
  font-size: 20px;
  color: #ffffff;
  text-transform: uppercase;
}
.product-txt p {
  font-size: 10px;
  color: #c4c4c4;
}
.product img {
  text-align: center;
  align-content: center;
}
.product-img img {
  width: 150px;
  height: 230px;
}
.btn-1 {
  display: inline-block;
  padding: 10px 55px;
  border: 1px solid #ffb900;
  border-radius: 25px;
  background-color: #ffb900;
  color: #fff;
  margin-top: 40px;
  cursor: pointer;
}
.btn-1:hover {
  background-color: #ffe600;
}
/*
.btn-1:hover a {
  font-size: 17px;
} */
.btn-1 a {
  font-size: 15px;
  font-weight: bold;
  color: #222;
  text-decoration-line: none;
}
/*=============== SWIPPER PRODUCTOS CORTINA END ===============*/

/*=============== PRODUCTO FICHA TECNICA ===============*/
/*=============== zoom ===============*/
.zoom-container {
  position: relative;
  overflow: hidden;
  cursor: zoom-in; /* Cambiar el cursor a lupa */
}

.zoom-container img {
  display: block;
  width: 100%;
  transition: transform 0.3s ease;
}

.zoom-container:hover img {
  transform: scale(1.5); /* Aumentar el tamaño de la imagen al pasar el ratón */
}
/*=============== zoom end===============*/
.product-gallery {
  display: flex;
  flex-direction: row; /* Mostrar miniaturas al lado izquierdo en pantallas grandes */
  align-content: center;
}

.main-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image img {
  max-width: 100%;
  height: 450px;
}

.thumbnails {
  display: flex;
  flex-direction: column; /* Mostrar miniaturas en vertical en pantallas grandes */
  margin-right: 0px;
  order: -1; /* Colocar las miniaturas antes de la imagen principal */
}

.thumbnail {
  width: 70px;
  height: 90px;
  margin-bottom: 10px;
  cursor: pointer;
}

.thumbnail:hover {
  opacity: 0.7;
}

/*=============== BREAKPOINTS ===============*/
@media (max-width: 768px) {
  .btn-1 {
    display: inline-block;
    padding: 10px 55px;
    border: 1px solid #ffb900;
    border-radius: 25px;
    background-color: #ffb900;
    color: #fff;
    margin-top: 40px;
  }
  .btn-1:hover {
    background-color: #ffe600;
  }
  .btn-1 a {
    font-size: 15px;
    font-weight: bold;
    color: #222;
    text-decoration-line: none;
  }

  .product-gallery {
    flex-direction: column; /* Cambiar a columna en dispositivos móviles */
  }

  .main-image img {
    max-height: 400px;
    width: 100%;
  }

  .thumbnails {
    flex-direction: row; /* Cambiar a fila en móviles */
    margin-top: 10px;
    margin-right: 0;
    order: 1; /* Mostrar miniaturas después de la imagen principal en móviles */
    justify-content: center;
  }

  .thumbnail {
    height: 80px;
    width: 80px;
    margin-bottom: 0;
    margin-right: 5px;
    margin-left: 5px;
  }
}

@media (max-width: 576px) {
  .main-image img {
    max-height: 300px; /* Reducir la altura de la imagen principal en dispositivos más pequeños */
  }

  .thumbnail {
    height: 70px;
    width: 70px;
    margin-right: 5px;
    margin-left: 5px;
  }
}
/*=============== BREAKPOINTS END ===============*/

/*=============== PRODUCTO FICHA TECNICA ===============*/
.container-tittle {
  font-size: 40px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  width: 100%;
  padding: 30px;
  background-color: #eee;
  margin-bottom: 50px;
  color: #222;
}
.main-principal {
  padding: 30px;
  display: flex;
  gap: 30px;
  margin-bottom: 80px;
}
.container-img {
  padding-bottom: 50px;
}
.container-info-product {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.container-name {
  padding-bottom: 20px;
  border-bottom: 1px solid #e4e4e4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container-name span {
  font-size: 24px;
  font-weight: 300;
}
.container-details-product {
  padding: 30px 0;
}
.form-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.form-group label {
  width: 100px;
  color: #222;
  font-weight: 700;
}
.container-cotize {
  display: flex;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e4e4e4;
}
.btn-primary {
  border: none;
  background-color: #252525;
  padding: 15px;
  color: #f7f7f7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-weight: 700;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: #003366;
}
.container-description,
.container-additional-information {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e4e4e4;
  padding: 10px 0;
}
.tittle-description,
.tittle-additional-information {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.tittle-description h4,
.tittle-additional-information h4 {
  font-weight: 300;
  color: #666;
  font-size: 14px;
}
.text-description {
  font-size: 16px;
  color: #252525;
  line-height: 22px;
  margin-top: 25px;
}
.text-additional-information {
  font-size: 13px;
  color: #252525;
  line-height: 22px;
  margin-top: 25px;
}
.instagram-icon {
  max-width: 50px;
}
.instagram-icon:hover {
  opacity: 0.5;
}
.pdf-icon {
  width: 45px;
  height: auto;
  cursor: pointer;
}
.pdf-icon:hover {
  opacity: 0.5;
}
/*=============== PRODUCTO FICHA TECNICA  END ===============*/

/*=============== FEATURES ===============*/

body {
  font-family: Arial, sans-serif;
}

.features-section2 {
  padding: 50px 0;
  background-color: #fff;
}
.features-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.feature-card {
  margin-bottom: 30px;
}

.card-content {
  padding: 20px;
  background-color: transparent; /* Fondo transparente */
  border: none; /* Sin borde */
  box-shadow: none; /* Sin sombra */
  transition: transform 0.3s;
}

.card-content i {
  font-size: 80px; /* Tamaño de los iconos aumentado */
  color: #003366;
  margin-bottom: 15px;
}

.card-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.card-content p {
  font-size: 16px;
  color: #666;
}

.card-content:hover {
  transform: translateY(-10px);
}

@media (max-width: 768px) {
  .feature-card {
    text-align: center;
  }
}

/*=============== FEATURES end ===============*/

/*=============== FORMULARIO DE CONTACTO ===============*/
.content-contact-form {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5em;
}

.logo-form {
  text-align: center;
  font-size: 3em;
}

.logo-form span {
  color: #003366;
}

.contact-wrapper {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
}

.contact-wrapper > * {
  padding: 1em;
}

.contact-form {
  background: #fff;
}

.contact-form label {
  font-weight: bold;
  color: #003366;
}
.contact-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-form form .block {
  grid-column: 1 / 3;
}

.contact-form form p {
  margin: 0;
  padding: 1em;
}

.contact-form form button,
.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 0.7em;
  border: none;
  background: none;
  border-bottom: 1px solid #003366;
  outline: 0;
}

.contact-form form button {
  background-color: #003366;
  border: 0;
  transform: uppercase;
  padding: 1em;
}

.contact-form form button:hover,
.contact-form form button:focus {
  background: #003366;
  font-weight: bold;
  font-size: medium;
  color: #fff;
  transition: background-color 1s ease-out;
  outline: 0;
}
.contact-info {
  background: #003366;
}
.contact-info h4,
.contact-info ul,
.contact-info p,
.contact-form button {
  text-align: center;
  margin: 0 0 1rem 0;
  color: #fff;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info ul li {
  padding: 0.3em;
}

/*=============== BREAKPOINTS ===============*/
@media (min-width: 768px) {
  .contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
  .contact-info h4,
  .contact-info ul,
  .contact-form p {
    padding: 1em;
  }
}
/*=============== FORMULARIO DE CONTACTO END ===============*/

.floating-image {
  position: fixed;
  bottom: 20px; /* Ajusta la posición desde abajo según tus necesidades */
  right: 20px; /* Ajusta la posición desde la derecha según tus necesidades */
  width: 150px; /* Ajusta el tamaño de la imagen según tus necesidades */
  height: auto;
  z-index: 1000; /* Asegúrate de que esté por encima de otros elementos */
}

.mensaje-centralizado {
  text-align: center; /* Centrar el texto horizontalmente */
  margin-bottom: 20px; /* Espacio inferior para separar del formulario */
  padding: 20px; /* Espaciado interno para dar aire al texto */
  background-color: #f0f0f0; /* Color de fondo del recuadro */
  border: 1px solid #ccc; /* Borde del recuadro */
  border-radius: 8px; /* Borde redondeado */
}

/*=============== FOOTER ===============*/
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

.footer-container {
  max-width: 960px;
  margin: 0 auto;
}

p {
  margin: 0;
}
/*=============== FOOTER END ===============*/
