body {
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.encabezado {
  max-width: 80%;
}
.encabezado .navbar-toggler {
  color: white;
}
.encabezado .navbar-toggler:hover {
  color: #85c226;
}
.encabezado .btn-success {
  background-color: #85c226;
}
.encabezado .btn-success:hover {
  background-color: #a9a9a9;
}

main {
  text-align: center;
}
main h2 {
  display: block;
  border-bottom: 1px solid black;
  margin: auto;
  font-size: 1.8rem;
  margin: 30px 20px 30px 20px;
}

.productos {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px;
  width: 80%;
  margin: auto;
}
.productos .prefabricados {
  width: 100%;
  height: 300px;
  border: 3px solid #85c226;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
  margin: 10px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.productos .prefabricados h4 {
  color: white;
  text-decoration: none;
  text-shadow: 1px 1px 0 black, -1px 1px 0 black, 1px -1px 0 black, -1px -1px 0 black;
}
.productos .prefabricados:hover {
  box-shadow: 10px 10px 20px gray;
  cursor: pointer;
  transform: scale(1.05);
}
.productos .pv {
  background-image: url("../../recursos/1_pre_viv/52-meson-granoblanco.jpg");
}
.productos .pu {
  background-image: url("../../recursos/2_pre_urb/jardineras/24_jardinera_huevo_2.jpg");
}
.productos .pa {
  background-image: url("../../recursos/3_pre_art/balaustres/1_balaustre_30cm_2.jpg");
}

@media (min-width: 900px) {
  .productos {
    flex-direction: row;
    width: 90%;
    height: 400px;
    align-items: stretch;
  }
  .productos .prefabricados {
    height: auto;
    margin: 15px;
  }
  .productos .pv {
    background-image: url("../../recursos/1_pre_viv/3-lav-ceramica.jpg");
  }
  .productos .pu {
    background-image: url("../../recursos/2_pre_urb/jardineras/2_jardinera_jarron.jpg");
  }
  .productos .pa {
    background-image: url("../../recursos/3_pre_art/capiteles/capitel_gotico_1.jpg");
  }
}
#galeriadeproyectos {
  background: lightgray;
  text-align: center;
}
#galeriadeproyectos h3 {
  color: black;
  padding: 15px;
  border-bottom: 1px solid black;
}
#galeriadeproyectos .img-fluid:hover {
  transform: scale(1.02);
}

.empresa .row .descripcion {
  background-color: #85c226;
}

#categorias .pv,
#categorias .pa,
#categorias .pu {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 15px;
}

.pv h3,
.pa h3,
.pu h3 {
  display: block;
  width: 100%;
  max-width: 300px;
  text-align: center;
  height: auto;
  border-radius: 10px;
  font-weight: normal;
  color: white;
  padding: 20px;
}

.pv h3 {
  background-color: red;
}

.pa h3 {
  background-color: blue;
}

.pu h3 {
  background-color: #f1cf00;
}

#categorias a {
  margin: 15px;
  position: relative;
}

#categorias img {
  width: 100%;
  width: 300px;
  height: 300px;
  border-radius: 20px;
  object-fit: cover;
  opacity: 0.5;
}

a span {
  position: absolute;
  text-align: center;
  font-size: 20px;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: black;
}

#categorias img:hover {
  box-shadow: 10px 10px 20px gray;
  cursor: pointer;
  opacity: 1;
}

a:hover span {
  opacity: 0;
}

#categorias img:active {
  transform: scale(1.05);
}

@media (min-width: 660px) {
  .pv h3,
  .pa h3,
  .pu h3 {
    width: 100%;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 990px) {
  #categorias {
    width: 100%;
    max-width: 990px;
    margin-left: auto;
    margin-right: auto;
  }
  .pv h3,
  .pa h3,
  .pu h3 {
    width: 100%;
    max-width: 990px;
  }
}
.d-grid {
  grid-template-columns: repeat(1, 1fr);
  grid-auto-rows: 300px;
}
.d-grid .img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.d-grid .img-fluid:hover {
  transform: scale(1.02);
}

@media (min-width: 576px) {
  .d-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .d-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .d-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.overlay {
  z-index: 10000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.7s ease;
  visibility: hidden;
  opacity: 0;
}
.overlay .slideshow {
  width: 90%;
  height: 90%;
  position: relative;
  display: flex;
  justify-content: center;
}
.overlay .slideshow .btn-cerrar {
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  transition: all 0.2s ease;
}
.overlay .slideshow .btn-cerrar:hover {
  transform: scale(1.2);
  cursor: pointer;
}
.overlay .slideshow .botones {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  color: rgb(133, 194, 38);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.overlay .slideshow .botones .fa-solid {
  pointer-events: none;
}
.overlay .slideshow .botones:hover > i {
  transform: scale(1.1);
  transition: all 0.2s ease;
}
.overlay .slideshow .adelante {
  right: 20px;
}
.overlay .slideshow .atras {
  left: 20px;
}
.overlay .slideshow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 992px) {
  .adelante {
    right: 5px;
  }
  .atras {
    left: 5px;
  }
}
footer {
  background-color: gray;
  color: white;
}
footer .info-footer {
  max-width: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: auto;
  padding-top: 20px;
  padding-bottom: 20px;
}
footer .info-footer h4 {
  font-size: 20px;
  text-align: center;
}

.contacto,
.redes {
  width: 100%;
  max-width: 100%;
  font-size: 15px;
  margin: 20px;
}

.contacto a,
.redes a {
  color: white;
  text-decoration: none;
}

.contacto a:hover,
.redes a:hover {
  cursor: pointer;
  color: rgb(133, 194, 38);
}

.contacto .fa-solid,
.contacto .fa-brands {
  font-size: 20px;
  margin: 10px;
}
.contacto .whatsapp,
.contacto .email,
.contacto .llamar,
.contacto .place {
  display: flex;
  align-items: center;
}
.contacto .direccion,
.contacto .numeros-wp,
.contacto .numeros-ph {
  display: flex;
  flex-direction: column;
}

.redes {
  text-align: center;
}
.redes .fa-brands {
  font-size: 30px;
  margin: 10px;
}

.copy {
  font-size: 15px;
  color: white;
}

@media (min-width: 1024px) {
  footer .info-footer {
    width: 100%;
    margin: auto;
  }
  .redes,
  .contacto {
    width: 100%;
    max-width: 45%;
  }
}

/*# sourceMappingURL=estilo.css.map */
