@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&display=swap');
body {
  font-family:'Oswald', sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #2fbb1d;
  overflow-x: hidden;
}


* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.video-wrapper iframe {
  max-width: 100%; /* Asegura que no exceda los bordes */
  width: 100%; /* Escala correctamente en móviles */
  height: auto;
}


@media only screen and (max-width: 767px) {
  .navbar-collapse {
    z-index: 9999; /* Asegura que el menú de navegación tenga prioridad */
    position: relative; /* Establece el contexto de apilamiento */
  }

  .navbar-nav {
    padding: 20px 0;
    display: flex;
    flex-direction: column; /* Asegura que los elementos se apilen verticalmente */
    width: 100%; /* Para asegurar que ocupe toda la pantalla */
  }

  .navbar-nav .nav-item {
    margin: 5px 0;
    width: 100%; /* Asegura que los items ocupen el ancho completo */
  }
  .navbar-nav .nav-item a {
    font-size: 16px; /* Tamaño moderado para el texto */
    font-weight: 500; /* Peso de la fuente más ligero */
    color: #333; /* Gris oscuro para los textos */
    font-family: "Poppins", sans-serif; /* Fuente más elegante */
    padding: 10px 15px; /* Tamaño de los enlaces para que no se vean tan grandes */
    text-transform: uppercase; /* Texto en mayúsculas */
    transition: color 0.3s ease-out, text-decoration 0.3s ease-out; /* Transiciones suaves */
  }

  .navbar-nav .nav-item a:hover,
  .navbar-nav .nav-item a.active {
    color: #FE8464; /* Color del texto al hacer hover o estar activo */
    text-decoration: underline; /* Subrayar en hover */
  }
}
.logo-personalizado {
  border-radius: 50%; /* Hace la imagen circular */
  width: 100px; /* Ajusta el tamaño del logo */
  height: auto; /* Mantiene las proporciones */
  transition: transform 0.3s ease; /* Agrega una animación al pasar el ratón */
}

.logo-personalizado:hover {
  transform: scale(1.1); /* Amplía la imagen ligeramente al pasar el ratón */
}

/* Estilo para el contenedor del botón WhatsApp */
/* Estilo para el contenedor del botón de WhatsApp *//* Contenedor general */
/* Burbuja estilo conversación de WhatsApp */
.mensaje-burbuja {
  background-color: #63a72f; /* Color clásico de burbuja de WhatsApp */
  padding: 10px 14px;
  border-radius: 15px 15px 0 15px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  max-width: 100%;
  font-size: 14px;
  color: #333;
  position: relative;
  margin-bottom: 10px;
}

/* Triángulo de la burbuja */
.mensaje-burbuja::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-top-color: #dcf8c6;
  border-bottom: 0;
  margin-left: -8px;
  margin-bottom: -8px;
}


.whatsapp-floating-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

/* Botón flotante de WhatsApp */
.whatsapp-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgb(46, 114, 46);
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-button img {
  width: 40px;
  height: 40px;
  animation: pulse-animation 2s infinite;
}

/* Ventana emergente */
.whatsapp-popup {
  display: none;
  position: absolute;
  bottom: 75px;
  left: 0;
  background: #2b9627;
  border-radius: 10px;
  padding: 15px;
  width: 240px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  animation: fadeIn 0.3s ease-in-out;
}

/* Botón de abrir chat */
.whatsapp-popup .abrir-chat {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background-color: #25D366;
  color: rgb(255, 255, 255);
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.whatsapp-popup .abrir-chat:hover {
  background-color: #1ebe5d;
}

/* Animaciones */
@keyframes pulse-animation {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.8; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}





/* probando textosssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssssss */
.rotating-text-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #67e8f9; /* cyan-300 */
  color: #000;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  overflow: hidden;
  height: 50px;
  width: 200px;
  position: relative;
}

.rotating-text {
  position: absolute;
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}












/* Fuente para títulos */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
}

/* Fuente para el texto normal */
p, a, li {
  font-family: 'Roboto', sans-serif;
}









img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #fbfffb;
  margin: 0px;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: hsl(120, 40%, 98%);
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/*===== All Button Style ====--------------------------------------------------------------------------------------------=*/



.main-btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 0 25px;
  font-size: 16px;
  line-height: 45px;
  border-radius: 2px;
  border: 0;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#33c8c1),
    color-stop(50%, #119bd2),
    to(#33c8c1)
  );
  background: linear-gradient(to right, #33c8c1 0%, #119bd2 50%, #33c8c1 100%);
  background-size: 200%;
}

.main-btn:hover {
  color: #fff;
  background-position: right center;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*===== All Section Title Style =====---------------------------------------------------------------------------------------*/
.section-title .line {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#fe8464),
    to(#fe6e9a)
  );
  background: linear-gradient(#fe8464 0%, #fe6e9a 100%);
  width: 150px;
  height: 5px;
  margin-bottom: 10px !important;
}

.section-title .sub-title {
  font-size: 18px;
  font-weight: 400;
  color: #361cc1;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .section-title .sub-title {
    font-size: 16px;
  }
}

.section-title .title {
  font-size: 30px;
  padding-top: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title .title {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .section-title .title {
    font-size: 24px;
  }
}

.section-title .title span {
  font-weight: 400;
  display: contents;
}

/*===== All Preloader Style =====-------------------------------------------------------------------------------*/
.preloader {
  /* Body Overlay */
  position: fixed;
  top: 0;
  left: 0;
  display: table;
  height: 100%;
  width: 100%;
  /* Change Background Color */
  background: #fff;
  z-index: 99999;
}

.preloader .loader {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.preloader .loader .spinner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  margin-left: -32px;
  z-index: 18;
  pointer-events: none;
}










/*===== NAVBAR =====*/
/* Estilos del dropdown */
.navbar-nav .dropdown-menu {
  background-color: #222; /* Fondo oscuro */
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: none; /* Oculto por defecto */
  position: absolute;
  min-width: 200px;
}

/* Mostrar dropdown al pasar el mouse */
.navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
}

/* Estilos de los ítems del dropdown */
.dropdown-menu .dropdown-item {
  color: #fff;
  padding: 10px 15px;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

/* Hover en los ítems del dropdown */
.dropdown-menu .dropdown-item:hover {
  background-color: #444;
  color: #eae0a6;
}





/*===== NAVBAR COMPACTO =====*/




.navbar-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: #1F1F1F; /* Fondo oscuro */
  padding: 1px 0; /* Reduce el padding para hacer el navbar más delgado */
  box-shadow: 0 2px 4px rgba(243, 231, 231, 0.3); /* Sombra más ligera */
  transition: all 0.3s ease-in-out;
}

/* Navbar cuando está en sticky */
.sticky {
  background-color: #000000; /* Se oscurece un poco más al hacer scroll */
  padding: 3px 0; /* Reduce aún más la altura */
}

/* LOGO */
.navbar-brand {
  font-size: 1.3rem; /* Reduce el tamaño del logo */
  color: #fff;
  font-weight: 600;
  transition: transform 0.3s ease-in-out;
}

/* Efecto del logo al pasar el mouse */
.navbar-brand:hover {
  transform: scale(1.05);
  color: #f0f0f0;
}

/* BOTÓN MENÚ HAMBURGUESA */
.navbar-toggler {
  border: none;
  outline: none;
  padding: 5px;
}

.navbar-toggler .toggler-icon {
  width: 25px; /* Reduce el tamaño del icono hamburguesa */
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 4px 0;
  transition: all 0.3s ease-out;
}

/* Animación del icono hamburguesa cuando está activo */
.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  transform: rotate(45deg);
  top: 5px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  transform: rotate(-45deg);
  top: -5px;
}

/* MENÚ DE NAVEGACIÓN MÁS COMPACTO */
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 15px; /* Espaciado uniforme */
}

/* LINKS DEL MENÚ */




.navbar-nav .nav-item a {
  font-size: 20px; /* Reduce el tamaño del texto */
  font-weight: 500;
  color: #fff;
  padding: 8px 10px;
  transition: all 0.3s ease-in-out;
}

/* Efecto hover */
.navbar-nav .nav-item a:hover,
.navbar-nav .nav-item a.active {
  color: #eae0a6;
  transform: translateY(-2px); /* Elevación sutil */
}

/* Navbar sticky */
.sticky .navbar-nav .nav-item a {
  font-size: 19px; /* Reduce aún más el tamaño en modo sticky */
}

/* BOTÓN DE ACCIÓN */
.navbar-btn .main-btn {
  font-size: 14px;
  background-color: #444;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px; /* Bordes más redondeados */
  transition: all 0.3s ease-in-out;
}

/* Efecto hover del botón */
.navbar-btn .main-btn:hover {
  background-color: #666;
  transform: scale(1.05);
}

/* NAVBAR EN MÓVILES */
@media only screen and (max-width: 991px) {
  .navbar-area {
    padding: 8px 0; /* Ajuste para móviles */
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #222;
    z-index: 9;
    padding: 10px 0;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.4);
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .navbar-nav .nav-item {
    margin-bottom: 8px;
  }
}






/* From Uiverse.io by vinodjangid07 */ 
.tooltip-container {
  position: relative;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 17px;
  border-radius: 10px;
}

.tooltip {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  border-radius: 15px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
    inset -5px -5px 15px rgba(255, 255, 255, 0.1),
    5px 5px 15px rgba(0, 0, 0, 0.3), -5px -5px 15px rgba(255, 255, 255, 0.1);
}

.profile {
  background: #2a2b2f;
  border-radius: 10px 15px;
  padding: 10px;
  border: 1px solid #52382f;
}

.tooltip-container:hover .tooltip {
  top: -150px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.icon {
  text-decoration: none;
  color: #fff;
  display: block;
  position: relative;
}
.layer {
  width: 55px;
  height: 55px;
  transition: transform 0.3s;
}
.icon:hover .layer {
  transform: rotate(-35deg) skew(20deg);
}
.layer span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 15px;
  transition: all 0.3s;
}

.layer span,
.text {
  color: #e6683c;
  border-color: #e6683c;
}

.icon:hover.layer span {
  box-shadow: -1px 1px 3px #e6683c;
}
.icon .text {
  position: absolute;
  left: 50%;
  bottom: -5px;
  opacity: 0;
  font-weight: 500;
  transform: translateX(-50%);
  transition: bottom 0.3s ease, opacity 0.3s ease;
}
.icon:hover .text {
  bottom: -35px;
  opacity: 1;
}

.icon:hover .layer span:nth-child(1) {
  opacity: 0.2;
}
.icon:hover .layer span:nth-child(2) {
  opacity: 0.4;
  transform: translate(5px, -5px);
}
.icon:hover .layer span:nth-child(3) {
  opacity: 0.6;
  transform: translate(10px, -10px);
}
.icon:hover .layer span:nth-child(4) {
  opacity: 0.8;
  transform: translate(15px, -15px);
}
.icon:hover .layer span:nth-child(5) {
  opacity: 1;
  transform: translate(20px, -20px);
}

.instagramSVG {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: -webkit-linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}
.user {
  display: flex;
  gap: 10px;
}
.img {
  width: 50px;
  height: 50px;
  font-size: 25px;
  font-weight: 700;
  border: 1px solid #e6683c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
.name {
  font-size: 17px;
  font-weight: 700;
  color: #e6683c;
}
.details {
  display: flex;
  flex-direction: column;
  gap: 0;
  color: #fff;
}
.about {
  color: #ccc;
  padding-top: 5px;
}












.telefono-animado span,
.telefono-animado p {
  color: #ffffff;
  background: linear-gradient(90deg, #ff8a00, #e52e71, #9b00e8);
  background-size: 200% auto;
  padding: 5px 10px;
  border-radius: 8px;
  font-weight: bold;
  display: inline-block;
  animation: mover-color 4s ease-in-out infinite;
  transition: transform 0.3s;
}

.telefono-animado span:hover,
.telefono-animado p:hover {
  transform: scale(1.05);
}

@keyframes mover-color {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}





/* From Uiverse.io by doniaskima */ 
.btn-17,
.btn-17 *,
.btn-17 :after,
.btn-17 :before,
.btn-17:after,
.btn-17:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-17 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #000;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  text-transform: uppercase;
}

.btn-17:disabled {
  cursor: default;
}

.btn-17:-moz-focusring {
  outline: auto;
}

.btn-17 svg {
  display: block;
  vertical-align: middle;
}

.btn-17 [hidden] {
  display: none;
}

.btn-17 {
  border-radius: 99rem;
  border-width: 2px;
  padding: 0.8rem 3rem;
  z-index: 0;
}

.btn-17,
.btn-17 .text-container {
  overflow: hidden;
  position: relative;
}

.btn-17 .text-container {
  display: block;
  mix-blend-mode: difference;
}

.btn-17 .text {
  display: block;
  position: relative;
}

.btn-17:hover .text {
  -webkit-animation: move-up-alternate 0.3s forwards;
  animation: move-up-alternate 0.3s forwards;
}

@-webkit-keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  51% {
    transform: translateY(-80%);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes move-up-alternate {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(80%);
  }

  51% {
    transform: translateY(-80%);
  }

  to {
    transform: translateY(0);
  }
}




/* boton del baner------------------------------------------------------------------------------------------------- */ 
.btn-17:after,
.btn-17:before {
  --skew: 0.2;
  background: #fff;
  content: "";
  display: block;
  height: 102%;
  left: calc(-50% - 50% * var(--skew));
  pointer-events: none;
  position: absolute;
  top: -104%;
  transform: skew(calc(150deg * var(--skew))) translateY(var(--progress, 0));
  transition: transform 0.2s ease;
  width: 100%;
}

.btn-17:after {
  --progress: 0%;
  left: calc(50% + 50% * var(--skew));
  top: 102%;
  z-index: -1;
}

.btn-17:hover:before {
  --progress: 100%;
}

.btn-17:hover:after {
  --progress: -102%;
}









/* Estilos para el texto dentro del carrusel */
.carousel-caption {
  position: absolute;
  top: 40%; /* Ajustamos a 40% para mover el texto un poco arriba */
  left: 50%;
  
  text-align: center;
  color: white;
  z-index: 2; /* Asegura que el texto esté por encima de las imágenes */
}


/* Títulos */
.carousel-caption .header-title {
  font-size: 2.5rem; /* Tamaño de texto grande */
  font-weight: bold;
}

/* Subtítulos */
.carousel-caption .header-subtitle {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Asegurar que el texto se ajuste bien en pantallas pequeñas */
@media (max-width: 768px) {
  .carousel-caption .header-title {
    font-size: 1.8rem; /* Ajustar el tamaño del título en pantallas pequeñas */
  }

  .carousel-caption .header-subtitle {
    font-size: 1rem; /* Ajustar el tamaño del subtítulo en pantallas pequeñas */
  }
}

/* Ajusta las imágenes dentro del carrusel */
.carousel-item img {
  width: 100%; /* Asegura que la imagen ocupe todo el ancho disponible */
  height: 100vh; /* Altura completa para cubrir la ventana */
  object-fit: cover; /* Asegura que la imagen cubra el área sin deformarse */
}

/* El contenedor del carrusel */
.carousel-inner {
  width: 100%;
  height: 100vh; /* Toma toda la altura de la pantalla */
}


/* Mantiene el tamaño del banner */
.header-hero {
  position: relative;
  height: 100vh; /* Ocupa toda la pantalla */
  overflow: hidden;
}

/* Ajusta las imágenes del carrusel */
.carousel-item {
  height: 100vh; /* Altura completa */
  position: relative;
  object-fit: contain;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Asegura que la imagen cubra el área sin deformarse */
  position: absolute;
  top: 0;
  left: 0;
}

/* Animación de desvanecimiento */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* Oscurecimiento */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Asegura que el contenido del banner esté por encima */
.header-hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: white;
}

/* Botones de navegación */
.carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
}






/* Botón "Nosotros" con diseño skew -------------------------------------------------------------------------------------------*/
.btn-nav-nosotros {
  background: #FFB400;
  border: none;
  padding: 11px 20px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  width: 140px;
  text-transform: uppercase;
  cursor: pointer;
  transform: skew(-21deg);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  margin-left: 10px; /* Separación opcional */
}



/* font-weight: bold; para que se pongan en negritas lo saque se veia rara -------------------------------------------------------------------------------------------*/
.btn-nav-texto {
  display: inline-block;
  transform: skew(21deg);

  z-index: 2;
  position: relative;
}

.btn-nav-nosotros::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  background: #ff6600; /* Naranjo suave */
  opacity: 0;
  z-index: 1;
  transition: all 0.5s ease;
}

.btn-nav-nosotros:hover {
  color: #fff;
}

.btn-nav-nosotros:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
}





/* Botón personalizado para "Nuestros Servicios" */
.btn-dropdown-servicios {
  background: #FFB400;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 550;
  width: 220px;
  text-transform: uppercase;
  cursor: pointer;
  transform: skew(-21deg);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.btn-dropdown-texto {
  display: inline-block;
  transform: skew(21deg);
  position: relative;
  z-index: 2;
}

.btn-dropdown-servicios::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  background: #ff6600;
  opacity: 0;
  z-index: 1;
  transition: all 0.5s ease;
}

.btn-dropdown-servicios:hover {
  color: #fff;
}

.btn-dropdown-servicios:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
}

/* Asegura que el dropdown de Bootstrap funcione bien con el botón personalizado */
.btn-dropdown-servicios::after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  vertical-align: middle;
  border-top: 5px solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  transform: skew(21deg);
}



/* Corregir diseño en pantallas pequeñas */
@media (max-width: 576px) {
  .btn-dropdown-servicios {
    width: 100%;
    font-size: 14px;
    padding: 8px 12px;
    transform: none; /* sin skew para celulares */
    text-align: left;
  }

  .btn-dropdown-texto {
    transform: none;
  }

  .btn-dropdown-servicios::after {
    transform: none;
    margin-left: 8px;
  }
}





/* Botón único estilo skew animado------------------------------------------------------------------------- */
.btn-contacto-unico {
  background: #FFB400;
  border: none;
  padding: 11px 20px;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  width: 140px;
  text-transform: uppercase;
  cursor: pointer;
  transform: skew(-21deg);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

.btn-contacto-texto {
  display: inline-block;
  transform: skew(21deg);
  
  z-index: 2;
  position: relative;
}

.btn-contacto-unico::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  background: #ff6600; /* Color naranjo */
  opacity: 0;
  z-index: 1;
  transition: all 0.5s ease;
}

.btn-contacto-unico:hover {
  color: #fff;
}

.btn-contacto-unico:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
}


/* Botón estilo skew para Instagram */
.btn-instagram-unico {
  background: #FFB400;
  
  padding: 9px 20px;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 550;
  width: 160px;
  text-transform: uppercase;
  cursor: pointer;
  transform: skew(-21deg);
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
  text-decoration: none;
  color: #000;
}

.btn-instagram-texto {
  transform: skew(21deg);
  z-index: 2;
  position: relative;
}

.btn-instagram-icon {
  transform: skew(21deg);
  margin-right: 10px;
  z-index: 2;
  position: relative;
  font-size: 18px;
}

.btn-instagram-unico::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: 0;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  opacity: 0;
  z-index: 1;
  transition: all 0.5s ease;
}

.btn-instagram-unico:hover {
  color: #fff;
}

.btn-instagram-unico:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
}





/*===========================
  BRAND css 
===========================---------------------------------------------------------------------------------------------------*/
@media (max-width: 767px) {
  .brand-logo {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.single-logo {
  padding: 15px 30px;
  text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single-logo {
    padding: 15px 15px;
  }
}

@media (max-width: 767px) {
  .single-logo {
    padding: 15px 30px;
  }
}

@media (max-width: 767px) {
  .single-logo {
    width: 50%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .single-logo {
    width: 33.33%;
  }
}

.single-logo img {
  max-width: 100%;
  -webkit-filter: grayscale(5);
  filter: grayscale(5);
  opacity: 0.5;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single-logo:hover img {
  opacity: 1;
  -webkit-filter: none;
  filter: none;
}
/*===========================
  SERVICES css 
===========================*/

.single-services {
  background-color: #fff;
  box-shadow: 0px 5px 30px rgba(167, 167, 167, 0.16);
  transition: all 0.3s ease-out;
  padding: 50px 30px;
  border: 2px solid transparent;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.single-services:hover {
  border-color: #361cc1;
  transform: scale(1.05);
}

.single-services .services-icon img {
  transition: all 0.4s ease-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-services:hover .services-icon img {
  transform: scale(1.1);
}

.single-services .services-title a {
  font-size: 26px;
  font-weight: 700;
  color: #2e2e2e;
  transition: all 0.3s ease-out;
}

.single-services .services-title a:hover {
  color: #361cc1;
  text-decoration: underline;
}

.single-services .services-content .text {
  margin-top: 20px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

.single-services .services-content .more {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 400;
  color: #361cc1;
  transition: all 0.3s ease-out;
}

.single-services .services-content .more:hover {
  letter-spacing: 2px;
}

.single-services .services-icon {
  position: relative;
  margin-bottom: 20px;
}

.single-services .services-icon img {
  border-radius: 8px;
  object-fit: cover;
  transition: all 0.3s ease-out;
}

@media (max-width: 767px) {
  .single-services {
    padding: 20px;
  }

  .single-services .services-title a {
    font-size: 22px;
  }
}





/* Estilo para la nueva sección */
#nueva-seccion {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #fff;
}

/* Capa de oscurecimiento para que el texto resalte */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* Contenido central */
.contenido-seccion {
  position: relative;
  z-index: 2;
}

.titulo-seccion {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: #FF5733;
  letter-spacing: 2px;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.7);
  animation: slideIn 1s ease-out;
}

.descripcion-seccion {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  animation: fadeIn 1.5s ease-out;
}

/* Estilos para los botones */
.botones {
  margin-top: 30px;
  text-align: center; /* Centra los botones */
}

.btn-custom {
  display: inline-block;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  margin: 10px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

/* Estilos para el botón primario */
.btn-primario.btn-custom {
  background-color: #FF5733 !important;
  color: #fff !important;
  border: 2px solid #FF5733 !important;
}

.btn-primario.btn-custom:hover {
  background-color: #fff !important;
  color: #FF5733 !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Estilos para el botón secundario */
.btn-secundario.btn-custom {
  background-color: #333 !important;
  color: #fff !important;
  border: 2px solid #333 !important;
}

.btn-secundario.btn-custom:hover {
  background-color: #fff !important;
  color: #333 !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}








.botones {
  margin-top: 30px;
}

.btn-primario,
.btn-secundario {
  display: inline-block;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 50px;
  text-decoration: none;
  margin: 10px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-primario {
  background-color: #FF5733;
  color: #fff;
  border: 2px solid #FF5733;
}

.btn-primario:hover {
  background-color: #fff;
  color: #FF5733;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-secundario {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secundario:hover {
  background-color: #fff;
  color: #FF5733;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Animaciones */
@keyframes slideIn {
  from {
      transform: translateY(-50px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes fadeIn {
  from {
      opacity: 0;
  }
  to {
      opacity: 1;
  }
}






/*===========================NUEVA SECCION DE TRABAJOS====.........................................................=====--------------------------------=================*/



#trabajos-am-exclusivo {
  background: linear-gradient(160deg, #544343, #000000);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.trabajos-am-title {
  font-size: 2.5rem;
  color: #FFA726;
  font-weight: 800;
  letter-spacing: 1px;
}

.trabajos-am-subtitle {
  color: #ccc;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.trabajos-am-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #FFA726, #FFD700);
  margin: 20px auto;
  border-radius: 2px;
}

.trabajo-am-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(255, 167, 38, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trabajo-am-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(255, 215, 0, 0.35);
}

.trabajo-am-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  border-bottom: 3px solid #FFA726;
}

.trabajo-am-content {
  padding: 20px;
}

.trabajo-am-content h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 10px;
}

.trabajo-am-content p {
  font-size: 0.95rem;
  color: #ccc;
}

/* texto con colores  */
.titulo-degradado-exclusivo {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(270deg, #ffc107, #ff5722, #ff9800, #ffc107);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: brilloTextoGradient 10s ease infinite;
  text-align: center;
  display: inline-block;
  word-break: break-word;
  line-height: 1.2;
  max-width: 100%;
  padding: 0 1rem;
}

/* RESPONSIVE para pantallas pequeñas */
@media (max-width: 768px) {
  .titulo-degradado-exclusivo {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .titulo-degradado-exclusivo {
    font-size: 1.7rem;
  }
}

/* Animación opcional para el degradado (si no la tienes ya) */
@keyframes brilloTextoGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}





/* Contenedor principal */
.ferrema-slider--splide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

/* Track que oculta el overflow */
.ferrema-slider__track {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* Lista horizontal de slides */
.ferrema-slider__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  will-change: transform;
  transition: transform 0.3s ease;
}

/* Cada slide */
.ferrema-slider__slide {
  flex: 0 0 auto; /* No crecer ni reducir, ancho fijo */
  width: calc(100% / 3); /* 3 slides por página */
  box-sizing: border-box;
  padding: 0 10px;
}

/* Imagen y video dentro del slide */
.ferrema-slider__slide img,
.ferrema-slider__slide video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

/* Opcional: espacio entre slides */
.ferrema-slider__slide:not(:last-child) {
  margin-right: 10px;
}


.splide__slide {
  padding: 0 10px; /* espacio entre slides */
  box-sizing: border-box;
}

.splide__slide img,
.splide__slide video {
  width: 100%;
  height: 250px;      /* altura fija para uniformidad */
  object-fit: cover;  /* rellena sin deformar */
  border-radius: 10px;
  display: block;
}
.splide__list {
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .splide__slide img,
  .splide__slide video {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .splide__slide img,
  .splide__slide video {
    height: 140px;
  }
}

#ferrema-carrusel {
  background: linear-gradient(160deg, #544343, #000000);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 3rem 0; /* controla el espacio arriba y abajo */
}

/* Título principal */
.ferrema-carrusel-title {
  font-size: 2.5rem;
  color: #FFA726; /* naranja parecido */
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 0.5rem;
}

/* Subtítulo */
.ferrema-carrusel-subtitle {
  color: #ccc; /* gris claro */
  font-size: 1.1rem;
  margin-top: 0;
  margin-bottom: 2rem;
  text-align: center;
}

/* Línea decorativa */
.ferrema-carrusel-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #FFA726, #FFD700);
  margin: 0 auto 3rem auto;
  border-radius: 2px;
}

/* Ajustes para los slides (usando la clase de splide que tienes) */
.splide__slide img,
.splide__slide video {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 167, 38, 0.25);
  transition: box-shadow 0.3s ease;
}

.splide__slide:hover img,
.splide__slide:hover video {
  box-shadow: 0 12px 30px rgba(255, 215, 0, 0.5);
}

/* Opcional: agrega un fondo tenue detrás del carrusel para destacarlo */
.ferrema-splide {
  background: rgba(0, 0, 0, 0.6);
  padding: 1.5rem;
  border-radius: 16px;
}

#ferremaSplide .splide__pagination {
  display: none;
}



/*===========================
	ABOUT css 
===========================*/
/* ===== Sección About Mejorada ===== */
.aridosmontinos-about-area {
  padding: 80px 0;
  background: linear-gradient(135deg, #f3f4f6 0%, #e1e8ed 100%);
}

/* ===== Títulos ===== */
.aridosmontinos-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
  position: relative;
}

.aridosmontinos-title span {
  color: #27ae60;
  position: relative;
}

.aridosmontinos-title span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -5px;
  left: 0;
  background: #27ae60;
  transition: width 0.3s;
}



/* ===== Botón Mejorado con Animaciones ===== */



/* ===== Preguntas Frecuentes =====------------------------------------------------------------------------------------------------------- */
/* ===== Preguntas Frecuentes Mejoradas ===== */






/*===========================
  MAP SECTION STYLE
===========================*/
.mapa-estetico {
  background: #f5f0f0;
}

.titulo-ubicacion {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #212121;
}

.titulo-ubicacion span {
  background: linear-gradient(90deg, #ff9800, #ff5722);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.descripcion-ubicacion {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.mapa-container {
  width: 100%;
  height: 500px; /* Altura fija para que se note más grande */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mapa-container iframe {
  pointer-events: auto !important;
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  border-radius: 15px;
}
/* Aumentamos también el min-height del contenedor padre para que el mapa no se corte */
.col-lg-6.d-flex {
  min-height: 600px !important; /* antes 450px */
}

.mapa-container:hover {
  transform: scale(1.01);
}

/* Responsive ajustes */
@media (max-width: 768px) {
  .mapa-container {
    max-height: 400px; /* antes 300px */
  }

.mapa-touch-link {
  display: none;
}

  .descripcion-ubicacion {
    text-align: center;
  }

  /* En móvil el mapa debe tener altura fija */
  .mapa-container {
    max-height: 300px;
  }

    .col-lg-6.d-flex {
    min-height: 400px !important;
  }

}










/*===========================
	FOOTER  css 
===========================*/
.footer-modern {
  background-color: #f9f9f9;
  color: #333;
  padding: 60px 20px 40px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-radius: 20px;
  padding: 40px;
  background-color: #e4dfdf;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.footer-brand {
  flex: 1 1 300px;
  margin-bottom: 30px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-description {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 18px;
  color: #333;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #361cc1;
}

.footer-links {
  display: flex;
  flex: 2 1 600px;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 150px;
  margin-bottom: 20px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #361cc1;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid #7a7555;
  font-size: 14px;
  color: #666666;
  margin-top: 40px;
}

.footer-legal a {
  margin-left: 15px;
  color: #555;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #361cc1;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    padding: 30px 20px;
  }

  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-legal a {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* Animaciones para los enlaces del footer */
.footer-column ul li a,
.footer-social a,
.footer-legal a {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover,
.footer-social a:hover,
.footer-legal a:hover {
  color: #361cc1;
  transform: translateY(-3px) scale(1.05);
}




/*===== vuelta para arriba  =====*/
/* ===== Hero Banner Moderno ===== */
/* Estilo especial para "DyC" */
.highlighted-dyc {
  font-family: 'Playfair Display', serif; /* Asegúrate de importar esta fuente si no está */
  color: #ffd700;
  font-style: italic;
  font-size: 3.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
  display: inline-block;
  margin-left: 8px;
}

/* Responsive ajustado para móvil */
@media (max-width: 768px) {
  .highlighted-dyc {
    font-size: 2.2rem;
  }
}




  #rotating-text {
    display: inline-block;
    font-weight: bold;
    color: #ffd700;
    margin-left: 6px;
    transition: opacity 0.5s ease-in-out;
  }

.hero-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fade-in {
    animation: fadeInUp 0.5s ease-in-out;
  }
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 6s ease;
}

.hero-banner:hover .hero-image {
  transform: scale(1.05); /* efecto zoom suave */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  animation: fadeIn 1.5s ease;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(10, 10, 9, 0.7);
}


.hero-text p {
  font-size: 2.1rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 8px rgba(3, 3, 3, 0.6);
  font-weight: bold;
}

/* Botón reutilizado */
.hero-text .aridosmontinos-btn {
  font-size: 1.2rem;
  padding: 14px 28px;
}

/* Animación de entrada */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }
  .hero-text p {
    font-size: 1.2rem;
  }
}


.animated-gradient-text {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: auto;
  text-align: center;
  background-size: 300% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradient-move 1s linear infinite;
}

@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}




.servicio-card img {
  transition: transform 0.3s ease;
}

.servicio-card:hover img {
  transform: scale(1.1);
}


.servicios-section {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.servicio-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.servicio-card h4 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.servicio-card p {
  color: #555;
  font-size: 1rem;
}




/* seccion nuevaaaa KLAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA */
/* Fondo suave */
.seccion-nosotros {
  background: linear-gradient(135deg, #fff4e6, #fffcf4);
}

/* Imagen con sombra */
.sombra-img {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border-radius: 16px;
}

/* Animación tipo "blur text" */
.blur-text {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(10px);
  animation: blurIn 1.2s ease-out forwards;
}

@keyframes blurIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
  }
  50% {
    opacity: 0.5;
    filter: blur(5px);
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Títulos con colores cálidos */
.titulo-principal {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fc6806;
  margin-bottom: 20px;
}

.subtitulo-nosotros {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff9900;
  margin-bottom: 15px;
}

.descripcion-nosotros {
  font-size: 1.05rem;
  color: #222;
  line-height: 1.8;
  text-align: justify;
}

  .blur-text {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
  }

  .blur-text.animate {
    animation: blurIn 1.2s ease-out forwards;
  }











.back-to-top {
  font-size: 20px;
  color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#fe8464),
    color-stop(50%, #fe6e9a),
    to(#fe8464)
  );
  background: linear-gradient(to right, #fe8464 0%, #fe6e9a 50%, #fe8464 100%);
  background-size: 200%;
  text-align: center;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.back-to-top:hover {
  color: #fff;
  background-position: right center;
}

