/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f1592a;
}

/* HEADER */
.site-header {
  background: #f1f1f1;
  text-align: center;
  padding: 1rem;
}

.logoinicio {
  max-width: 180px;
  margin: auto;
}

/* HERO */
.maincontainer {
  background: #383838;
  padding: 3rem 1rem;
}

.banner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}

.bannertext {
  color: #fff;
}

.bannertext h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.bannertext p {
  margin-top: 1rem;
  font-size: 1.1rem;
}

.hero {
  max-width: 420px;
}

/* BUTTONS */
.buttonDemo,
.buttonContratar {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  border: 2px solid #f1592a;
  color: #fff;
  background: #383838;
  text-decoration: none;
  transition: background 0.3s ease;
}

.buttonDemo:hover,
.buttonContratar:hover {
  background: #f1592a;
}

#logoDemo {
  display: flex;
  max-width: 200px;
  max-height: 200px;
  margin: auto;
  padding: 20px;
}


/* FEATURES */
.wrapper {
  margin: 4rem auto;
  padding: 0 1rem;
}

.wrapper h2 {
  color: #fff;
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 3rem;
}

.container {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.box {
  background: #fff;
  padding: 1.5rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.box:hover {
  transition: 0.2s linear;
  transform: scale(1.03);
}

.box i {
  font-size: 3rem;
  color: #383838;
}

.box h3 {
  margin: 1rem 0;
  color: #383838;
}

.box p {
  color: #777;
}

/* DEMO */
.demoSection {
  background: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.demoSection h1 {
  color: #383838;
  margin-bottom: 1.5rem;
}

/* COSTOS */
.sectionCostos {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.sectionCostos h2 {
  font-size: clamp(3rem, 8vw, 5rem);
  color: #f1592a;
}

.costos ul {
  list-style: none;
  margin-top: 2rem;
}

.costos li {
  margin-top: 0.75rem;
  font-style: italic;
}

/* WHATSAPP */
.btn-wsp {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 60px;
  height: 60px;
  background: #0df053;
  color: #fff;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  border: solid 4px #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.btn-wsp:hover {
  text-decoration: none;
  color: #0df053;
  background: #fff;
  transform: scale(1.03);
  /* transition: 0.2s linear; */
}

.btn-wsp:link,
.btn-wsp:active,
.btn-wsp:visited {
  text-decoration: none;
}

/* CARDS SECTION PROCESO */
.containerb {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  margin: 20px;
}

.boxb {
  padding: 20px;
  text-align: center;
  border-radius: 5px;
  background: #2b2b2b;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

/* .boxb:hover {
  transform: scale(1.03);
} */


.boxb h3 {
  color: #c9c9c9;
  padding: 10px 0;
  font-size: 20px;
}
.boxb p {
  color: #969696;
  font-size: 16px;
  line-height: 1.3;
}

.boxb img {
  max-width: 70%;
  align-items: center;
  align-self: center;
  align-content: center;
  margin: auto;
}

#lastcard {
  outline: #f1592a 2px dotted;
  outline-offset: -15px;
}

/* CLIENTES */
.clientes {
  display: block;
  height: auto-fit;
  background-color: rgb(255, 255, 255);
  padding-top: 50px;
  margin-bottom: 5px;
}

.clientes h1 {
  color: #383838;
  text-align: center;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 20px;
}

.clienteslista {
  display: block;
  text-align: center;
  margin: auto;
}

.clienteqr {
  display: block;
  max-width: 100px;
  max-height: 100px;
  margin: 20px;
}

.clienteslista a {
  display: inline-block;
  text-align: center;
  padding: 20px;
  margin: auto;
  color: #383838;
  text-decoration: none;
}

.clienteslista a:hover {
  /* display: inline-block;
  text-align: center;
  padding: 20px;
  margin: auto; */
  color: #f1592a;
  cursor: pointer;
}

.clienteslista:visited,
.clienteslista:link,
.clienteslista:active {
  text-decoration: none;
}

.clienteslista img {
  display: block;
  max-width: 300px;
  margin: auto;
}

/* FOOTER */
footer {
  background: #f1f1f1;
  padding: 2rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

footer a {
  color: #383838;
  text-decoration: none;
}
