/*--------------------------------------------------------------
# User Types Section
--------------------------------------------------------------*/

/* Clientes Box - Azul Grande */
.hero .content .clientes-box {
  background: linear-gradient(135deg, #1977cc, #2c4964) !important;
  color: #ffffff !important;
  min-height: 280px !important;
}

.hero .content .clientes-box h4 {
  color: #ffffff !important;
}

.hero .content .clientes-box p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.hero .content .clientes-box i {
  color: #ffffff !important;
}

.hero .content .clientes-box .btn-user-type {
  background: #ffffff !important;
  color: #1977cc !important;
  border: 2px solid #ffffff !important;
}

.hero .content .clientes-box .btn-user-type:hover {
  background: transparent !important;
  color: #ffffff !important;
}

/* Hacer todos los boxes más cuadrados */
.hero .content .icon-box {
  min-height: 280px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  padding: 30px 20px !important;
  border: 2px solid transparent !important;
  transition: all 0.3s ease !important;
}

.hero .content .icon-box:hover {
  transform: translateY(-10px) !important;
  border-color: var(--accent-color) !important;
  box-shadow: 0 15px 30px rgba(25, 119, 204, 0.3) !important;
}

.hero .content .clientes-box:hover {
  border-color: #ffffff !important;
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3) !important;
}

.hero .content .icon-box p {
  margin-bottom: 20px !important;
  flex-grow: 1 !important;
}

.user-types {
  padding: 80px 0;
  background-color: var(--background-color);
}

.user-type-box {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.user-type-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.user-type-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #2c4964);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.user-type-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.user-type-box:hover .user-type-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(25, 119, 204, 0.3);
}

.user-type-box h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.user-type-box p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 25px;
  flex-grow: 1;
}

.btn-user-type {
  display: inline-block;
  padding: 10px 25px;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.btn-user-type:hover {
  background: transparent;
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .user-types {
    padding: 60px 0;
  }

  .user-type-box {
    padding: 30px 20px;
    margin-bottom: 30px;
  }

  .user-type-icon {
    width: 70px;
    height: 70px;
  }

  .user-type-icon i {
    font-size: 28px;
  }

  .user-type-box h3 {
    font-size: 20px;
  }

  .user-type-box p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .user-type-box {
    padding: 25px 15px;
  }

  .user-type-icon {
    width: 60px;
    height: 60px;
  }

  .user-type-icon i {
    font-size: 24px;
  }
}
