@import url("https://fonts.googleapis.com/css?family=Poppins:400,700|Lato:300,400,700&display=swap");
body {
  font-family:'Poppins', sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #6a6972;
  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 */
.custom-whatsapp-button {
  position: fixed;
  bottom: 20px; /* Ajusta la distancia del botón respecto al borde inferior */
  left: 20px; /* Ajusta la distancia respecto al borde izquierdo */
  z-index: 1000; /* Asegura que esté por encima de otros elementos */
}

/* Estilo para el ícono de WhatsApp dentro del contenedor */
.custom-whatsapp-button a img {
  width: 60px; /* Tamaño del ícono */
  height: 60px;
  border-radius: 50%; /* Hace que el ícono sea redondo */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Agrega una sombra para estética */
  transition: transform 0.3s ease, opacity 0.3s ease; /* Transición suave */
  animation: pulse-animation 2s infinite; /* Animación continua de pulso */
}

/* Animación de pulso para el logo */
@keyframes pulse-animation {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1); /* Aumenta ligeramente el tamaño */
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/* Efecto hover: aumenta el tamaño del ícono */
.custom-whatsapp-button a img:hover {
  transform: scale(1.2); /* Aumenta más el tamaño al pasar el mouse */
  opacity: 1; /* Asegura que el logo esté completamente visible */
}










/* 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(#00ff28 0%, #00ff28 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: #222; /* Fondo oscuro */
  padding: 1px 0; /* Reduce el padding para hacer el navbar más delgado */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); /* Sombra más ligera */
  transition: all 0.3s ease-in-out;
}

/* Navbar cuando está en sticky */
.sticky {
  background-color: #111; /* 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;
  }
}



/* 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;
}


/*===========================
  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;
  }
}


/*===========================
	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;
}

/* ===== Características con Íconos ===== */
.aridosmontinos-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.aridosmontinos-feature {
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease-in-out;
}

.aridosmontinos-feature:hover {
  transform: translateX(10px);
}

/* ===== Íconos Más Grandes y Llamativos ===== */
.aridosmontinos-feature img {
  width: 65px;
  transition: transform 0.3s;
}

.aridosmontinos-feature:hover img {
  transform: scale(1.2) rotate(5deg);
}

.aridosmontinos-feature p {
  font-size: 1.3rem;
  margin: 0;
  font-weight: 500;
  color: #333;
}

/* ===== Botón Mejorado con Animaciones ===== */
.aridosmontinos-btn {
  background: #27ae60;
  border: none;
  padding: 14px 24px;
  font-size: 1.2rem;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  margin-top: 20px;
  display: inline-block;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
  position: relative;
  overflow: hidden;
}

.aridosmontinos-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease-in-out;
}

.aridosmontinos-btn:hover::before {
  left: 100%;
}

.aridosmontinos-btn:hover {
  background: #219150;
  transform: translateY(-3px);
}

/* ===== Imagen con Sombra y Animación ===== */
.aridosmontinos-about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.aridosmontinos-about-image:hover img {
  transform: scale(1.05);
}

/* ===== Animaciones Globales ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.aridosmontinos-about-content,
.aridosmontinos-about-image {
  animation: fadeIn 1s ease-in-out;
}








/* ===== Preguntas Frecuentes =====------------------------------------------------------------------------------------------------------- */
/* ===== Preguntas Frecuentes Mejoradas ===== */
.aridos-montinos-faq-section {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.aridos-montinos-faq-section .section-title .title {
  font-size: 36px;
  font-weight: bold;
  color: #333;
  text-transform: uppercase;
}

.aridos-montinos-faq-item {
  display: flex;
  margin-bottom: 40px;
  transition: all 0.4s ease;
}

.aridos-montinos-faq-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.aridos-montinos-faq-image {
  flex: 1;
  max-width: 100%;
  margin-right: 20px;
}

.aridos-montinos-faq-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: scale(1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.aridos-montinos-faq-item:hover .aridos-montinos-faq-image img {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.aridos-montinos-faq-content {
  flex: 2;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.aridos-montinos-faq-content h4 {
  font-size: 26px;
  font-weight: bold;
  color: #1d1d1d;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.aridos-montinos-faq-content p {
  font-size: 16px;
  color: #777;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.aridos-montinos-faq-item:hover .aridos-montinos-faq-content h4 {
  color: #ff6a00; /* Color vibrante para el título */
}

.aridos-montinos-faq-item:hover .aridos-montinos-faq-content p {
  color: #444; /* Color más oscuro en el texto cuando se pasa el mouse */
}

@media (max-width: 767px) {
  .aridos-montinos-faq-item {
    flex-direction: column;
  }
  .aridos-montinos-faq-image {
    margin-bottom: 20px;
  }
}









.about-area {
  position: relative;
  z-index: 5;
}

.about-shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 35%;
  height: 100%;
  z-index: -1;
}

.about-shape-1 img {
  width: 100%;
}

@media (max-width: 767px) {
  .about-shape-1 {
    display: none;
  }
}

.about-shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 100%;
  z-index: -1;
}

.about-shape-2 img {
  width: 100%;
}

@media (max-width: 767px) {
  .about-shape-2 {
    display: none;
  }
}

.about-content {
  max-width: 480px;
}

.about-content .text {
  margin-top: 15px;
}

.about-content .main-btn {
  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%;
  height: 50px;
  line-height: 50px;
  padding: 0 35px;
  margin-top: 40px;
}

.about-content .main-btn:hover {
  background-position: right center;
}







/*===========================
  MAP SECTION STYLE
===========================*/
.map-section .map-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
}

.map-section iframe {
  border: none;
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.map-section .counter-wrapper {
  padding: 20px;
}

.map-section .counter-content {
  text-align: left;
}

.map-section .title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
}

.map-section .text {
  font-size: 16px;
  color: #555;
  margin-top: 20px;
}

/* Estilo del overlay transparente */
.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0); /* Transparente */
  cursor: pointer; /* Apunta al clic como un botón */
}

/* Estilos responsivos */
@media (max-width: 767px) {
  .map-section .col-lg-6 {
    margin-bottom: 30px;
  }

  .map-section iframe {
    height: 350px;
  }
}










/*===========================
	FOOTER  css 
===========================*/
.footer-area {
  background-color: #000; /* Fondo negro */
  position: relative;
  z-index: 5;
}

.footer-area::before {
  content: none; /* Elimina cualquier imagen de fondo */
}

.footer-widget {
  padding-top: 50px;
}

.footer-about .logo img {
  width: 160px;
}

.footer-about .text {
  color: #fff; /* Texto blanco */
  line-height: 30px;
  margin-top: 30px;
}

.footer-about .social {
  margin-top: 40px;
}

.footer-about .social li {
  display: inline-block;
  margin-right: 30px;
}

.footer-about .social li a {
  font-size: 22px;
  color: #fff; /* Íconos blancos */
  transition: all 0.3s ease-out 0s;
}

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

.footer-title .title {
  font-size: 24px;
  font-weight: 700;
  color: #fff; /* Títulos blancos */
}

.link-wrapper {
  padding: 0 35px;
}

.link-wrapper .link {
  padding-top: 20px;
}

.link-wrapper .link li {
  margin-top: 20px;
}

.link-wrapper .link li a {
  font-size: 16px;
  color: #fff; /* Enlaces blancos */
  transition: all 0.3s ease-out 0s;
}

.link-wrapper .link li a:hover {
  color: #361cc1;
}

.footer-contact .contact {
  padding-top: 20px;
}

.footer-contact .contact li {
  margin-top: 20px;
  font-size: 16px;
  color: #fff; /* Contacto blanco */
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 15px;
  padding-bottom: 30px;
}

.copyright-content {
  padding-top: 15px;
  text-align: center;
}

.copyright-content p {
  color: #fff; /* Texto del copyright blanco */
}

.copyright-content a {
  font-size: 16px;
  color: #fff; /* Enlaces del copyright blancos */
  transition: all 0.3s ease-out 0s;
}

.copyright-content a:hover {
  color: #361cc1;
}





/*===== vuelta para arriba  =====*/



.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;
}

