@font-face {
  font-family: 'montserrat';
  src: url('../assets/fonts/montserrat/Montserrat-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'montserrat';
  src: url('../assets/fonts/montserrat/Montserrat-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'montserrat';
  src: url('../assets/fonts/montserrat/Montserrat-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: 'montserrat';
  src: url('../assets/fonts/montserrat/Montserrat-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: 'montserrat';
  src: url('../assets/fonts/montserrat/Montserrat-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'myriad-pro';
  src: url('../assets/fonts/myriad-pro/MYRIADPRO-REGULAR.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
}

:root {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='white' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

html, body {
  height: 100%;
  margin: 0;
}
body {
  font-family: "montserrat" , sans-serif;
  display: flex;
  flex-direction: column;
}
a{
  text-decoration: none;
}
p, ul, h5{
  margin: 0;
}

.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999; 
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  cursor: pointer;
}

.whatsapp-fixed:hover {
  background-color: #1ebe57;
}

.content {
  flex: 1 0 auto;
  /*background-color:  #040827;*/
}

.navbar{
  background-color: #3f3e3e;
  
}
.navbar-home {
  background-color: rgba(63, 62, 62, 0.8);
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease-in-out;
}
.navbar-nav .nav-link {
  text-transform: uppercase;
  font-family: "myriad-pro", sans-serif;
  font-weight: 400;
  position: relative;
  color: white;
  font-size: 14px;
  letter-spacing: 4px;
}

.contact-icons-header{
  display: none !important;
}

.contact-icons > a,
.contact-icons-header > a,
.contact-icons-footer > a{
  background-color: #ffffff;
    color: #282c34; 
    border-radius: 50%; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.contact-icons-header > a,
.contact-icons-footer > a{
    font-size: 1rem; 
    width: 30px;
    height: 30px;
}
.contact-icons{
  margin-top: 30px;
}
.contact-icons > a{
  font-size: 28px; 
    width: 50px;
    height: 50px;
}

.home-gallery {
  position: relative;
  width: 100%;
  /*height: calc(100vh - 90px);*/
  height:100vh;
  overflow: hidden;
  z-index: 1;
}

.gallery-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 2s ease-in-out;
  background-size: cover;
  background-position: center;
  z-index: 2;
}

  /* Activo para la imagen visible */
.gallery-slide.active {
  opacity: 1;
  z-index: 3;
}

.overlay-gallery-slide-garden-star{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.gallery-container-garden-star{
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  color: white;
  transform: translateY(-50%);
  z-index: 4;
}

.gallery-title-garden-star{
  font-size: 50px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 32px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.gallery-title-garden-star > span{
  font-weight: 700;
}

.btn-gallery-garden-star{
  background: rgba(0, 0, 0, 0.4); /* Blanco con 50% de transparencia */
    border: 2px solid white;
    color: white; 
  padding: 12px;
}

.btn-gallery-garden-star:hover {
  background: rgba(0, 0, 0, 0.8); /* Menos transparencia al pasar el mouse */
}

.services{
  padding-top: 120px;
  background-color: #040827;
  color: white;
}

.services-title{
  margin-bottom: 90px;
  text-align: center;
}
.services-title > h2{
  text-align: center;
  text-transform: uppercase;
}

.services-title > h2:nth-child(1){
  font-size: 50px !important;
  margin-bottom: 0px;
}

.services-title > h2:nth-child(2){
  font-size: 38px;
}

.services-title ul{
  padding: 0;
  display: inline-block;
  margin: 0 auto;
}

.services-title ul li{
  display: inline-block;
  position: relative;
  font-size: 16px;
  padding-left: 18px;
  margin-left: 12px;
}

.services-title ul li:nth-child(1){
margin-left: 0;
}

.services-title ul li::before {
  content: "•";
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background-color: white;
  border-radius: 50%; /* círculo */
  left: 0;
  top: 50%;
  margin-top: -2.5px;

}

.services-icons{
  text-align: center;
}

.services-icons-bottom{
  margin-top: 90px;
}

.service-icon img{
width: 60px;
}

.service-icon-title{
  margin-top: 20px;
  font-size: 16px;
}

.gallery-services{
  padding: 120px 0;
  background-color: #040827;
}

.grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.row {
  display: flex;
}
.list-container {
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-end; 
  padding-top: 10px;
  font-size: 24px;
  font-family: "montserrat" , sans-serif;
  text-align: right;
  list-style-position: inside;
  padding-left: 0; 
}

.list-container > ul > li {
  padding-left: 0;
  margin-left: 0;
}

.page-bottom{
  min-height: 300px; 
  position: relative;
 
}

.page-bottom::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #040827;
  z-index: -2;
}
.page-bottom::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 1080px;
  background-image: url('../assets/images/home-bg.png');
  background-size: cover;
  background-position: top;
  z-index: -1;
  opacity: 0.07;
  bottom: 0;
}

.who-we-are{
  padding: 120px 0;
  color: white;
  
}
.wwa-logo{
  text-align: center;
}
.wwa-logo > img{
  width: 160px;
}
.wwa-info{
  margin-top: 40px;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
}

.mission-vision{
  margin-top: 90px;
}

.mission h3,
.vision h3{
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 14px
}
.mission p,
.vision p{
  text-align: center;
  margin-bottom: 0px;
  width: 100%;
  line-height: 28px;
  font-size: 18px;
}

.mission h3::before{
  position: absolute;
  content: '';
  width: 30px;
  height: 4px;
  background-color: #ba1818;
  bottom: 0;
  left: 50%;
  margin-left: -15px;

}

.vision h3::before{
  position: absolute;
  content: '';
  width: 30px;
  height: 4px;
  background: linear-gradient(to right, #063069, #ffffff);
  bottom: 0;
  left: 50%;
  margin-left: -15px;

}
.vision{
  margin-top: 40px;
}
.engineers-image{
  position: relative;
  width: 90%;
  min-height: 500px;
  background-image: url("../assets/images/engineers-rectangle.jpg");
  background-size: cover;
  background-position: center;
  margin: auto;
}

.engineers-image::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background-color: white;
  left: -30px;
  top: 30px;
  z-index: -1;
  opacity: 0.08;
}

.engineers-image::after{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border:2px solid white;
  right: -20px;
  top: -20px;
  z-index: 2;
  opacity: 0.5;
}

.contacts{
  padding:120px 0;
  color: white;
}

.contacts-title{
  text-align: center;
  font-size: 50px;
}

.contact-info{
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  line-height: 28px;
}

/*------------------ Projects -----------------------*/

.background {
  position: relative;
  width: 100%;
  height: auto;
  background-image: url("../assets/images/Exterior.jpg"); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.86);
  z-index: 1;
}

.project-content{
  position: relative;
  color: white;
  z-index: 2;
  text-align: center;
}

.project-gallery{
  position: relative;
  background-image: url('../assets/images/main-gallery.jpg');
  background-size: cover;
  background-position: center;
  height: 460px;
  display: flex;
  justify-content: center; /* Centra horizontalmente */
  align-items: center; 
}

.overlay-project-gallery{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}

.btn-gallery-play{
  position: relative;
  z-index: 2;
  font-size: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  height: 65px;
  width: 65px;
  display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-gallery-play i {
  color: white;
}
.btn-gallery-play:hover{
  background-color: rgba(0, 0, 0, 0.8);
}

.project-info{
  margin-top: 200px;
}

.project-info-title{
  font-size: 50px;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 72px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 1);
}

.project-info-title > span{
  font-weight: 700;
}

.project-info p {
  font-size: 16px;
  width: 80%;
  margin: auto;
  text-shadow: 1px 1px 2px rgba(1, 10, 10, 1);
}


.amenities-section{
  margin-top: 72px;
}

.amenities-section .row p{
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 23px;
}

.amenities-footer{
  margin-top: 90px;
}

.amenities-footer p{
  font-size: 18px;
  text-transform: uppercase;
  width: 65%;
  margin: auto;
}

.payment-plan{
  text-transform: uppercase;
  margin-bottom: 200px;
}

.payment-plan-header{
  margin-top: 121px;
  margin-bottom: 72px;
}

.payment-plan-header h3{
  font-weight: 600;
  font-size: 30px;
}

.payment-plan-header p{
  font-size: 16px;
}

.payment-percentage p{
font-size: 16px;
font-weight: 400;
}

.percentage-number{
  font-size: 60px;
  font-weight: 700;
  color: #3399ff;
  line-height:0.9;
}

.payment-plan-footer{
  margin-top: 72px;
}
.payment-plan-footer h3 {
  font-weight: 400;
}

.payment-plan-footer p{
  font-size: 16px;
  font-weight: 400;
}

footer {
  flex-shrink: 0;
  background-color: #373737;
}

footer h5{
  margin-bottom: 20px;
}

footer a{
  color: white;
}
.services-footer-icon{
  display: inline-block;
  width: auto;
}

.services-footer-icon p{
  margin-top: 4px;
  font-size: 12px;
}

.copyright{
  background-color: #252424;
}

.map {
  height: 400px;
  width: 100%;
  background-image: url('../assets/images/map.jpg');
  background-size: cover;
  background-position: center;
}

.map a {
  display: block;
  height: 300px;
  width: 100%
}

@media (min-width: 992px) {

  .gallery-title-garden-star{
    font-size: 100px;
  }

  .services-title > h2:nth-child(1){
    font-size: 50px;
  }
  
  .services-title > h2:nth-child(2){
    font-size: 58px;
  }

  .service-icon img{
    width: 80px;
  }

  .service-icon-title{
    font-size: 20px;
  }

  .wwa-logo > img{
    width: 260px;
  }
  .wwa-info{
    font-size: 18px;
    text-align: left;
  }

  .border-left{
      border-left: 1px solid #4b4b4b;
  }

  .contact-icons-header{
    display: block !important;
  }

  .project-gallery{
    height: 760px;

  }

  .btn-gallery-play{
    font-size: 60px;
    height: 130px;
    width: 130px;
  }

  .project-info-title{
    font-size: 100px;
  }

  .project-info p {
    font-size: 22px;
  }

  .amenities-section .row p{
    font-size: 22px;
  }

  .amenities-footer p{
    font-size: 24px;
  }

  .payment-plan-header p{
    font-size: 20px;
  }

  .payment-plan-footer p{
    font-size: 20px;
  }

  .payment-percentage p{
    font-size: 20px;
  }
  

}

@media (max-width: 992px) {
  .services-icons-bottom{
    margin-top: 0px !important;
  }
  .list-container{
    font-size: 18px;
  }
  .home-gallery{
    height: 460px;
  }
  .gallery-services{
    padding-bottom:1px;
  }
  .who-we-are{
    padding-top:120px;
    padding-bottom: 0px;
  }

  .engineers-image{
    width: 100%;
    margin: 0px auto 90px auto;
    background-position: top;
  }

  .engineers-image::before{
    content: none !important;
  }
  
  .engineers-image::after{
    content: none !important;
  }
  .contacts-title{
    font-size: 30px;
  }
  .contact-info{
    font-size: 16px;
  }

  .contact-icons > a{
    font-size: 22px; 
    width: 40px;
    height: 40px;
  }

}