/* servicios.css */
.servicios {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
    position: relative;
    background: url(../imgs/serviciosbg.jpg) no-repeat;
    background-position: center 55%; /* Muestra una parte más alta de la imagen */
    background-size: cover;          /* Asegura que la imagen cubra toda el área */
    overflow: hidden;
}
.servicios::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3f5891b2; /* Azul al 70% de opacidad */
    z-index: 1;
}

.servicios > * {
    position: relative;
    z-index: 2;
}

.servicios-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 2rem 0;
}

.servicios-tabs .col-auto {
    padding: 0.5rem;
}

.servicios-tabs .btn {
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.servicios-tabs .btn.active {
    background-color: #28C8C2;
    color: #0B1732;
}

.servicio-contenido {
    display: none;
    padding-bottom: 20px !important;
    margin-bottom: 0 !important;
}

.servicio-contenido.active {
    padding-bottom: 0;
    margin-bottom: 0;
    display: block;
    animation: fadeIn 0.8s;
}

.ajuste-margen {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

html {
  scroll-behavior: smooth;
}

.titulo-marcas {
  text-align: center;
  font-size: 1.4rem;                /* achica el texto */
  font-weight: bold;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3); /* borde más fino */
  border-radius: 10px;               /* menos redondeado */
  padding: 8px 16px;                 /* menos espacio interno */
  display: inline-block;
  margin: 0 auto;
  box-shadow: 0 0 5px rgba(0, 255, 255, 0.2); /* sombra más sutil */
  transition: 0.4s;
}

.img-icono {
  max-width: 100%;
  width: 160px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.main-app-img {
  max-width: 260px;
  width: 100%;
}

.hover-zoom:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.titulo-con-flechas {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 10px;
}

.titulo-con-flechas .flecha {
  font-size: 1.8rem;
  color: #f47964;
  transition: transform 0.3s ease;
}

.titulo-con-flechas .flecha.izquierda:hover {
  transform: translateX(-5px);
}

.titulo-con-flechas .flecha.derecha:hover {
  transform: translateX(5px);
}

.titulo-apps {
  margin: 0;
}

@media (max-width: 768px) {
  .parrafos-apps {
    flex-direction: column;
    text-align: center;
  }
}
.titulo-slider {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  font-family: 'Raleway', sans-serif;
  display: inline-block;
  padding-bottom: 10px;
}