* {
  margin: 0;
  padding: 0;
  font-family: "Roboto", "Times New Roman", Times, serif, "Times New Roman",
    Times, serif, "Gill Sans", "Gill Sans MT";
}

a {
  text-decoration: none;
  color: #fff;
}
/*carrucel*/
.carrucel {
  margin: 6% 3% 5% 7%;
  width: 96%;
  height: 50%;
  margin: auto;
  border-radius: 1%;
  overflow: hidden;
  box-shadow: 0px 0px 15px -1px rgb(2, 47, 99);
}
/*texto carrucel*/
.parrafocarrucel {
  box-sizing: border-box;
  text-align: center;
  position: relative;
  width: 100%;
  min-height: 10rem;
  padding: 20% 3% 5% 3%;
  font-size: 200%;
  color: #fff;
  text-shadow: 2px 2px 5px rgb(6, 6, 6);
  font-family: Impact, "Arial Narrow Bold", sans-serif, "Arial Narrow", Arial,
    sans-serif, "Roboto";
  box-shadow: 1px 1px 20px black;
}
.slide {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: all 600ms;
  -webkit-animation-name: autoplay;
  animation-name: autoplay;
  -webkit-animation-duration: 16.5s;
  animation-duration: 16.5s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  /*para que la animacion comience por la primera imagen*/
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.item-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex-grow: 0;
  max-width: 100%;
}

.pagination {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.pagination-item {
  display: flex;
  flex-direction: column;
  border: 2px solid white;
  width: 23px;
  height: 15px;
  border-radius: 4px;
  cursor: pointer;
  margin: 0 10px;
  transition: all 500ms;
  margin-top: -5%;
}

.pagination-item img {
  border-radius: 2px;
}

.pagination-item:hover {
  transform: scale(2);
  -webkit-transform: scale(2);
  -moz-transform: scale(2);
  -ms-transform: scale(2);
  -o-transform: scale(2);
}

.pagination-item:hover img {
  opacity: 1;
  transform: scale(1);
}

input[id="1"]:checked ~ .slide {
  -webkit-animation: none;
  animation: none;
  transform: translate3d(0, 0, 0);
}

input[id="1"] :checked ~ .pagination .pagination-item[for="1"] {
  background: #fff;
}

input[id="2"]:checked ~ .slide {
  -webkit-animation: none;
  animation: none;
  transform: translate3d(calc(-100% * 1), 0, 0);
}

input[id="2"] :checked ~ .pagination .pagination-item[for="2"] {
  background: #fff;
}

input[id="3"]:checked ~ .slide {
  -webkit-animation: none;
  animation: none;
  transform: translate3d(calc(-100% * 2), 0, 0);
}

input[id="3"] :checked ~ .pagination .pagination-item[for="3"] {
  background: #fff;
}

@-webkit-keyframes autoplay {
  33% {
    transform: translate3d(calc(-100% * 0), 0, 0);
  }

  66% {
    transform: translate3d(calc(-100% * 1), 0, 0);
  }

  100% {
    transform: translate3d(calc(-100% * 2), 0, 0);
  }
}

@keyframes autoplay {
  33% {
    transform: translate3d(calc(-100% * 0), 0, 0);
  }

  66% {
    transform: translate3d(calc(-100% * 1), 0, 0);
  }

  100% {
    transform: translate3d(calc(-100% * 2), 0, 0);
  }
}

#btnCarrucelWeb {
  font-size: 70%;
}
#btnCarrucelDemo {
  font-size: 90%;
}

#carrucel1 {
  background: linear-gradient(rgba(171, 215, 228, 0), rgba(100, 133, 218, 0.3)),
    url(imginicio/carrucel1.webp);
  width: 100%;
  background-size: cover;
  background-position: center; /* Centra la imagen de fondo */
  background-repeat: no-repeat;
}

#carrucel2 {
  background: linear-gradient(rgba(171, 215, 228, 0), rgba(100, 133, 218, 0)),
    url(imginicio/carrucel2.webp);
  width: 100%;
  background-size: cover;
  background-position: center; /* Centra la imagen de fondo */
  background-repeat: no-repeat;
}

#carrucel3 {
  background: linear-gradient(
      rgba(171, 215, 228, 0.5),
      rgba(100, 133, 218, 0.05)
    ),
    url(imginicio/carrucel3.webp);
  width: 100%;
  background-size: cover;
  background-position: center; /* Centra la imagen de fondo */
  background-repeat: no-repeat;
}

/*apartado facil*/

.sector1 {
  margin-bottom: 1%;
}

#gestionesexitosas {
  opacity: 0.4;
  padding: 5dvh;
  width: 100%;
  height: 150rem;
  margin-top: -15rem;
  position: absolute;
  color: #fff;
  background: linear-gradient(
      0deg,
      rgba(32, 73, 184, 0.299),
      rgba(59, 108, 221, 0.913)
    ),
    url(../imginicio/fondo4.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.carrucelMarcas {
  margin: 2% 2% 5% 2%;
  background-color: #146296;
  overflow: hidden;
  border-radius: 05px;
  -webkit-border-radius: 05px;
  -moz-border-radius: 05px;
  -ms-border-radius: 05px;
  -o-border-radius: 05px;
  box-shadow: 0px 0px 15px -1px rgb(2, 47, 99);
  position: relative;
}

.slideMarcas {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: all 1000ms;
  -webkit-animation-name: autoplayMarcasRightToLeft;
  animation-name: autoplayMarcasRightToLeft;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  /*paraquelaanimacioncomienceporlaprimeraimagen*/
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-transition: all 1000ms;
  -moz-transition: all 1000ms;
  -ms-transition: all 1000ms;
  -o-transition: all 1000ms;
}

.slideMarcas2 {
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: all 1000ms;
  -webkit-animation-name: autoplayMarcasLeftToRight;
  animation-name: autoplayMarcasLeftToRight;
  -webkit-animation-duration: 15s;
  animation-duration: 15s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  /*paraquelaanimacioncomienceporlaprimeraimagen*/
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-transition: all 1000ms;
  -moz-transition: all 1000ms;
  -ms-transition: all 1000ms;
  -o-transition: all 1000ms;
}
.item-slideMarcas {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex-grow: 0;
  max-width: 100%;
  margin: auto;
  padding: 0.5dvw;
  width: 10%;
  max-width: 100px;
}

/*1*/

@keyframes autoplayMarcasRightToLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-80dvw, 0, 0);
    -webkit-transform: translate3d(-80dvw, 0, 0);
    -moz-transform: translate3d(-80dvw, 0, 0);
    -ms-transform: translate3d(-80dvw, 0, 0);
    -o-transform: translate3d(-80dvw, 0, 0);
  }
}
/*2*/
@keyframes autoplayMarcasLeftToRight {
  100% {
    transform: translate3d(0, 0, 0);
  }
  0% {
    transform: translate3d(-80dvw, 0, 0);
    -webkit-transform: translate3d(-80dvw, 0, 0);
    -moz-transform: translate3d(-80dvw, 0, 0);
    -ms-transform: translate3d(-80dvw, 0, 0);
    -o-transform: translate3d(-80dvw, 0, 0);
  }
}

/*sector packs*/
.sector3 {
  display: grid;
  /*margenes alrededor de las columnas*/
  grid-gap: 1px;
  /*cantidad de columnas*/
  grid-template-columns: repeat(4, 1fr);
  margin-top: 5%;
  margin-left: 1%;
  margin-right: 1%;
  margin-bottom: 5%;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  box-sizing: border-box;
}

#pack1 {
  width: 90%;
  margin: 0 auto;
  padding: 3% 3% 3% 3%;
  box-shadow: 0px 0px 15px -1px rgb(2, 47, 99);
  background: linear-gradient(
      rgba(187, 205, 211, 466),
      rgba(144, 157, 189, 0.582)
    ),
    url(imginicio/empresa1.webp);
  background-size: cover;
  border-radius: 4px;
}

#pack2 {
  width: 90%;
  margin: 0 auto;
  padding: 3% 3% 3% 3%;
  box-shadow: 0px 0px 15px -1px rgb(2, 47, 99);
  background: linear-gradient(
      rgba(187, 205, 211, 466),
      rgba(144, 157, 189, 0.582)
    ),
    url(imginicio/empresa2.webp);
  background-size: cover;
  border-radius: 4px;
}

#pack3 {
  width: 90%;
  margin: 0 auto;
  padding: 3% 3% 3% 3%;
  box-shadow: 0px 0px 15px -1px rgb(2, 47, 99);
  background: linear-gradient(
      rgba(187, 205, 211, 466),
      rgba(144, 157, 189, 0.582)
    ),
    url(imginicio/empresa3.webp);
  background-size: cover;
  border-radius: 4px;
}

#pack4 {
  width: 90%;
  margin: 0 auto;
  padding: 3% 3% 3% 3%;
  box-shadow: 0px 0px 15px -1px rgb(2, 47, 99);
  background: linear-gradient(
      rgba(187, 205, 211, 0.466),
      rgba(144, 157, 189, 0.945)
    ),
    url(imginicio/empresa4.webp);
  background-size: cover;
  border-radius: 4px;
}

#pack1:hover {
  transform: scale(1.1);
}

#pack2:hover {
  transform: scale(1.1);
}

#pack3:hover {
  transform: scale(1.1);
}

#pack4:hover {
  transform: scale(1.1);
}

.adquirir {
  background-color: rgb(34, 112, 202);
  width: 30%;
  float: right;
  border-radius: 5px;
  border-color: rgba(10, 10, 100, 0.521);
  font-size: 130%;
  cursor: pointer;
  text-align: center;
}

.adquirir:hover {
  background-color: rgba(8, 144, 185, 0.795);
  border-color: rgb(77, 118, 231);
}

.packdetalle {
  font-size: 130%;
  list-style-type: none;
}

.adquirir {
  text-decoration: none;
  color: #fff;
}

.adquiriracordeon__titulo {
  margin-left: -170%;
  color: #fff;
}
.tarifas {
  background: none;
  border: none;
  color: rgb(12, 12, 12);
  width: 40%;
  text-align: left;
  font-weight: bold;
}
.tarifaPromedio {
  background: none;
  border: none;
  width: 55px;
  color: black;
}
.tarifaComision {
  background: none;
  border: none;
  width: 4rem;
  color: black;
}
#facturaMinima {
  background: none;
  border: none;
  width: 5rem;
  color: black;
}
/*formulariodecontacto*/
.container.contactenos {
  text-align: center;
  font-size: 130%;
  font-family: "Helvetica", Arial, serif;
}

.container.contactenos h2 {
  margin-bottom: 25px;
}

.container.contactenos h5 {
  font-size: 100%;
}

#nombre {
  width: 80%;
  height: 35px;
  margin-bottom: 30px;
  border-radius: 4px;
  max-width: 550px;
  font-family: "Helvetica", Arial, serif;
  padding-left: 10px;
}

#telefono {
  width: 80%;
  height: 35px;
  margin-bottom: 30px;
  border-radius: 4px;
  max-width: 550px;
  font-family: "Helvetica", Arial, serif;
  padding-left: 10px;
}

#email {
  width: 80%;
  height: 35px;
  margin-bottom: 30px;
  border-radius: 4px;
  max-width: 550px;
  font-family: "Helvetica", Arial, serif;
  padding-left: 10px;
}

#mensaje {
  width: 80%;
  height: 145px;
  margin-bottom: 30px;
  border-radius: 4px;
  max-width: 550px;
  font-family: "Helvetica", Arial, serif;
  padding-left: 10px;
  padding-top: 10px;
}

#boton {
  background-color: rgb(34, 112, 202);
  width: 25%;
  max-width: 200px;
  border-radius: 4px;
  border-color: rgba(10, 10, 100, 0.521);
  font-size: 100%;
  cursor: pointer;
  color: #fff;
  height: 40px;
}

#boton:hover {
  background-color: rgba(8, 144, 185, 0.795);
  border-color: rgb(77, 118, 231);
}
.g-recaptcha {
  margin-bottom: 4vh;
  display: grid;
  justify-content: center !important;
}

/*tamaño compu*/
@media screen and (min-width: 1351px) {
  /*carrucel*/
  .carrucel {
    margin: 6% 3% 2% 2% !important;
    width: 96%;
    margin: auto;
    border-radius: 1%;
    overflow: hidden;
    box-shadow: 0px 0px 15px -1px rgb(2, 47, 99);
  }
  /*texto carrucel*/
  .parrafocarrucel {
    box-sizing: border-box;
    text-align: center;
    position: relative;
    width: 100%;
    height: 0;
    padding: 10% 3% 15% 3%;
    font-size: 200%;
    color: #fff;
    text-shadow: 2px 2px 5px rgb(6, 6, 6);
    font-family: Impact, "Arial Narrow Bold", sans-serif, "Arial Narrow", Arial,
      sans-serif, "Roboto";
    box-shadow: 1px 1px 20px black;
  }
  .slideMarcas {
    transition: all 5000ms;
    -webkit-animation-duration: 105s;
    animation-duration: 105s;
    -webkit-transition: all 5000ms;
    -moz-transition: all 5000ms;
    -ms-transition: all 5000ms;
    -o-transition: all 5000ms;
  }

  .slideMarcas2 {
    transition: all 3000ms;
    -webkit-animation-duration: 105s;
    animation-duration: 105s;
    -webkit-transition: all 3000ms;
    -moz-transition: all 3000ms;
    -ms-transition: all 3000ms;
    -o-transition: all 3000ms;
  }
}
@keyframes autoplayMarcasRightToLeft {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50dvw, 0, 0);
    -webkit-transform: translate3d(-50dvw, 0, 0);
    -moz-transform: translate3d(-50dvw, 0, 0);
    -ms-transform: translate3d(-50dvw, 0, 0);
    -o-transform: translate3d(-50dvw, 0, 0);
  }
}
/*2*/
@keyframes autoplayMarcasLeftToRight {
  100% {
    transform: translate3d(0, 0, 0);
  }
  0% {
    transform: translate3d(-50dvw, 0, 0);
    -webkit-transform: translate3d(-50dvw, 0, 0);
    -moz-transform: translate3d(-50dvw, 0, 0);
    -ms-transform: translate3d(-50dvw, 0, 0);
    -o-transform: translate3d(-50dvw, 0, 0);
  }
}

/*tamaño tablet*/
@media screen and (min-width: 820px) and (max-width: 1350px) {
  .carrucel {
    margin: 6% 3% 2% 2% !important;
    width: 96%;
    margin: auto;
    border-radius: 1%;
    overflow: hidden;
    box-shadow: 0px 0px 15px -1px rgb(2, 47, 99);
  }
  /*texto carrucel*/
  .parrafocarrucel {
    padding: 10% 3% 20% 3%;
  }
  .acordeon {
    padding: 6% 0% 0% 0%;
    font-size: 80%;
    margin: 0 0 45% 0;
    margin-top: 6%;
    right: 0%;
  }

  .facil {
    min-width: 70px;
    max-width: 400px;
    width: 70%;
    margin: 0% 13% 0% 10%;
    padding: 1% 1% 1% 1%;
    font-size: 100%;
    float: left;
  }

  /*gestionesexitosas*/
  #titulogestionesexitosas {
    margin-top: -10vh;
  }

  /*sector packs*/
  .sector3 {
    margin-top: 5%;
    margin-left: 2%;
    margin-right: 2%;
    margin-bottom: 5%;
  }

  .adquirir {
    font-size: 90%;
  }

  .packdetalle {
    font-size: 80%;
  }
  .tarifaPromedio {
    width: 33px;
  }
}

/*para tamaño telefono*/
@media screen and (max-width: 820px) {
  .carrucel {
    margin: auto;
    width: 97vw;
    margin-top: 5vh;
  }
  /*texto carrucel*/
  .parrafocarrucel {
    width: 100%;
    height: 0;
    padding: 30% 3% 40% 3%;
    font-size: 170%;
  }
  .pagination-item {
    margin-top: -10%;
  }
  .facil {
    min-width: 70px;
    width: 90%;
    margin: 8vh 5% 5% 5%;
    padding: 1% 1% 1% 1%;
    font-size: 120%;
    border: solid 0px rgba(2, 8, 55, 0.514);
    border-radius: 3%;
    position: center;
  }

  .facil .itemfacil {
    color: darkred;
    text-shadow: 0% 0% 0%;
    width: 1%;
    font-size: 130%;
  }

  .facil .itemfacil1 {
    font-family: ink free;
    color: rgb(250, 6, 6);
    text-shadow: 0% 0% 0%;
    width: 1%;
    font-size: 150%;
  }

  /*sector gestiones exitosas*/
  #gestionesexitosas1 {
    margin-top: 5vh;
    width: 90%;
  }

  #gestionesexitosas2 {
    float: none;
    width: 90%;
  }

  #titulogestionesexitosas {
    margin-top: 5vh;
    font-size: 160%;
  }

  .sector3 {
    display: block;
    font-size: 14px;
    width: 80%;
  }

  #pack1,
  #pack2,
  #pack3,
  #pack4 {
    margin: 3% 1% 1% 10%;
  }

  /*otros servicios*/

  .acordeon label {
    max-width: none;
    width: 100vw;
  }
  #tituloservicios {
    width: 100vw;
    max-width: none;
  }
  .desplegado {
    width: 5%;
  }
}

/*para tamaño telefono chico*/
@media screen and (max-width: 460px) {
  .carrucel {
    margin: auto;
    width: 100vw;
    margin-top: 5vh;
  }
  /*texto carrucel*/
  .parrafocarrucel {
    width: 100%;
    height: 0;
    padding: 10% 3% 60% 3%;
    font-size: 120%;
  }
  #btnCarrucelWeb {
    font-size: 130%;
  }
  #btnCarrucelDemo {
    font-size: 140%;
  }

  .facil {
    float: none;
    width: 98%;
    margin: 5vh 0% 5% 0%;
    font-size: 120%;
  }
  .facil .itemfacil {
    font-size: 130%;
  }
  .facil .itemfacil1 {
    font-size: 150%;
  }

  /*sector gestiones exitosas*/
  #titulogestionesexitosas {
    font-size: 120%;
  }

  #pack1,
  #pack2,
  #pack3,
  #pack4 {
    margin: 3% 0% 0% 8%;
    width: 100%;
  }

  /*otros servicios*/

  .acordeon label {
    max-width: none;
    width: 100vw;
  }
  #tituloservicios {
    width: 100vw;
    max-width: none;
  }
  .desplegado {
    width: 5%;
  }
  .acordeon__titulo {
    font-size: 90%;
  }

  #subTextoContacto {
    font-size: 80%;
  }
}

@media screen and (max-width: 290px) {
  /*texto carrucel*/
  .parrafocarrucel {
    padding: 10% 3% 60% 3%;
    font-size: 90%;
  }
  #btnCarrucelWeb {
    font-size: 120%;
  }
  #btnCarrucelDemo {
    font-size: 100%;
  }

  .pagination-item:hover {
    transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
  }
  .facil {
    float: none;
    width: 98%;
    margin: 5vh 0% 5% 0%;
    font-size: 120%;
  }
  .facil .itemfacil {
    font-size: 110%;
  }
  .facil .itemfacil1 {
    font-size: 110%;
  }

  /*sector gestiones exitosas*/

  #titulogestionesexitosas {
    font-size: 90%;
    margin-top: 3vh;
    margin-left: -5%;
  }

  #pack1,
  #pack2,
  #pack3,
  #pack4 {
    margin: 3% 0% 0% 8%;
    width: 100%;
  }
  /*otros servicios*/

  .acordeon {
    margin-top: 5vh;
  }
  .acordeon label {
    max-width: none;
    width: 90vw;
  }
  #tituloservicios {
    width: 100vw;
    max-width: none;
  }
  .desplegado {
    width: 5%;
  }
  .g-recaptcha div {
    width: 50vw !important;
  }
}
/* Servicios Destacados - Mobile First */
.services {
  padding: 18px 12px;
  border-radius: 6px;
  background: linear-gradient(
    180deg,
    rgba(6, 43, 82, 0.03),
    rgba(6, 43, 82, 0.02)
  );
  color: white;
}

.services-inner {
  max-width: 1600px;
  margin: 0 auto;
}

.services-title {
  font-size: 3rem !important;
  color: #eaf6ff;
  text-align: center;
  margin-bottom: 6px;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.12);
  margin-top: 3rem;
}

.services-lead {
  text-align: center;
  font-size: 1.4rem !important;
  color: #cfe9ff;
  margin-bottom: 14px;
  font-size: 0.95rem;
  margin-top: 0.8rem;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.service-card {
  display: block;
  background: linear-gradient(180deg, #0c8edfd0, #0e6092d7);
  color: #eaf6ff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(4, 18, 44, 0.25);
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover,
.service-card:focus {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(4, 18, 44, 0.32);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

/* Iconos circulares para servicios */
.service-body::before {
  content: "";
 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  box-shadow: 8px 8px 20px rgba(2, 136, 209, 0.3);
}

.service-card:nth-child(1) .service-body::before {
  content: "🏥";
  font-size: 2.5rem;
}

.service-card:nth-child(2) .service-body::before {
  content: "💰";
  font-size: 2.5rem;
}

.service-card:nth-child(3) .service-body::before {
  content: "🌐";
  font-size: 2.5rem;
}

.service-card:nth-child(4) .service-body::before {
  content: "👥";
  font-size: 2.5rem;
}

.service-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.service-body p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

.service-cta {
  display: inline-block;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.service-cta:hover {
  background: rgba(255, 255, 255, 0.2);
}
/* Tablet y Desktop: 2 columnas */
@media (min-width: 900px) {
  .services {
    padding: 28px 24px;
  }
  .services-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .services-title {
    font-size: 1.4rem;
  }
}

/* Pantallas grandes */
@media (min-width: 1100px) {
  .services {
    padding: 36px 48px;
  }
  .services-list {
    gap: 24px;
  }
  .service-body {
    padding: 2rem;
  }
}
