.theme-btnAnkaa {
  background: rgb(180, 20, 40); /* burdeo más vivo */
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.theme-btnAnkaa:hover {
  background: rgb(96, 11, 22); /* burdeo más oscuro */
  box-shadow: 0 0 14px rgba(180, 20, 40, 0.7);
  transform: translateY(-2px);
  color: #fff;
}

/* .tp-slider-img {
  position: relative;
} */

.tp-slider-img::after {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7); /* capa oscura */
  z-index: 1;
}

.tp-slider-content-wrap {
  position: relative;
  z-index: 2;
} 

.service10-slider .single-slider .heading {
    min-height: 250px; /* ajusta según convenga */
}

.animated-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s forwards;
}

/* Escalonar animación */
.animated-line:nth-child(1) { animation-delay: 0.2s; }
.animated-line:nth-child(2) { animation-delay: 0.4s; }
.animated-line:nth-child(3) { animation-delay: 0.6s; }
.animated-line:nth-child(4) { animation-delay: 0.8s; }
.animated-line:nth-child(5) { animation-delay: 1s; }

/* Iconos */
.animated-line i {
    color: rgb(180, 20, 40);
    min-width: 25px;
    font-size: 20px;
}

/* Animación */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estilos para el botón de WhatsApp */
.whatsapp-wrap {
    position: fixed;
    right: 30px;
    bottom: 100px; /* Posicionado arriba de la flecha */
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(37, 211, 102, 0.5);
    z-index: 99;
    background-color: #009f3b; /* Verde de WhatsApp */
    transition: all 200ms linear;
}

.whatsapp-wrap::after {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f232"; /* Icono de WhatsApp de FontAwesome */
    text-align: center;
    line-height: 56px;
    font-size: 28px;
    color: #ffffff;
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
}

.whatsapp-wrap:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-wrap:hover::after {
    transform: scale(1.1);
}

.whatsapp-wrap svg path {
    fill: none;
}

.whatsapp-wrap svg.progress-circle path {
    stroke: #ffffff;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
}

.icon-wsp {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: blink 1.5s infinite; /* parpadeo suave */
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; } /* disminuye un poco la opacidad */
}

/* para celulares  */

/* Ocultar las imágenes normales en pantallas chicas */
@media (max-width: 992px) {
  .work-images {
    display: none;
  }
}

/* Forzar altura uniforme de las imágenes del carrusel */
#carouselSobreNosotros img {
  height: 300px;            /* ajusta a gusto: 250, 350, etc */
  object-fit: cover;        /* recorta sin deformar */
}

/* Flechas visibles con fondo semitransparente */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(46, 46, 46, 0.7); /* blanco con transparencia */
  border-radius: 50%;
  padding: 15px;             /* tamaño del círculo */
  background-size: 40% auto; /* hace el ícono más pequeño dentro del fondo */
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;                /* no ocupan toda la orilla */
}

/* Opcional: efecto suave en el hover */
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: rgba(255, 255, 255, 0.9);
}