* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


.archivo-black-regular {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
}


body {
  min-height: 100dvh;
  width: 100%;
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--text);
  /* background-color: #F4F4F4; */
  background-color: var(--background);
}

.txtNaranja {
  color: var(--accent);
}

.txtSombra{
  filter: drop-shadow(4px 4px rgba(0, 0, 0, 0.30))
}


/* HEADER */
.header {
  z-index: 100;
  width: 100%;
  height: 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  background-color: var(--header);
  border-bottom: 1px solid var(--accent);
}

.contLogo img {
  filter: drop-shadow(4px 5px 1px #282b2d);
  width: 5rem;
  height: 5rem;
}

.contBotones {
  display: flex;
  gap: 1rem;
}

.button-35,
.button-28 {
  align-items: center;
  background: none;
  border-radius: 12px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;

  font-weight: 600;
  justify-content: center;
  line-height: 1;
  padding: 1rem 1.2rem;
  text-align: center;
  text-decoration: none;
  border: 1.2px solid var(--accent);
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
}

.button-28 {
  background-color: #FC6241;
  border-color: #FC6241;
}

.button-35:hover,
.button-28:hover {
  background-color: #fff;
  color: #17212b;
}



/* MAIN */
.main {
  width: 100%;
  height: 70%;
}

.headerMain {
  width: 100%;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: 3rem;
}

.titleHeaderMain {
  width: 50%;
  height: 10%;
  font-size: 1.5rem;
}


.txtHeaderMainTitle {
  width: 100%;
}

.btnHeaderMain {
  padding: 1rem;
  padding-top: 1rem;
}

/* BTN AGREGADO */
.btnHeaderMainDes {
  position: relative;
  display: inline-block;
  cursor: pointer;
  outline: none;
  border: 0;
  vertical-align: middle;
  text-decoration: none;
  background: transparent;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
}

.btnHeaderMainDes.learn-more {
  width: 12rem;
  height: auto;
}

.btnHeaderMainDes.learn-more .circle {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  box-shadow: 0 0 5px 1px black;
  position: relative;
  display: block;
  margin: 0;
  width: 3rem;
  height: 3rem;
  background: #ff6748;
  border-radius: 1.625rem;
}

.btnHeaderMainDes.learn-more .circle .icon {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #fff;
}

.btnHeaderMainDes.learn-more .circle .icon.arrow {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  left: 0.625rem;
  width: 1.125rem;
  height: 0.125rem;
  background: none;
}

.btnHeaderMainDes.learn-more .circle .icon.arrow::before {
  position: absolute;
  content: "";
  top: -0.29rem;
  right: 0.0625rem;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  transform: rotate(45deg);
}

.btnHeaderMainDes.learn-more .btnHeaderMainDes-text {
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  top: -0.35rem;
  left: 1.2rem;
  right: 0;
  bottom: 0;
  padding: 0.75rem 0;
  margin: 0 0 0 1.85rem;
  color: var(--textOtroModeLige);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
  /* text-transform: uppercase; */
  /* background-color: red; */
}

.btnHeaderMainDes:hover .circle {
  width: 100%;
  box-shadow: 0 0 10px 2px rgb(0, 0, 0);
}

.btnHeaderMainDes:hover .btnHeaderMainDes-text {
  transform: translate(-2.8rem, 0);
}

.btnHeaderMainDes:hover .circle .icon.arrow {
  background: #fff;
  transform: translate(8.7rem, 0);
}

.btnHeaderMainDes:active .circle .icon.arrow {
  transform: translate(9.5rem, 0);
  transition: all 0.3s;
}

.btnHeaderMainDes:active .circle {
  transform: scale(0.9);
  transition: all 0.3s;
  box-shadow: 0 0 5px 0.5px rgb(0, 0, 0);
}

.btnHeaderMainDes:hover .btnHeaderMainDes-text {
  color: #fff;
}

.btnHeaderMainDes:active .btnHeaderMainDes-text {
  color: rgba(255, 255, 255, 0.459);
}

/* ACA TERMINA BTN */

.descHeader {
  padding-top: 1rem;
}

.headerImgDer {
  width: 30%;
}

.headerImgDer img {
  width: 100%;
  /* filter: drop-shadow(4px 4px rgba(0, 0, 0, 0.30)); */
  filter: drop-shadow(0 12px .6px rgba(0, 0, 0, 0.8));
  height: 200px;
}

.contSlider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0 1rem 0;
}

.sliderMain {
  display: flex;
  width: 50%;
  height: 20rem;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  border-radius: .5rem;
  box-shadow: 0px 20px 3rem #0000006e;
  /* background-image: url("./img/portada.jpg"); */
  /* background-size: contain; */
  scrollbar-width: none;
}

.sliderMain img {
  height: 100%;
  flex: 0 0 100%;
  width: 100%;
  font-size: 3em;
  scroll-snap-align: center;
  object-fit: fill;
  background-color: #282b2d;
  /* background-color: #0e1114; */
  padding: 2rem;
}


.contMain{
  width: 100%;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.contMain img{
    width: 100%;
    /* filter: drop-shadow(4px 4px rgba(0, 0, 0, 0.30)); */
    /* filter: drop-shadow(0 8px rgba(0, 0, 0, 0.422)); */
    filter: none;
    border: 1.5px solid var(--accent);
    padding: 7px;
    border-radius: 14px;
    height: 200px;
}

.iconBoxContMain {
  width: 100%;
  text-align: center;
  padding: 1rem 0 0 0;
}

.iconoGrande{
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
.boxContMain{
  padding: 1rem;
  display: inline-table;
  justify-content: center;
  width: 25%;
  align-items: center;
  min-height: auto;
  border-radius: 20px;
  /* background-color: #f4f4f4; */
  /* box-shadow: 0 0 2px 0px #0000005e; */
  box-shadow: 0 0 2px 0px var(--accent);
  overflow: hidden;
  transition: transform 0.5s;
  cursor: pointer;
  text-decoration: none;
  /* color: #4b4c4d; */
  color: var(--text);
}
.titleBoxMain{
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
}
.txtBoxMain{
  width: 100%;
  text-align: center;
  /* height: 90%; */
  /* text-align: -webkit-center; */
  padding: 0.5rem;
}

.boxContMain:hover{
  transition: .5s;
  /*background-color: #e7e5e5;*/
  transform: scale(1.08);
}

.boxContMainCantUsers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  /* height: 50px; */
  font-size: 2.7rem;
}

.cantUsers {
  background-color: #fc6241;
  color: var(--colorWhite);
  padding: 1rem;
  border-radius: 1000px;
  cursor: cell;
}

.txtCantUsers {
  padding-left: 1rem;
}

/* FOOTER */
.footer {
  font-family: 'Segoe UI';
  width: 100%;
  height: 20%;
  padding: 40px 0;
  background-color: var(--footer);
}

.footer .social {
  text-align: center;
  padding-bottom: 25px;
  /* color: #4b4c4d; */
}

.footer .social a {
  font-size: 1.4rem;
  color: var(--colorWhite);
  border: 1px solid var(--accent);
  width: 40px;
  height: 40px;
  line-height: 38px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin: 0 8px;
  opacity: 0.75;
}

.footer .social a:hover {
  transition: .7s;
  opacity: 1;
  background-color: var(--accent);
  color: #ffffffc7;
  border-color: rgb(255, 255, 255);
}

.footer ul {
  color: white;
  margin-top: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
}

.footer ul a {
  color: var(--colorWhite);
  text-decoration: none;
  opacity: 0.8;
}

.footer ul li {
  display: inline-block;
  padding: 0 15px;
}

.footer ul a:hover {
  opacity: 1;
  transition: .5s;
}

.footer .copyright {
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
  color: var(--colorWhite);
}

.slider {
  display: flex;
  width: 100%;
  height: 300px;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
}

.cuadro1,
.cuadro2 {
  height: 100%;
  flex: 0 0 100%;
  width: 100%;
  font-size: 3em;
  scroll-snap-align: center;


}

.cuadro2 {
  background-color: aqua;
}

.cuadro1 {
  background-color: rgb(38, 179, 25);
}


@media (max-width: 700px) {
  .titleHeaderMain {
    width: 53%;
    height: 10%;
    font-size: 1.5rem;
}
  .button-35, .button-28 {
    padding: .5rem .5rem;
}
  #servicios{
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    flex-wrap: wrap;
}
  .contMain {
    /* width: 90%; */
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
   .boxContMainCantUsers {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* height: 50px; */
    font-size: 1.4rem;
}

.cantUsers {
    background-color: #fc6241;
    color: var(--colorWhite);
    padding: .7rem;
    border-radius: 1000px;
    cursor: cell;
}
}