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

html, body {
  height: 100%;
  font-family: "Arial", sans-serif;
  background-color: whitesmoke;
  color: black;
}

img, video {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1100;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 25px;
  border-bottom: 1px solid #ccc;
  flex-wrap: wrap;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 100px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.nav-links li {
  margin: 0;
}
.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: #00aeef;
}

.navbar a.active {
  color: #00aeef;
  font-weight: bold;
}

.logo img {
  width: 200px;
  height: 100px;
}

.presentacion {
  text-align: center;
  padding: 25px 20px;
  background-color: #f8f9fa;
}
.presentacion h1 {
  font-size: 50px;
  font-weight: bold;
  color: #00aeef;
  margin-bottom: 10px;
}
.presentacion p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
}

.contenedor-media {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.media-box {
  width: 300px;
  background-color: #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  overflow: hidden;
}
.media-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.titulo-productos {
  font-size: 70px;
  font-weight: bold;
  color: #00aeef;
}

.presentacion-2 {
  text-align: center;
  padding: 1px 30px;
  background-color: #f5f5f5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.element {
  background-color: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #00aeef;
}
.element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}
.element p {
  margin-top: 8px;
  font-size: 25px;
  line-height: 1.4;
}

footer {
  display: flex;
  padding: 30px;
  justify-content: center;
}

.contacto {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}
.contacto h1 {
  font-size: 3em;
  margin-bottom: 30px;
  font-weight: 900;
  color: #00aeef;
}
.contacto form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contacto label {
  text-align: left;
  font-weight: bold;
}
.contacto input,
.contacto textarea {
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.contacto textarea {
  resize: vertical;
  height: 100px;
}

.botones-contacto {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

button {
  border: 2px solid #00aeef;
  padding: 10px 20px;
  text-decoration: none;
  color: #00aeef;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}
button:hover {
  background-color: #00aeef;
  color: white;
}

.btn-contacto-ig {
  border: 2px solid #9a6dfd;
  padding: 10px 20px;
  text-decoration: none;
  color: #9a6dfd;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}
.btn-contacto-ig:hover {
  background-color: #9a6dfd;
  color: white;
}

.btn-contacto-ws {
  border: 2px solid #6dfd79;
  padding: 10px 20px;
  text-decoration: none;
  color: #6dfd79;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}
.btn-contacto-ws:hover {
  background-color: #6dfd79;
  color: white;
}

.container {
  display: grid;
  grid-template-areas: "item2 item2 item2" "item1 item1 item1" "item3 item4 item4" "item5 item5 item6";
  gap: 50px;
  padding: 40px;
}

.clase1 {
  grid-area: item1;
  text-align: center;
}
.clase1 video {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
  display: block;
}

.clase2 {
  grid-area: item2;
  font-size: 18px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px;
}
.clase2 h2 {
  font-size: 2.5rem;
  color: #00aeef;
  font-weight: 600;
  line-height: 1.3;
  max-width: 800px;
}

.clase3,
.clase6 {
  grid-area: item3, item6;
}
.clase3 img,
.clase6 img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
  display: block;
}

.clase4 {
  grid-area: item4;
  font-size: 25px;
  line-height: 1.6;
}

.clase5 {
  grid-area: item5;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  padding: 40px;
}
.clase5 h3 {
  font-size: 2rem;
  color: #00aeef;
  font-weight: bold;
  margin-bottom: 10px;
}
.clase5 p {
  font-size: 1.2rem;
  color: #333;
}

.contenedor-servicios {
  padding: 30px;
  max-width: 1200px;
  margin: auto;
}

.carrusel-servicios img {
  width: 100%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.intro-servicios {
  text-align: center;
  margin-bottom: 40px;
}
.intro-servicios h1 {
  font-size: 3.5rem;
  color: #00aeef;
}
.intro-servicios p {
  font-size: 1.2rem;
}

.servicio {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  align-items: center;
}
.servicio.servicio-invertido {
  flex-direction: row-reverse;
}
.servicio img,
.servicio video {
  width: 45%;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}
.servicio div {
  width: 55%;
}
.servicio h2 {
  font-size: 1.8rem;
  color: #00aeef;
  margin-bottom: 10px;
}
.servicio p {
  font-size: 1rem;
  line-height: 1.6;
}

.estrellas {
  color: #735fff;
  font-size: 1.2rem;
  margin-top: 10px;
  font-weight: bold;
}

.clientes {
  padding: 50px 20px;
  background-color: #f4f4f4;
  color: #111;
  font-family: Arial, sans-serif;
}

.titulo-clientes {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #00aeef;
}

.fila {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.fila.fila-top {
  align-items: flex-start;
}

.bloque-opinion {
  flex: 1;
  min-width: 280px;
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.perfil {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  margin-bottom: 10px;
}

.texto-opinion {
  font-size: 16px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  header {
    position: static;
  }
  .nav-links {
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
    align-items: center;
  }
  .nav-links li a {
    font-size: 18px;
    padding: 8px 0;
  }
  .navbar {
    flex-direction: column;
    padding: 15px 10px;
  }
  .presentacion h1 {
    font-size: 32px;
  }
  .presentacion p {
    font-size: 16px;
  }
  .contenedor-media {
    flex-direction: column;
    gap: 20px;
  }
  .media-box {
    width: 90%;
    margin: 0 auto;
  }
  .titulo-productos {
    font-size: 40px;
  }
  .presentacion-2 {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px;
  }
  .element img {
    width: 100%;
    height: auto;
  }
  .element p {
    font-size: 20px;
    line-height: 1.1;
  }
  footer {
    padding: 15px;
  }
  .container {
    display: block;
    padding: 10px;
  }
  .clase1 video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  }
  .clase2 h2 {
    font-size: 1.8rem;
    text-align: center;
    margin: 20px 0;
  }
  .clase4 p {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 10px;
  }
  .clase3 img,
  .clase6 img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
  }
  .clase5 {
    padding: 20px;
    text-align: center;
  }
  .clase5 h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .clase5 p {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=style.css.map */
