/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */

body {
  color: #5a5a5a;
}

.navbar{
  background-color: #1A1A1A;
}

.navbar-nav{
  margin: 5rem 0;
}

.navbar-nav .nav-item{
  font-size: 1.3rem;
  margin: 0 1.6rem;
}

.navbar-nav .nav-item:last-child{
  margin-right: 0;
  padding-right: 0;
}

main, nav, footer{
  background-color: #1A1A1A;
}

/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Carousel base class */
.carousel {
  margin-bottom: 0;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 18.5rem;
  z-index: 10;
}

.carousel-caption i{
  font-size: 5rem;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 40rem;
}

#myVideo {
  position: relative;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}


/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
/* rtl:begin:ignore */
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}

/* RESPONSIVE CSS
-------------------------------------------------- */

#tagline {
  padding: 3rem;
  border: 2px solid #C9952A;
  top: -7rem;
  background: #1A1A1A;
  position: relative;
  z-index: 100000;
  border-radius: 2rem;
}

#tagline h1{
  font-size: 2rem;
  font-weight: 700;
  color: #C9952A;
  padding-top: 0;
  margin-top: -40px;
}

#tagline h2{
  font-size: 1.5rem;
  font-weight: 300;
  color: #FFFFFF;
  margin-top: -40px;
}

#tagline #tagline-icon{
  display: inline-block;
  position: relative;
  top: -70px;  
  color: #1A1A1A;
  background: #C9952A;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: bolder;
}

#showcase {
  text-align: center;
  padding: 5rem 0;
  background: #1A1A1A;
}

#showcase small{
  font-size: 2rem;
  color: #FFFFFF;
  text-transform: uppercase;
}

#showcase h1{
  font-size: 3rem;
  color: #C9952A;
  margin: 2rem 0;
}

#showcase h2{
  font-size: 2rem;
  color: #C9952A;
  font-weight: 300;
}

#showcase-tabs{
  margin-top: 5rem;
}

.tab-navigation {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-navigation h4{
  margin: 1rem 0;
  font-size: 1.9rem;
}

.tab-navigation i{
  font-size: 1.9rem;
}

.tab-btn {
    padding: 1.58rem;
    background: #1A1A1A;
    border: 3px solid #C9952A;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #C9952A;
    text-align: start;
}

.tab-btn:hover {
    color: #C9952A;
    background: #1A1A1A;
}

.tab-btn.active {
    background: #C9952A;
    color: #1A1A1A;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.grid-item {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.grid-item:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.grid-item:hover .image-overlay {
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

#about{
  margin: 2rem 0;
}

#about > div > h2{
  font-size: 4rem;
  margin-top: 15rem;
  color: #C9952A;
}

#about > div > h4{
  font-size: 2rem;
  color: #FFFFFF;
}

#about-details{
  margin-top: -20rem;
  background:  linear-gradient(to bottom, rgba(26, 26, 26, 0.2), rgba(26, 26, 26, 1));
  padding-top: 2rem;
}

#about-details > p{
  font-size: 1.8rem;
  color: #FFFFFF;
  text-align: center;
}

#cta{
  text-align: center;
  margin-bottom: 4rem;
}

#cta h1{
  text-align: center;
  margin-bottom: 2rem;
  color: #C9952A;
  font-weight: 400;
}

.btn-primary{
  background: #C9952A;
  border-color: #C9952A;
  color: #FFFFFF;
  transition: all 0.3s ease;
  text-transform: uppercase;
  padding: 1rem 3rem;
  font-weight: 900;
}

.btn-primary:hover{
  background: #C9952A;
  border-color: #C9952A;
  opacity: 0.8;
  color: #1A1A1A;
}

#channel {
  text-align: center;
  padding: 8rem;
  background: #C9952A;
  color: #1A1A1A;
  border-bottom-left-radius: 160px;
}

#channel a{
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 3rem;
  text-transform: uppercase;
  color: #1A1A1A;
}

#social{
  margin: 5rem 0;
}

#contato {
  background: #414141 url(../img/bg-contato.png) no-repeat top center;
  color: #FFFFFF;
  padding: 2rem 0;
}

#contato h4{
  font-size: 2.1rem;
  text-transform: uppercase;
  font-weight: 200;
}

#contato p{
  font-size: 2rem;
  font-weight: 400;
}

footer{
  padding: 8rem 0;
  color: #FFFFFF;
}

footer p{
  font-size: 1.3rem;
  color: #FFFFFF;
  margin-top: 2rem;
  text-align: center;
}

#footer-menu > li > a.nav-link {
  font-size: 1.5rem;
  color: #FFFFFF;
  text-transform: uppercase;
}

@media (max-width: 1900px) {

  /* Estilos para tablets e telas HD com largura máxima de 800px */
  
  .navbar-nav .nav-item{
    font-size: 1.1rem;
    margin: 0 1.4rem;
  }

  #tagline h1{
    font-size: 1.6rem;
    font-weight: 700;
    color: #C9952A;
    padding-top: 0;
    margin-top: -40px;
  }

  #tagline h2{
    font-size: 1.3rem;
    font-weight: 300;
    color: #FFFFFF;
    margin-top: -40px;
  }

  .tab-navigation {
      display: flex;
      gap: 0.8rem;
      flex-wrap: wrap;
  }  
  
  .tab-navigation h4{
    margin: 0.5rem 0;
    font-size: 1.5rem;
  }

  .tab-navigation i{
    font-size: 1.5rem;
  }
  
  .tab-btn {
      padding: 1.3rem;
  }    

}

#internal {
  text-align: center;
  padding: 5rem 0;
  background: #1A1A1A;
}

#internal small{
  font-size: 2rem;
  color: #FFFFFF;
  text-transform: uppercase;
}

#internal h1{
  font-size: 4rem;
  color: #C9952A;
  margin: 2rem 0;
}

#internal p{
  font-size: 2rem;
  color: #C9952A;
  margin: 1rem 0;
}

#internal h2 , h2 a{
  font-size: 2rem;
  color: #FFFFFF;
  font-weight: 300;
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 1920px) {

  .navbar-nav .nav-item{
    font-size: 1.3rem;
    margin: 0 1.6rem;
  }  
   
  #tagline h1{
    font-size: 2rem;
    font-weight: 700;
    color: #C9952A;
    padding-top: 0;
    margin-top: -40px;
  }

  #tagline h2{
    font-size: 1.5rem;
    font-weight: 300;
    color: #FFFFFF;
    margin-top: -40px;
  }

  .tab-navigation {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
  }

  .tab-navigation h4{
    margin: 1rem 0;
    font-size: 2rem;
  }

  .tab-navigation i{
    font-size: 2rem;
  }

  .tab-btn {
      padding: 1.6rem;
  }

}

@media screen and (max-device-width: 640px) {

  .navbar-nav .nav-item{
    font-size: 1.3rem;
    margin: 0 1.6rem;
  }   

  #contato {
    padding: 1rem 0;
  }

  #contato h4{
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 200;
  }

  #contato p{
    font-size: 1rem;
    font-weight: 400;
  }

  .text-end{
    text-align: center;
  }

  .text-start{
    text-align: center;
  }

}

.form-control, .form-select {
  border-radius: 1rem;
  padding: 1rem;
  font-size: 1.5rem;
  border: 2px solid #C9952A;
  background-color: transparent;
  color: #FFFFFF;
}

.form-control::placeholder {
  color: #FFFFFF;
}

.form-control:focus, .form-control:active, .form-select:focus, .form-select:active {
  border: 2px solid #C9952A;
  background-color: #C9952A;
  color: #1A1A1A;
}

.form-control:focus::placeholder, .form-select:active::placeholder {
  color: #1A1A1A;
}

.form-select option::placeholder {
  color: #C9952A;
}


#portfolio{
  margin: 5rem 0 10rem;
}

#portfolio h2{
  font-size: 4rem;
  margin-top: 7rem;
  color: #C9952A;
  padding: 0 5rem;
  text-transform: uppercase;
}

#portfolio p{
  font-size: 2rem;
  color: #C9952A;
  padding: 0 5rem;
}

.text-primary{
  color: #C9952A !important;
}