/* Estilos personalizados para la sección About */
.ftco-about .img-about {
  position: relative;
  height: 100%;
  min-height: 450px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f8f9fa;
}

.ftco-about .img-about img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
}

.ftco-about .img-about .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: '';
  opacity: 0.15;
  background: #c81e1e;
  z-index: 1;
}

.ftco-about .heading-section .big {
  position: absolute;
  top: -30px;
  left: -10px;
  font-size: 7rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.05);
  z-index: -1;
  line-height: 1;
}

.ftco-about .counter-wrap .number {
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  color: #c81e1e;
  line-height: 1;
}

.ftco-about .counter-wrap .plus-sign {
  display: inline-block;
  font-size: 4rem;
  font-weight: 700;
  color: #c81e1e;
  line-height: 1;
  margin-right: 5px;
}

.ftco-about .counter-wrap .text span:last-child {
  display: block;
  font-size: 1rem;
  color: #666666;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Efecto hover sutil */
.ftco-about .img-about:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

@media (max-width: 767px) {
  .ftco-about .heading-section .big {
    font-size: 4rem;
    top: -20px;
  }
  
  .ftco-about .img-about {
    min-height: 300px;
    margin-bottom: 30px;
  }
}