@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Raleway";
}

body {
  background-color: aliceblue;
}

main {
  min-height: calc(100vh - 200px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.titulocontactanos {
  color: #C4D600;
  font-family: "Raleway";
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin: 20px 0;
}

.form {
  max-width: 600px;
  width: 100%;
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form h2 {
  text-align: center;
  margin-bottom: 10px;
}
.form label {
  font-weight: bold;
  font-size: 1rem;
  color: #333;
}
.form input,
.form textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}
.form textarea {
  min-height: 100px;
  resize: vertical;
}
.form input[type=button] {
  background: #13353B;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.form input[type=button]:hover {
  background: #0f2a2f;
}
@media (max-width: 768px) {
  .form main {
    padding: 10px;
  }
  .form .titulocontactanos {
    font-size: 1.8rem;
  }
  .form .form {
    padding: 1rem;
    gap: 10px;
  }
}

footer {
  padding: 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
}
footer nav {
  display: flex;
  gap: 15px;
}
footer nav img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
footer nav img:hover {
  transform: scale(1.2);
}

.facebook {
  width: 50px;
  height: 50px;
}

.instagram {
  width: 50px;
  height: 50px;
}

.linkelind {
  width: 50px;
  height: 50px;
}

.youtube {
  width: 50px;
  height: 50px;
}

.whatsapp {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 20px;
  right: 50px;
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 0;
    padding-bottom: 10px;
  }
  footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
  footer nav a img {
    display: block;
    margin: 0 auto;
  }
}
header {
  width: 100%;
  padding: 10px;
  background-color: aliceblue;
}

.imglogo {
  height: 100px;
  width: 200px;
  align-items: flex-start;
  animation: aparecer 1.5s ease-in-out forwards;
}

@keyframes aparecer {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.tituloindex {
  font-family: "Raleway" !important;
  color: #13353B;
  text-align: center;
  font-weight: bold;
  margin: 0;
  font-size: 3rem;
}

.titulospaces {
  color: #C4D600 !important;
  font-family: "Raleway" !important;
  text-align: center;
  font-weight: 700;
  margin: 0 0 1rem 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.titulosoluciones {
  color: #696B6D;
  font-family: "Raleway";
}

.tituloportafolio {
  color: #466969 !important;
  font-family: "Raleway" !important;
  text-align: center;
  font-weight: 700;
  margin: 0 0 1rem 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.titulocontactanos {
  color: #C4D600;
  font-family: "Raleway";
}

.navbar {
  background-color: aliceblue !important;
  width: 100%;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0.5rem 1rem;
  /* Logo */
  /*.tituloindex {
    margin-left: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: v.$colorPrincipal;
  }*/
}
.navbar .navbar-brand {
  flex: auto;
  display: flex;
  align-items: flex-start;
}
.navbar .navbar-brand img {
  height: 150px !important;
  width: auto;
}
.navbar .nav-link {
  color: #2E3434 !important;
  border: 1px solid #13353B;
  border-radius: 5px;
  padding: 8px 12px;
  margin: 0 5px;
  transition: background-color 0.3s, color 0.3s;
}
.navbar .nav-link:hover {
  background-color: #13353B;
  color: white !important;
}
.navbar .nav-link.active, .navbar .nav-link.navegacion__item--selected {
  background-color: #13353B;
  color: white !important;
}
.navbar .navbar-toggler {
  border: none;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(46,52,52,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
@media (max-width: 768px) {
  .navbar .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar .navbar .navbar-collapse {
    justify-content: flex-start !important;
    width: 100%;
  }
  .navbar .navbar .nav-link {
    text-align: left;
    width: 100%;
  }
}

main {
  display: flex;
  flex-direction: column;
  padding: 15px;
  background-color: aliceblue;
}
main section {
  margin-bottom: 20px;
}
main article {
  margin-bottom: 20px;
}

.inline {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
  text-align: justify;
  line-height: 1.6;
  font-size: 1.1rem;
}

.contenedor {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  padding: 20px;
}

.carousel {
  margin-bottom: 30px;
}

.carousel-item img {
  height: 500px;
  object-fit: contain;
}

.imgplataforma {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.imgplataforma img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  main {
    padding: 10px;
  }
  main section {
    margin-bottom: 15px;
  }
  main article {
    margin-bottom: 15px;
  }
  .contenedor {
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }
  .carousel-item img {
    height: auto;
    max-height: 250px;
    object-fit: contain;
  }
  .imgplataforma {
    padding: 5px;
  }
  .imgplataforma img {
    max-width: 100%;
    height: auto;
  }
}
main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1.5rem;
}

.tituloportafolio {
  color: #466969 !important;
  font-family: "Raleway" !important;
  text-align: center;
  font-weight: 700;
  margin: 0 0 1rem 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.imgsegmentos {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
}
.imgsegmentos img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.contenedor {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 1.25rem;
}
.contenedor video {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.contenedor .inline-block {
  flex: 1;
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  text-align: justify;
  line-height: 1.6;
}

@media (max-width: 768px) {
  main {
    padding: 0.75rem;
    gap: 1.25rem;
  }
  .contenedor {
    flex-direction: column;
    gap: 1.25rem;
    padding: 0.75rem;
  }
  .imgsegmentos {
    padding: 0.75rem;
  }
  .tituloportafolio {
    font-size: 2rem;
  }
}
main {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
}

titulosoluciones {
  color: #696B6D;
  font-family: "Raleway";
  font-size: 3.5rem;
  font-weight: bold;
  text-align: left;
  padding-left: 30px;
  margin: 30px 0 20px;
}

.imgsoftware {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.imgsoftware img {
  max-width: 100%;
  height: auto;
  display: block;
}

.contenedor {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  padding: 20px;
}

.inline-block {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  text-align: justify;
  line-height: 1.5;
}

.imgtorre,
.imgquick {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.imgtorre img,
.imgquick img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  main {
    padding: 10px;
    gap: 20px;
  }
  .titulosoluciones {
    font-size: 1.8rem;
    padding-left: 10px;
    margin: 20px 0 15px;
  }
  .contenedor {
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }
  .inline-block {
    max-width: 100%;
    text-align: justify;
  }
  .imgsoftware {
    padding: 10px;
  }
}
main {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 20px;
}

.titulospaces {
  color: #C4D600 !important;
  font-family: "Raleway" !important;
  text-align: center;
  font-weight: 700;
  margin: 0 0 1rem 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.imgspacesiot {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.imgspacesiot img {
  max-width: 100%;
  height: auto;
  display: block;
}

.contenedor {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  padding: 20px;
}

.inline-block {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  text-align: justify;
  line-height: 1.5;
}

.imgcamera,
.imgcan {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.imgcamera img,
.imgcan img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  main {
    padding: 10px;
    gap: 20px;
  }
  .titulospaces {
    font-size: 1.8rem;
    padding-left: 10px;
    margin: 20px 0 15px;
  }
  .contenedor {
    flex-direction: column;
    gap: 20px;
    padding: 10px;
  }
  .inline-block {
    max-width: 100%;
    text-align: justify;
  }
  .imgspacesiot {
    padding: 10px;
  }
  footer {
    gap: 15px;
  }
}

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