.elementor-176 .elementor-element.elementor-element-7452e75{--display:grid;--e-con-grid-template-columns:repeat(2, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--grid-auto-flow:row;--margin-top:80px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-176 .elementor-element.elementor-element-7452e75:not(.elementor-motion-effects-element-type-background), .elementor-176 .elementor-element.elementor-element-7452e75 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-176 .elementor-element.elementor-element-60f2767{--display:flex;}.elementor-176 .elementor-element.elementor-element-60f2767:not(.elementor-motion-effects-element-type-background), .elementor-176 .elementor-element.elementor-element-60f2767 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-176 .elementor-element.elementor-element-21ea90b{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-176 .elementor-element.elementor-element-7d74a62{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-176 .elementor-element.elementor-element-9f5f875{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}body.elementor-page-176:not(.elementor-motion-effects-element-type-background), body.elementor-page-176 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}:root{--page-title-display:none;}@media(max-width:1024px){.elementor-176 .elementor-element.elementor-element-7452e75{--grid-auto-flow:row;}}@media(max-width:767px){.elementor-176 .elementor-element.elementor-element-7452e75{--e-con-grid-template-columns:repeat(1, 1fr);--grid-auto-flow:row;}}/* Start custom CSS for html, class: .elementor-element-6f4f9fa */body {
  font-family: Arial, sans-serif;
  background: #0a1f44;
  margin: 0;
  padding: 0;
  color: #fff;
}

.servicios-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 960px;
  margin: 60px auto;
}

.tarjeta-servicio {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  width: 300px;
  min-height: 550px; /* 🔥 Fuerza altura mínima */
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tarjeta-servicio:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

.tarjeta-servicio img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 20px;
  height: 200px;
  object-fit: contain;
}

.tarjeta-servicio h3 {
  color: #0a1f44;
  font-size: 1.3em;
  margin-bottom: 15px;
}

.tarjeta-servicio p {
  font-size: 0.95em;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.boton-servicio {
  display: inline-block;
  padding: 10px 20px;
  background-color: #54bdf0;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto;
}

.boton-servicio:hover {
  background-color: #329ecf;
}

@media (max-width: 960px) {
  .servicios-container {
    flex-direction: column;
    align-items: center;
  }
}/* End custom CSS */