/*

Vanilla Template

https://templatemo.com/tm-526-vanilla

*/

.service-item i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
  color: #3a86ff;
}

/* Animaciones personalizadas */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes tada {
  0% {
    transform: scale(1);
  }

  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }

  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }

  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}

.tada {
  animation-name: tada;
}

p {
  font-size: 15px;
  line-height: 25px;
}

section {
  padding: 25px 0 35px;
  background: #fff;
}

body {
  position: relative;
  /* we need this for the scrollspy */
  font-size: 14px;
}

a {
  color: #3CC;
}

a:hover {
  color: #FF0;
}

/*----------
  NAV
----------*/

.fixed-side-navbar {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 99999;
  margin-top: -100px;
  text-align: right;
  padding: 30px 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.fixed-side-navbar:hover {
  background: transparent;
}

.fixed-side-navbar:hover .nav>li>a>span {
  color: rgba(0, 0, 0, 0.5);
  display: block;
  background-color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  padding: 2px 12px;
  border-radius: 15px;
}

.fixed-side-navbar .nav>li a.active {
  background-color: transparent;
  color: black;
}

.fixed-side-navbar .nav>li a.active:after {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
}

.fixed-side-navbar .nav>li a.active:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 17px;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 10px;
}

.nav>li {
  position: relative;
  display: block;
}

.fixed-side-navbar .nav>li a {
  color: #fff;
  min-height: 32px;
  background: transparent;
  padding: 5px 45px 5px 25px;
  border-right: none;
}

.fixed-side-navbar .nav>li a span {
  display: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.fixed-side-navbar .nav>li a:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: rgba(250, 250, 250, 0.75);
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
}

.fixed-side-navbar .nav>li a:hover {
  background-color: transparent;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-color: black;
  boder-right: 0;
}

.fixed-side-navbar .nav>li a:hover>span {
  color: black;
  display: block;
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}


.primary-button a {
  display: inline-block;
  background-color: #ffb700;
  padding: 15px 24px;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
}


.parallax-content {
  width: 100%;
  min-height: 100vh;
  background-size: cover;
}


/* Banner principal */
.parallax-content.baner-content {
  position: relative;
  padding-top: 30vh;
  height: 100vh;
  text-align: center;
  background-image: url(../img/chilpo1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
  z-index: 1;
}

/* Máscara oscura */
.parallax-content.baner-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Título principal */
.baner-content h1 {
  margin: 0;
  font-size: 14rem;
  /* 160px aprox - tamaño aumentado */
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
  line-height: 1;
  animation: fadeInDown 1s ease;
}

/* Subtítulo con tamaño aumentado */
.baner-content span {
  display: block;
  font-size: 3.5rem;
  /* 56px aprox - tamaño aumentado */
  font-weight: 700;
  color: #fff;
  margin-top: 1rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease 0.3s both;
}

/* Parte naranja del subtítulo */
.baner-content em {
  color: #ffb700;
  font-weight: 700;
  font-style: normal;
  font-size: 3.5rem;
  /* Mismo tamaño que el span */
}

/* Botón */
.baner-content .primary-button {
  margin-top: 3rem;
  animation: fadeIn 1s ease 0.6s both;
}

/* Animaciones (se mantienen igual) */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Responsive para pantallas más pequeñas */
@media (max-width: 768px) {
  .baner-content h1 {
    font-size: 5rem;
    letter-spacing: 3px;
  }

  .baner-content span,
  .baner-content em {
    font-size: 2rem;
  }
}




/*SECCION 2*/
.service-content {
  position: relative;
  /* Necesario para el pseudo-elemento */
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 15vh;
  background-image: url(../img/taxco.jpg);
  background-attachment: fixed;
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  /* Asegura que el contenido quede sobre la máscara */
}

/* Máscara oscura semitransparente */
.service-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Ajusta este valor para más/menos oscuridad */
  z-index: -1;
  /* Coloca la máscara detrás del contenido */
}

.service-content .left-text h4 {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}

h4,
.h4 {
  font-size: 18px;
}

.service-content .left-text .line-dec {
  width: 45px;
  height: 3px;
  background-color: #ffb700;
  margin: 20px 0px 20px 0px;
}

.service-content .left-text p {
  color: #fff;
}

.service-content .left-text ul {
  padding: 0;
  margin-top: 30px;
  list-style: none;
}

.service-content .left-text ul li {
  margin: 15px 0px;
  font-weight: 600;
  color: #fff;
}

.service-content .left-text .primary-button {
  margin: 30px 0px;
}

.service-content .service-item {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 25px 30px;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
}

.service-content .service-item .line-dec {
  width: 45px;
  height: 3px;
  background-color: #ffb700;
  margin: 20px auto 15px auto;
}


/*SECCIÓN 3 PROYECTOS*/
.projects-content {
  position: relative;
  padding-top: 15vh;
  min-height: 100vh;
  background-image: url(../img/943928.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

/* Máscara oscura para el fondo */
.projects-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

/* Título de la sección */
.projects-content .section-title {
  color: #fff;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* Contenedor del carrusel */
.projects-content .owl-carousel {
  position: relative;
}

/* Items del carrusel */
.projects-content .project-item {
  margin: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.projects-content .project-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.projects-content .project-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Contenido de texto */
.projects-content .text-content {
  background-color: #fff;
  text-align: center;
  padding: 20px;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.projects-content .text-content h4 {
  margin-top: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
}

.projects-content .text-content span {
  font-size: 1rem;
  font-weight: 700;
  color: #ffb700;
  display: block;
  margin-top: 5px;
}

/* Navegación personalizada */
.projects-navigation {
  position: relative;
  margin-bottom: 30px;
}

.custom-nav {
  position: absolute;
  top: -70px;
  right: 0;
  display: flex;
  gap: 10px;
}

.custom-nav button {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-nav button:hover {
  background: #ffb700;
  transform: scale(1.1);
}

/* Ajustes para móvil */
@media (max-width: 768px) {
  .custom-nav {
    position: static;
    justify-content: center;
    margin-top: 20px;
  }

  .projects-navigation {
    margin-bottom: 15px;
  }
}

/* Estilos para el modal de proyectos */
.modal .modal-dialog {
  max-width: 90%;
  margin: 2rem auto;
}

.modal .modal-content {
  border-radius: 10px;
  overflow: hidden;
}

.modal .modal-header {
  background: #ffb700;
  color: white;
  border-bottom: none;
}

.modal .modal-body {
  padding: 2rem;
}

.modal .close {
  color: white;
  text-shadow: none;
  opacity: 1;
}

.modal .btn-primary {
  background-color: #ffb700;
  border-color: #ffb700;
}

.modal .btn-primary:hover {
  background-color: #e66a1a;
  border-color: #e66a1a;
}

/* Navegación del carrusel */
.projects-carousel-nav {
  text-align: center;
  margin-bottom: 20px;
}

.projects-carousel-nav span {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.projects-carousel-nav span:hover {
  background: #ffb700;
}

/* Puntos de navegación */
.owl-pagination {
  margin-top: 40px;
  text-align: center;
}

.owl-theme .owl-controls .owl-page span {
  width: 14px;
  height: 14px;
  margin: 0 5px;
  opacity: 0.5;
  background: #fff;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.owl-theme .owl-controls .owl-page.active span {
  opacity: 1;
  background: #ffb700;
}

/* Responsive */
@media (max-width: 768px) {
  .projects-content .section-title {
    font-size: 2rem;
  }

  .projects-content .project-item img {
    height: 200px;
  }
}


/*SECCION 4 TRABAJOS*/
.tabs-content {
  position: relative;
  /* Necesario para el pseudo-elemento */
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 8vh;
  background-image: url(../img/chilpo2.jpg);
  background-attachment: fixed;
  min-height: 100vh;
  background-size: cover;
  background-position: center center;
  z-index: 1;
  /* Asegura que el contenido quede sobre la máscara */
  color: #fff;
  /* Cambia el color del texto a blanco para mejor contraste */
}

/* Máscara oscura semi-transparente */
.tabs-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  /* Negro con 60% de opacidad */
  z-index: -1;
  /* Coloca la máscara detrás del contenido */
}

section {
  background-color: transparent;
  padding-bottom: 15px;
}

.wrapper {
  text-align: center;
}

.tabs {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

/* --- Estilos para las imágenes de las pestañas --- */

#tab1 img,
#tab2 img,
#tab4 img {
  width: 300px;         /* Ancho fijo de la imagen */
  height: 300px;        /* Alto fijo de la imagen */
  object-fit: cover;    /* Evita que la imagen se deforme, recortándola si es necesario */
  display: block;         /* Ayuda a manejar mejor los márgenes */
  margin: 0 auto 20px;  /* Centra la imagen y le da un espacio inferior */
}

.tabs li {
  display: inline-block;
  text-align: center;
  margin: 10px;
}

.tabs a {
  display: block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 15px;
  border: 4px solid #fff;
}

.tabs a:hover {
  color: #ffb700;
}

.tabs .active {
  border: 4px solid #ffb700;
}

.tabgroup div {}

.tabgroup p {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 25px;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/*AREA DE CONTACTO*/

/* --- Estilos para la sección de Contacto (#contact-us) --- */

/* Paso Opcional pero Recomendado: Importar la fuente Montserrat desde Google Fonts
   Coloca esta línea al inicio de tu archivo CSS si no la estás usando ya. */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

/* Estilo general del contenedor de texto de contacto */
#contact-us {
    /* Asigna la fuente a toda la sección */
    font-family: 'Montserrat', sans-serif; 
}

/* Título Principal (h4) */
#contact-us h4 {
    color: #fff;
    font-size: 32px;  /* Un poco más grande para mayor impacto */
    font-weight: 700; /* Letra más gruesa (bold) */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6); /* La clave del efecto */
    margin-bottom: 15px;
}

/* Línea decorativa naranja */
#contact-us .line-dec {
    width: 50px;
    height: 3px;
    background-color: #ffb700; /* Usando el color naranja de tus otras secciones */
    margin: 0 0 25px 0; /* Espaciado debajo de la línea */
}

/* Párrafo de texto */
#contact-us p {
    color: #fff;
    font-size: 17px;
    font-weight: 400; /* Peso normal */
    line-height: 1.7; /* Mayor espaciado entre líneas para legibilidad */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Sombra también para el párrafo */
    margin-bottom: 40px; /* Espacio antes del formulario */
}

/* Estilo para el texto en negrita dentro del párrafo */
#contact-us p strong {
    font-weight: 600; /* Hacerlo un poco más notable */
    color: var(--secondary-color);
}

.contact-content {
  /* 1. Base para el posicionamiento del overlay */
  position: relative; 
  
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 16vh;
  background-image: url(../img/chilpo.jpg);

  /* Propiedades recomendadas para que la imagen de fondo se vea bien */
  background-size: cover;
  background-position: center center;
  background-attachment: fixed; /* Para efecto parallax si lo deseas */

  /* 2. Aislamos el contenido para que no quede detrás del overlay */
  isolation: isolate;
}

/* 3. Aquí creamos la película transparente negra */
.contact-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  
  /* Ajusta el último valor (0.5) para más o menos oscuridad */
  /* 0.5 = 50% oscuro, 0.7 = 70% oscuro */
  background-color: rgba(0, 0, 0, 0.5); 
  
  /* 4. Coloca el overlay detrás del contenido (texto, formularios, etc.) */
  z-index: -1; 
}
.contact-form {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px 25px;
  margin-bottom: 30px;
}

#contact input {
  border-radius: 3px;
  padding-left: 15px;
  font-size: 13px;
  color: #232323;
  background-color: rgba(250, 250, 250, 1);
  outline: none;
  border: none;
  box-shadow: none;
  line-height: 50px;
  height: 50px;
  width: 100%;
  margin-bottom: 30px;
}

#contact textarea {
  border-radius: 3px;
  padding-left: 15px;
  padding-top: 10px;
  font-size: 13px;
  color: #232323;
  background-color: rgba(250, 250, 250, 1);
  outline: none;
  border: none;
  box-shadow: none;
  height: 165px;
  max-height: 220px;
  width: 100%;
  margin-bottom: 25px;
}

#contact button {
  display: inline-block;
  background-color: #ffb700;
  padding: 15px 24px;
  width: 100%;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 11px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.map {
  margin-bottom: 30px;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px 20px;
}



footer {
  text-align: center;
  background-color: #282b2f;
  padding: 70px 0px;
}

footer .primary-button {
  margin-bottom: 30px;
}

footer ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

footer ul li {
  display: inline-block;
  margin: 0px 4px;
}

footer ul li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background-color: #ffb700;
  color: #282b2f;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.5s;
  font-size: 17px;
}

footer ul li a:hover {
  color: #282b2f;
  background-color: #ffb700;
}

footer p {
  font-size: 12px;
  color: #fff;
  margin-top: 15px;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 0px;
}

footer em {
  color: #ffb700;
  font-weight: 600;
  font-style: normal;
}

@media (max-width: 767px) {

  .baner-content {
    padding-top: 30vh;
  }

  .baner-content h1 {
    font-size: 64px;
  }

  .baner-content em {}

  .baner-content span {
    font-size: 24px;
  }

  .baner-content .primary-button {
    margin-top: 15px;
  }

  .service-content {
    padding-top: 5vh;
    text-align: center;
  }

  .service-content .left-text .line-dec {
    width: 45px;
    height: 3px;
    background-color: #ffb700;
    margin: 20px auto 20px auto;
  }

  .service-content .left-text ul {
    text-align: left;
  }

  .service-content .service-item {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 25px 30px;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
  }

}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* LIGHT BOX */

body:after {
  content: url(../img/close.png) url(../img/loading.gif) url(../img/prev.png) url(../img/next.png);
  display: none;
}

body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;

  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;

  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../img/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container>.nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}

.lb-prev,
.lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../img/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../img/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  -moz-border-radius-bottomleft: 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../img/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.whatsapp-btn {
        background-color: #25D366;
        color: white;
        font-weight: bold;
        padding: 12px 20px;
        border-radius: 5px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }
    
    .whatsapp-btn:hover {
        background-color: #128C7E;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .whatsapp-btn i {
        font-size: 3.2em;
    }
    
    .form-control {
        margin-bottom: 15px;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        width: 100%;
    }
    
    select.form-control {
        height: 45px;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 15px;
    }

    .social-icons {
        display: flex;
        justify-content: center;
        gap: 15px;
        padding: 20px 0;
    }

    .social-icons li {
        list-style: none;
    }

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        color: white;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .social-icons a:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .primary-button a {
        background-color: #ffb700;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .primary-button a:hover {
        background-color: #e66a1a;
    }
/* Estilos para el logo de KODIQ */
.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.company-logo {
    max-width: 900px; /* Ajusta según el tamaño de tu logo */
    height: auto;
    filter: drop-shadow(3px 3px 10px rgba(0, 0, 0, 0.8));
    opacity: 0; /* Inicialmente invisible */
    animation: fadeInLogo 1.5s ease-in-out 0.5s forwards; /* Animación con retraso */
}

/* Animación fadeIn personalizada para el logo */
@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(20px); /* Efecto adicional de desplazamiento */
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajustes para pantallas más pequeñas */
@media (max-width: 768px) {
    .company-logo {
        max-width: 250px;
    }
}