/*------------------------------------------------------------------

[Table of contents]

 - Preview page styles

-------------------------------------------------------------------*/

.section-title {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.section-title__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  text-align: center;
}

.section-title .btn {
  display: inline-block;
  margin-top: 40px;
}

.ui-title-page {
  display: block !important;
  padding-top: 80px;
  font-size: 40px;
}

.paralax {
  background-repeat: no-repeat;
  background-attachment: fixed !important;
  background-position: 50% 0;
}

.section-nosotros {
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}


/* El "falso" fondo que se difumina */
.section-blur-bg {

  background-image: url('../images/fondo/fondo.png');
  /* Tu imagen */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Mantiene el efecto parallax */
  position: relative;
  overflow: hidden;
  /* Para que el desenfoque no se salga de los bordes */
  z-index: 1;
}

.value-card2 {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  height: 100%;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  height: 250px;
}

.value-card2:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #d1212c;
  /* Color primario de tu tema */
}

.value-card2 .icon-wrapper {
  margin-bottom: 25px;
}

.value-card2 h3 {
  font-size: 20px;
  text-transform: none;
  margin-bottom: 15px;
  margin-top: 0;
}


.value-card {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
  height: 100%;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  height: 325px;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #d1212c;
  /* Color primario de tu tema */
}

.value-card .icon-wrapper {
  margin-bottom: 25px;
}

.value-card h3 {
  font-size: 20px;
  text-transform: none;
  margin-bottom: 15px;
  margin-top: 0;
}

.service-item {
  background: #fff;
  padding: 40px 30px;
  /* Un poco más de aire arriba y abajo */
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  height: 385px;
  text-align: center;
  /* Centra icono, h3 y p */
}

.service-item:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid #d1212c;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  color: #d1212c;
  margin-bottom: 25px;
  display: block;
  /* Cambiado a block para asegurar el centrado */
  width: 100%;
}

/* Ajuste para que la lista esté centrada como bloque pero alineada a la izquierda */
.list-mark-small {
  display: inline-block;
  /* Permite que el contenedor se centre */
  text-align: left;
  /* Mantiene los checks alineados a la izquierda */
  padding: 0;
  margin: 0 auto;
}

.list-mark-small li {
  font-size: 14px;
  margin-bottom: 8px;
  list-style: none;
  position: relative;
  padding-left: 25px;
}

.list-mark-small li::before {
  content: "\f00c";
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  color: #d1212c;
}

.section-contacto {
  position: relative;
  height: 155px;
  margin-top: 166px;
}