* {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
}

h1 {
  font-size: 3.5em;
}

h2 {
  font-size: 2.7em;
}

h3 {
  font-size: 2em;
}

p {
  font-size: 1.25em;
  color: white;
}

ul {
  list-style: none;
}

li {
  font-size: 1.25em;
}

button {
  font-size: 1em;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 10px;
  border: 2px solid rgba(0, 0, 0, 5);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 5);
  color: white;
  background-color: blueviolet;
}

button:hover {
  background-color: rgb(101, 33, 165);
}

.container {
  max-width: 1400px;
  margin: auto;
}

.color-titulo {
  color: blueviolet;
}

header {
  /*background-color: rgb(245, 245, 245);*/
  background-color: white;
  z-index: 10;
}

header .logo {
  margin: 0;
  padding: 25px 30px;
  font-weight: bold;
  color: blueviolet;
  font-size: 1.6em;
}

header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

header nav {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 25px;

}

header a {
  padding: 5px 12px;
  text-decoration: none;
  font-weight: bold;
  color: black;
}

header a.hover {
  color: blueviolet;
}

@media (min-width: 768px) {

  /*Uso de cookies*/
  #cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px;
    z-index: 1000;
    display: none;
  }

  .cookie-button {
    margin: 10px;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    border: none;
    cursor: pointer;
  }

  .cookie-button.reject {
    background-color: #f44336;
  }

  /*Estilo a id hero*/
  #hero {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 90vh;
    padding-top: 100px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;


  }

  #hero h1 {
    color: white;
  }

  #hero button {
    font-size: 1.75em;
  }

  /*estilo inicio*/
  #inicio p {
    color: black;
  }

  #inicio {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 90vh;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo2.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }

  #inicio p {
    color: white;
    text-align: center;
  }

  #inicio h2 {
    color: white;
  }


  #inicio .container {
    width: 90%;
    max-width: 800px;
  }

  #inicio .texto {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    border-radius: 10px;
  }

  /*estilo acerca*/

  #acerca {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    height: 90vh;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo3.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
  }

  #acerca p {
    color: white;
    text-align: center;
  }

  #acerca h2 {
    color: white;
  }


  #acerca .container {
    width: 90%;
    max-width: 800px;
  }

  #acerca .texto {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
  }

  #acerca li {
    font-size: 1.25em;
    text-align: left;
  }

  .carrusel-acerca {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .carrusel-content-acerca {
    display: flex;
    overflow: hidden;
  }

  .carta-container-acerca {
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    position: static;
  }

  .carta-acerca {
    width: 900px;
    /* Aumenta el ancho de la carta */
    margin: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: none;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    overflow: hidden;
  }

  .carta-acerca.active {
    display: block;
  }

  .titulo-carta-acerca h2 {
    text-align: center;
    margin-top: 20px;
  }

  .contenido-carta-acerca {
    padding: 10px;
  }

  .contenido-carta-acerca img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #ddd;
  }

  .contenido-carta-acerca ul {
    padding-left: 20px;
  }

  #prevBtn-acerca,
  #nextBtn-acerca {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 10px;
    transition: background 0.3s;
  }


  /* Header fijo */
  header {
    position: fixed;
    width: 100%;
  }

  header .container {
    flex-direction: row;
    justify-content: space-between;
  }

  header nav {
    position: relative;
    flex-direction: row;
    padding-bottom: 0;
    padding-right: 20px;
    z-index: 1000;
  }

  /* Secciones */
  #hero h1 {
    font-size: 3em;
  }

  /* Cartas en línea */
  #quienes-somos {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding-top: 120px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo4.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    margin-top: 80px;
    z-index: 1;
  }

  #quienes-somos h2,
  #quienes-somos p {
    color: white;
  }

  #quienes-somos .container {
    width: 90%;
    max-width: 1000px;
  }

  #inicio .container {
    width: 90%;
    max-width: 1000px;
  }

  #quienes-somos .texto {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
  }

  /* Estilos del carrusel */
  .carrusel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: auto;
    /* Para centrarlo en la sección */
  }

  /* Contenedor de las cartas (asegura que se mantenga alineado) */
  .carta-container {
    display: flex;
    justify-content: center;
    /* Centra las cartas dentro del contenedor */
    align-items: center;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    position: static;


  }

  /* Estilos de la carta */
  .carta {
    display: none;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
    /* Ajusta el tamaño para que se centre mejor */
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease-in-out;
    margin: 0;
    /* Centrar la carta */
  }

  .carta.active {
    z-index: 1;
    display: flex;
    justify-content: center;

  }

  /* Botones del carrusel */
  #prevBtn,
  #nextBtn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 10px;
    transition: background 0.3s;
  }

  #prevBtn:hover,
  #nextBtn:hover {
    background: rgba(255, 255, 255, 0.7);
    color: black;
  }


  /* ---- SECCIÓN TRABAJOS ---- */
  #trabajos-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo5.png");
    background-repeat: no-repeat;
    background-size: cover;
  }

  #trabajos-section .texto {
    background: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
  }

  #trabajos-section h3 {
    font-size: 2.5em;
    color: white;
    margin-bottom: 20px;
  }

  #trabajos-section h2 {
    font-size: 1.5em;
    color: white;
    margin-bottom: 20px;
  }

  #trabajos-section ul {
    text-align: left;
  }

  #trabajos-section li {
    text-align: left;
  }

  #trabajos-section p {
    text-align: justify;
  }

  .carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    position: relative;
  }

  .carousel-item {
    display: none;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    flex-direction: row;
    color: white;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: UTO;
    max-width: 500px;
  }

  .carousel-item.active {
    display: flex;
    align-items: center;
    /*transform: scale(1.1);*/
    /* Aumenta el tamaño */
    max-width: 100%;
    /* Ajuste de ancho máximo */
    padding: 30px;
    transition: transform 0.3s ease-in-out, max-width 0.3s ease-in-out;


  }

  .carousel-item img {
    width: 60%;
    object-fit: cover;
    height: 100%;
    border-radius: 8px;

  }

  .carousel-item.active .text-content {
    width: 200%;
    padding-left: 10px;
    border-left: 2px solid #ccc;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    max-width: 50%;
    word-wrap: break-word;

  }

  /* ---- BOTONES DE NAVEGACIÓN ---- */
  .carousel-nav,
  #prevBtn,
  #nextBtn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 10px;
    transition: background 0.3s;
  }

  .carousel-nav:hover,
  #prevBtn:hover,
  #nextBtn:hover {
    background: rgba(255, 255, 255, 0.7);
    color: black;
  }


  /*estilo footer*/
  footer {
    background-color: rgb(230, 230, 230);
  }

  footer p {
    margin: 0;
    padding: 12px;
    color: rgb(100, 100, 100);
  }

  footer .container {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  /* Estilos para el botón de WhatsApp */
  .whatsapp-btn {
    position: fixed;
    bottom: 20px;
    /* Se coloca a 20px del fondo */
    right: 20px;
    /* Se coloca a 20px del lado derecho */
    z-index: 1000;
    /* Asegura que se muestre por encima de otros elementos */
  }

  .whatsapp-btn a img {
    width: 60px;
    /* Tamaño del icono de WhatsApp */
    height: 60px;
    border-radius: 50%;
    /* Hace que el icono sea redondeado */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* Sombra para darle profundidad */
    transition: transform 0.3s ease-in-out;
    /* Efecto de transición */
  }

  .whatsapp-btn a img:hover {
    transform: scale(2.2);
    /* Aumenta ligeramente el tamaño del icono al pasar el ratón */
  }

  /* Estilos para el botón de facebook */
  .facebook-btn {
    position: fixed;
    bottom: 100px;
    /* Se coloca a 20px del fondo */
    right: 20px;
    /* Se coloca a 20px del lado derecho */
    z-index: 1000;
    /* Asegura que se muestre por encima de otros elementos */
  }

  .facebook-btn a img {
    width: 60px;
    /* Tamaño del icono de facebook */
    height: 60px;
    border-radius: 50%;
    /* Hace que el icono sea redondeado */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    /* Sombra para darle profundidad */
    transition: transform 0.3s ease-in-out;
    /* Efecto de transición */
  }

  .facebook-btn a img:hover {
    transform: scale(2.2);
    /* Aumenta ligeramente el tamaño del icono al pasar el ratón */
  }

/* Estilo nuestro equipo */
#nuestro-equipo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 90px 10px;
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo9.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 1;
}

#nuestro-equipo h2 {
  color: white;
  margin-bottom: 20px; /* Espacio debajo del título */
}

/* Contenedor de imágenes */
#nuestro-equipo .contenedor-imagenes {
  display: flex;
  flex-wrap: wrap;
  /* Permite que las imágenes bajen de línea si no caben */
  justify-content: center;
  /* Centrar imágenes */
  gap: 10px;
  /* Espacio entre imágenes */
  width: 90%;
  max-width: 1200px;
}

/* Cada tarjeta ocupa 25% del ancho */
#nuestro-equipo .texto {
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 23%;
  /* Para que entren 4 por fila con margen */
  min-width: 200px;
}

/* Imágenes responsivas */
#nuestro-equipo .texto img {
  width: 100%;
  max-width: 180px;
  border-radius: 10px;
}

#nuestro-equipo .texto p {
  margin-top: 10px;
  font-weight: bold;
}

/* Responsive: En pantallas pequeñas, reducir a 2 por fila */
@media (max-width: 800px) {
  #nuestro-equipo .texto {
    width: 45%;
    /* 2 por fila */
  }
}

/**********/
/* Estilo ajustado para el carrusel */
.ne-texto {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1200px;
}

/* Agregar position: relative al contenedor del carrusel */
.ne-carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  margin: auto;
  max-width: 900px;
  position: relative;
  height: 500px; /* Ajuste para mantener proporción */
}

.ne-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.ne-carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.ne-carousel-item.active {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

.ne-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajuste para que las imágenes cubran todo el espacio */
  border-bottom: 2px solid #ddd;
}



#ne-prev-btn,
#ne-next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  border-radius: 100%;
}

#ne-prev-btn {
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 10px;
  transition: background 0.3s;
}

#ne-next-btn {
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 10px;
  transition: background 0.3s;
}

/**********/


  /* Estilo de la sección clientes */

  #clientes {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 90px 10px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo9.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
  }

  #clientes .container {
    display: flex;
    flex-direction: column;
    /* Para que los elementos estén en columna */
    align-items: center;
    /* Centrado horizontal */
    justify-content: center;
    /* Centrado vertical (si es necesario) */
    width: 100%;
    /* Asegura que el contenedor ocupe todo el ancho disponible */
    padding: 20px;
    /* Opcional: para agregar algo de espacio alrededor */
    box-sizing: border-box;
    /* Asegura que el padding no afecte el ancho total */
  }

  #clientes .texto {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 10px;
    margin-bottom: 30px;
    text-align: justify;
    width: 90%;
    max-width: 800px;
    padding: 20px;
    box-sizing: border-box;
  }

  #clientes h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2em;
  }

  .cliente-selector {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }

  .cliente-btn {
    cursor: pointer;
    padding: 12px 25px;
    margin: 10px;
    background-color: blueviolet;
    border: none;
    border-radius: 5px;
    color: white;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
  }

  .cliente-btn:hover {
    background-color: #ddd;
    color: black;
  }

  #carousel-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #carousel-image {
    position: relative;
    display: flex;
    justify-content: center;
  }

  #pie-texto {
    margin-top: 10px;
    /* Espacio entre la imagen y el texto */
    text-align: center;
    font-size: 1rem;
    color: white;
    /* Color del texto */
    opacity: 0;
    /* El pie de texto estará oculto inicialmente */
    transition: opacity 0.5s ease;
    /* Transición suave */
    font-size: 1.5em;
    text-align: justify;
  }


  button:hover {
    background-color: #ddd;
  }

  #prev-btn,
  #next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    border-radius: 100%;
  }

  #prev-btn {
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 10px;
    transition: background 0.3s;
  }

  #next-btn {
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 10px;
    transition: background 0.3s;
  }


  /* Estilo nuestros trabajos */
  #trabajos-section .carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
  }

  .carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    position: relative;
  }

  .carousel-item {
    display: none;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    flex-direction: row;
    color: white;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: UTO;
    max-width: 500px;
  }

  .carousel-item.active {
    display: flex;
    align-items: center;
    /*transform: scale(1.1);*/
    /* Aumenta el tamaño */
    max-width: 100%;
    /* Ajuste de ancho máximo */
    padding: 30px;
    transition: transform 0.3s ease-in-out, max-width 0.3s ease-in-out;


  }

  .carousel-item img {
    width: 60%;
    object-fit: cover;
    height: 100%;
    border-radius: 8px;

  }

  .carousel-item.active .text-content {
    width: 200%;
    padding-left: 10px;
    border-left: 2px solid #ccc;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    max-width: 50%;
    word-wrap: break-word;

  }

  /* ---- BOTONES DE NAVEGACIÓN ---- */
  .carousel-nav,
  #prevBtn,
  #nextBtn {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 10px;
    transition: background 0.3s;
  }

  .carousel-nav:hover,
  #prevBtn:hover,
  #nextBtn:hover {
    background: rgba(255, 255, 255, 0.7);
    color: black;
  }



  /*estilo solicita-cotiza*/
  #solicita-cotiza {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo8.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
  }

  #solicita-cotiza h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
  }

  #solicita-cotiza form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: gray;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  #solicita-cotiza label {
    display: block;
    font-weight: bold;
    margin-top: 10px;
  }

  #solicita-cotiza input,
  #solicita-cotiza textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  #solicita-cotiza button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1em;
    background-color: blueviolet;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  #solicita-cotiza button:hover {
    background-color: rgb(101, 33, 165);
  }

  /*estilo visitanos*/
  #visitanos {
    text-align: center;
    padding-top: 10px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo7.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
  }

  #visitanos h2 {
    color: white;
  }


  /*estilo contacto*/
  #quienes-somos {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding-top: 30px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo4.png");
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    margin-top: 80px;
    z-index: 1;
  }

  /*estilo contacto*/

  #contacto {
    text-align: center;
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 120px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("/Images/Fondo6.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-top: 80px;
    z-index: 1;
  }

  #contacto h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: white;
  }

  .contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Dos columnas iguales */
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .direccion,
  .contacto-info {
    text-align: left;
  }

  .contacto-info ul {
    list-style: none;
    padding: 0;
  }

  .contacto-info li {
    font-size: 1.2em;
  }

  #contacto p {
    color: black;
  }
}


@media (min-width: 1200px) {
  #caracteristicas {
    background-position: calc(100vw - 800px);
  }
}