/*Fuentes globales popins*/
@font-face {
  font-family: 'Poppins';
  src: url('../../assets/fonts/poppins/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../../assets/fonts/poppins/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Poppins';
  src: url('../../assets/fonts/poppins/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}


*:not(.fa):not([class^="fa-"]):not([class*=" fa-"]):not(.fas):not(.far):not(.fal):not(.fab) {
  font-family: 'Poppins', sans-serif;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: white;
}

/*Fuentes globales end*/

/*Menu de navegacion inicio*/

.app-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


.app-content {
  padding-top: 150px;
}

@media (max-width: 768px) {
  .app-content {
    padding-top: 100px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .app-content {
    padding-top: 100px;
  }
}

/*Estilos head*/
.navbar {
  padding: 5px 10px;
}

.navbar-brand {
  padding-top: 10px;
  padding-left: 50px;
  font-size: 1.5rem;
}

.navbar-nav .nav-item .nav-link {
  color: black;
  font-size: 1.1rem;
  padding: 10px 15px;
}

.navbar-nav .nav-item .nav-link:hover {
  color: red;
}


.whatsapp-container {
  margin-left: 20px;
  font-size: 14px;
}

.whatsapp-container .fa-whatsapp {
  /*Icono de whatsapp tamaño*/
  font-size: 24px;
}

.whatsapp-text {
  font-size: 11px;
  color: #666;
}

.whatsapp-number {
  font-size: 16px;
  color: rgb(91, 91, 91);
}

/*Cotizador vista desktop*/
.btn-cotizadoM {
  background-color: red;
  padding: 17px 30px;
  font-size: 1.2rem;
  border-radius: 30px;
  justify-content: flex-start;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.btn-cotizadoM img {
  width: 30px;
  height: auto;
}

.btn-cotizadoM:hover {
  background-color: #333;
  /* rojo en hover */
  color: white;
}




.btn-cotizadoM:hover {
  background-color: #333;
  /* rojo en hover */
  color: white;
}

.navbar-brand img {
  /*transition: height 0.3s ease;*/
  height: 82px;
}

.logo-scrolled {
  height: 60px !important;
}

/* Botón de idioma */
.lang-flag {
  display: inline-flex;
  align-items: center;
  margin-left: 15px;
  transition: opacity 0.3s;
}

.flag-icon {
  width: 22px;
  height: auto;
  box-shadow: 0 0 3px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.lang-flag:hover .flag-icon {
  transform: scale(1.05);
}


/*Menu desplegable*/
/* Estilo para mostrar dropdown en hover en escritorio */
/* Esconde el dropdown por defecto */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  min-width: 200px;
  padding: 0;
  margin: 0;
  background-color: #fff;
  border: 1px solid #ddd;
}

.active-productos>.nav-link {
  color: red !important;
}


/* Mostrar en hover */
@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
}



@media (max-width: 768px) {

  .navbar-brand {
    padding-top: 0;
    padding-left: 0;
  }

  .nav-item.dropdown .dropdown-menu {
    display: block;
  }

  .dropdown-menu {
    position: relative;
    background-color: #ffffff;
    border: 0;
  }

  .dropdown-item {
    padding-left: 30px;
  }

}


@media (min-width: 768px) and (max-width: 1024px) {

  .navbar-brand {
    padding-top: 0;
    padding-left: 0;
  }

  .nav-item.dropdown .dropdown-menu {
    display: block;
  }

  .dropdown-menu {
    position: relative;
    background-color: #ffffff;
    border: 0;
  }

  .dropdown-item {
    padding-left: 30px;
  }


}

/*End estilos head*/



/*Nuevo menu main*/
.header-contact-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 10px 20px;
  background-color: white;
  flex-wrap: wrap;
  /* ❌ Sin position: fixed */
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin-right: 10px;
  background: #333;
  color: white;
  border-radius: 5px;
  font-size: 16px;
  transition: background 0.3s;
  text-decoration: none;
}

.social-icons a:hover {
  background: red;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-info div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-info img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.contact-info span {
  font-size: 0.9rem;
  color: #333;
}

a {
  text-decoration: none;
}

.header-contact-bar {
  transition: opacity 0.5s ease, max-height 0.5s ease, padding 0.5s ease, margin 0.5s ease;
  opacity: 1;
  max-height: 200px;
  padding: 10px 20px;
  margin: 0;
  overflow: hidden;
}

/* Cuando se oculta */
.hide-bar {
  opacity: 0;
  max-height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

/*Menu secundario en mobile*/




/*Menu de navegacion end*/

/*Footer inicio*/
.footer-section {
  padding: 0;
  background-color: #0a0a0a;
  /* color plano para el fondo de derechos */
  color: white;
  overflow: hidden;
}

.no-derechos {
  position: relative;
  padding: 30px 25px;
  background: linear-gradient(to bottom left, #111 80%, #181818 100%);
}


.footer-overlay {
  position: absolute;
  top: 30px;
  right: 0;
  height: 100%;
  z-index: 1;
}

.footer-deco {
  height: 100%;
  height: 220px;
  object-fit: contain;
  pointer-events: none;
}

.footer-section .container {
  position: relative;
  z-index: 2;
}

.footer-subtitle {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 15px;
}

.footer-desc,
.footer-text {
  font-size: 0.9rem;
  color: #ccc;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #bbb;
  cursor: pointer;
}

.footer-hours {
  margin-top: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #bbb;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  text-decoration: none;
  /* asegura que no aparezca la línea */
  color: red;
  /* o el color que prefieras en hover */
}

.hour-row {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 8px;
}

.hour-day,
.hour-time {
  white-space: nowrap;
}

.hour-line {
  flex: 1;
  height: 1px;
  background-color: #666;
  margin: 0 10px;
  opacity: 0.6;
}

.footer-col-1 {
  padding-right: 25px;
}

.a:hover {
  text-decoration: none;
}

a {
  text-decoration: none;
}

.footer-social a {
  text-decoration: none !important;
  border: none;
  outline: none;
}

.footer-social a:focus,
.footer-social a:visited,
.footer-social a:active,
.footer-social a:hover {
  text-decoration: none !important;
  border: none;
  outline: none;
}




.footer-form {
  border: 2px solid #666;
  /* contorno gris */
  background-color: transparent;
  padding: 2px;
  border-radius: 0;
  display: flex;
}

.footer-form input {
  background-color: transparent;
  border: none;
  color: #bbb;
  flex: 1;
  padding: 10px;
  font-size: 0.9rem;
}

.footer-form input::placeholder {
  color: #bbb;
  /* Cambia este valor al color que quieras */
  opacity: 1;
  /* Asegura visibilidad en todos los navegadores */
}


.btn-red {
  background-color: red;
  color: white;
  padding: 17px 25px;
  font-size: 1.2rem;
  border-radius: 30px;
  font-weight: bold;
  border: none;
}

.btn-red:hover {
  background-color: #333;
  color: white;
}

.footer-social i {
  align-items: center;
  text-align: center;
  width: 38px;
  font-size: 1.1rem;
  margin-right: 15px;
  color: white;
  background-color: #333;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

.footer-social i:hover {
  color: red;
}

.footer-bottom {
  background-color: #0a0a0a;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.icon-overlap {
  position: absolute;
  top: -30px;
  /* lo sube por encima del borde */
  left: 20px;
  /* ajusta horizontalmente donde lo necesites */
  color: #00d0ff;
  /* azul claro (puedes usar cualquier otro tono) */
  font-size: 30px;
  z-index: 3;
}

.separacion {
  margin-left: 50px;
}

.footer-logo {
  width: 180px;
  height: auto;
  object-fit: contain;
}

.small-text {
  font-size: 0.8rem;
  letter-spacing: 1px;
  font-weight: 300;
  text-transform: uppercase;
  opacity: 0.8;
}

.footer-certificaciones .footer-subtitle {
  margin-bottom: 10px;
}

.cert-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.cert-img {
  height: 40px;
  object-fit: contain;
  filter: brightness(1.1) contrast(1.1);
}

.footer-col-4 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-align-offset {
  padding-top: 100px;
  /* Ajusta este valor hasta que se vea alineado */
}



/* RESPONSIVE: Asegura que se mantengan bien en móvil */
@media (max-width: 768px) {
  .footer-align-offset {
    padding-top: 0 !important;
  }

  .cert-logos {
    justify-content: center;
  }

  .cert-img {
    height: 35px;
  }
}


@media (max-width: 1366px) {
  .cert-img {
    height: 30px;
  }

}


@media (min-width: 768px) and (max-width: 1024px) {


  .footer-subtitle {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .footer-desc {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .footer-links li {
    margin-bottom: 6px;
    font-size: 0.85rem;
  }

  .footer-hours {
    margin-top: 15px;
  }

  .hour-row {
    font-size: 0.85rem;
    margin-bottom: 6px;
  }

  .footer-form {
    flex-direction: column;
  }

  .footer-form input {
    margin-bottom: 10px;
    width: 100%;
  }

  .btn-red {
    width: 100%;
  }

  .footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-social i {
    margin-right: 0;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .footer-col-1 {
    padding-right: 50px;
  }




}

/*Footer end*/