@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&display=swap');





body,
html {

  font-family: "Dosis", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;

}

.section {
  padding-top: 100px;
}

.navbar {
  margin-bottom: 0;
}

.navbar-nav .nav-link {
  cursor: pointer;
}

.carousel-item {
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.carousel-caption {
  bottom: 30%;
  transform: translateY(50%);
}

.carousel-caption h5 {
  font-size: 3.5rem;
}

.carousel-caption p {
  font-size: 1.5rem;
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Ajusta el nivel de opacidad aquí */
}

.carousel-overlay-ligth {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(100, 100, 100, 0.195);
  /* Ajusta el nivel de opacidad aquí */
}



.service-card {
  background-color: #fff;
  /* Fondo blanco */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Sombra ligera */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Transiciones suaves */
}

.service-card:hover {
  transform: translateY(-10px);
  /* Eleva la card en el hover */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  /* Sombra más intensa */
}

.service-card i {
  font-size: 48px;
  color: #c1a100;
  /* Color del icono */
  margin-bottom: 15px;
  transition: color 0.3s ease;
  /* Transición del color del icono */
}

.service-card h4 {
  margin-bottom: 15px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

.service-card p {
  color: #666;
  font-size: 1rem;
}

.service-card:hover i {
  color: #ffd900d5;
  /* Cambia el color del icono al hacer hover */
}

/* btn enviar */
.btn-custom {
  color: #c1a100;
  /* Color del texto */
  border: 2px solid #c1a100;
  /* Borde del color personalizado */
  background-color: transparent;
  /* Fondo transparente */
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  /* Transiciones suaves */
}

.btn-custom:hover {
  background-color: #c1a100;
  /* Color de fondo al hacer hover */
  color: #fff;
  /* Color del texto al hacer hover */
  transform: translateY(-3px);
  /* Eleva el botón ligeramente */
}

/* fin btn enviar */

/* cursor pointer img trabajos */
#trabajos img {
  cursor: pointer;
}

#Inicio {
  background: #f8f9fa;

}

#servicios {
  min-height: 450px;
  padding-bottom: 100px;


}

.footer {
  background: #222;
  color: white;
  padding: 20px 0;
}

.footer a {
  color: white;
}

.logo {
  width: 300px;
}

.logofooter {
  width: 350px;
}

.service-card {
  min-height: 230px !important;
}

.form-section {
  padding: 20px;

}

.form-section .form-control {
  width: 100%;
}

.cotizar {
  background: #bbb399 !important;
}

/* section contacto */

#contacto {
  background-color: #d0d0d0;
  padding: 3rem 0;
  min-height: 400px;
  padding-top: 70px;
}

#contacto h2 {
  color: #333;
  text-align: center;
  margin-bottom: 3rem !important;
}

#contacto .form-control,
#contacto .form-select {
  background-color: white;
  border: 1px solid #ced4da;
  border-radius: 0;
}

#contacto .btn-outline-dark {
  border-radius: 0;
  padding: 0.5rem 2rem;
}

@media (min-width: 992px) {
  #contacto .col-lg-9 {
    width: 75%;
  }
}

/* fin section contacto */

/* formulario cortinas */
.btn-outline-secondary.selected {
  background-color: #6c757d;
  color: white;
}

.btn-outline-secondary img {
  max-width: 100px;
  height: auto;
}

.form-select {
  background-image: url('img/presupuesto/flecha_select.png');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

/*  css de section cotizar */

.quote-section {
  position: relative;
  background-image: url('/img/telas.webp');
  background-size: cover;
  background-position: center;
  min-height: 650px;
  /* Altura mínima */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.overlay {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.7));
  width: 100%;
  height: 100%;
  /* Ocupa toda la sección */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
}

.quote-section h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.quote-section p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.quote-btn {
  padding: 15px 30px;
  font-size: 1.2rem;
  background-color: #ff6600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.quote-btn:hover {
  background-color: #e65c00;
}

.additional-info {
  margin-top: 30px;
}

.additional-info p {
  margin: 10px 0;
}

.additional-info i {
  margin-right: 10px;
}

.additional-info a {
  color: #ffffff;
  text-decoration: none;
}

.additional-info a:hover {
  text-decoration: underline;
}



/* fin seccion cotizar */


@media (max-width: 768px) {
  .container {
    max-width: 100% !important;
  }
}



/* fin formulario */




/* carrusel */

.trabajos-carrusel {
  width: 80%;
  margin: 0 auto;
  min-height: 350px;
}

.trabajos-carrusel .slick-slide {
  margin: 0 10px;
}

.trabajos-carrusel img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .trabajos-carrusel {
    width: 100%;
  }
}

/* fin carrusel */
/* slider h5 primero */
.t_h5 h5 {
  /* Tus estilos aquí */
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);

  padding: 10px 20px;
}

/* guarda de verticales*/
.verticales_imgBG {

  background-image: url('../img/muestras/verticales6.png');
  /* URL de la imagen de fondo */
  background-size: cover;
  /* Cubrir todo el contenido */
  background-position: center;
  /* Posición centrada */
  color: #1c1a1a;
  /* Color de texto */
  padding: 0;
  /* Espaciado interno */
  /* text-align: center;  Alineación del texto */
}

#guarda_verticales h1 {
  position: relative;
  font-size: 3.5em !important;
  margin-left: 10% !important;
}

.bg-verticales_gris {
  background: #c3ad91 !important;
}

.bg-verticales_dorado {
  background: #ffe016 !important;
}

.titulo-producto {
  height: 80px !important;
  align-items: center;
  color: #3f3f3f !important;
}

/* fin guardas */

/* tamaño img presupuesto */
.color-options img {
  max-width: 25px;
}
.recogimiento-options img {
  max-width: 75px;
}
.comando-options img {
  max-width: 75px;
}
.instalacion-options img {
  max-width: 75px;
  max-height: 100px;
}
/* fin tamaño img presupuesto */

/* css  productos */
.bandas-verticales {
  padding: 50px 0;
}

.bandas-verticales .title {
  background-color: #c3ad91;
  color: white;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.bandas-verticales .icon {
  margin-right: 10px;
}

.bandas-verticales .content-wrapper {
  padding-right: 30px;
}

.bandas-verticales .carousel-item img {
  object-fit: cover;
  height: 400px;
  border-radius: 10px;

}

.btn-primary {
  background-color: #c3ad91;
  border-color: #c3ad91;
}

.btn-primary:hover {
  background-color: #b19a7d;
  border-color: #b19a7d;
}

/*  */

/* btn wp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  color: #FFF;
}

@media screen and (max-width: 767px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}

/* fin btn wp */


/* media ================================================================ */

@media (max-width: 768px) {

  .form-section .form-control {
    width: 75%;
    margin: 0 auto;
  }
}

/*  galery */

.gallery-item {
  margin-bottom: 20px;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

#modalImage {
  max-height: 80vh;
  object-fit: contain;
}

.modal-dialog {
  max-width: 90%;
  margin: 1.75rem auto;
}

.modal-content {
  background-color: transparent;
  border: none;
}

.modal-body {

  padding: 8px !important;
  background-color: white;
  display: inline-block;
  max-width: 100%;
}

#modalImage {
  max-height: 80vh;
  max-width: 100%;
  object-fit: contain;
}

.modal-footer {
  background-color: white;
  border-top: none;
}

/*  */

/* slide-producto  */
#slide-producto {
  height: 400px !important;
}
#slide-producto2 {
  height: 400px !important;
}

#slide-producto .carousel {
  height: 400px !important;
}

#slide-producto2 .carousel {
  height: 400px !important;
}