/*--------------------------------------------------------------
# Estilos Personalizados para la Sección de Seguros GYD
--------------------------------------------------------------*/

/* Estilo general de la sección */
.gyd-services-section {
  padding: 80px 0;
  background-color: #f8f9fa; /* Un fondo gris muy claro */
}

/* Título principal de la sección */
.gyd-section-title {
  text-align: center;
  padding-bottom: 40px;
}

.gyd-section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0a2e57; /* Azul oscuro corporativo */
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
}

/* Línea decorativa debajo del título principal */
.gyd-section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: #4cb5f5; /* Azul claro corporativo */
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.gyd-section-title p {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Títulos de subsección (Personas / Empresas) */
.gyd-subsection-title {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.gyd-subsection-title h3 {
  font-size: 28px;
  font-weight: 600;
  color: #333;
}


/* Estilo de la tarjeta de servicio */
.gyd-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px 30px;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease-in-out;
  border-bottom: 5px solid #4cb5f5; /* Borde inferior azul claro */
}

/* Efecto hover en la tarjeta */
.gyd-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Icono de la tarjeta */
.gyd-card-icon {
  margin: 0 auto 30px auto;
  width: 72px;
  height: 72px;
  background: linear-gradient(45deg, #4cb5f5, #0a2e57);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.gyd-card-icon i {
  color: #fff;
  font-size: 32px;
}

.gyd-card:hover .gyd-card-icon {
  background: linear-gradient(45deg, #0a2e57, #4cb5f5); /* Invierte el gradiente en hover */
}

/* Título de la tarjeta */
.gyd-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  color: #0a2e57;
}

/* Descripción de la tarjeta */
.gyd-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Lista de servicios dentro de la tarjeta */
.gyd-service-list {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 15px;
  color: #333;
}

.gyd-service-list li {
  padding-bottom: 12px;
  display: flex;
  align-items: center;
}

/* Viñeta (check) de la lista */
.gyd-service-list li::before {
  content: "\f26a"; /* Código del ícono 'check-circle' de Bootstrap Icons */
  font-family: 'bootstrap-icons';
  color: #4cb5f5;
  font-weight: bold;
  margin-right: 8px;
}