/* Fontes */ 
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

 ::-webkit-scrollbar {
    width: 12px; 
  }
  
  ::-webkit-scrollbar-track {
    background-color: #1A1C26; 
    border-radius: 10px;       
  }
  
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #1A1C26, #00598a, #04638894);
    border-radius: 25px;    
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #04638894, #00598a, #1A1C26);
  }

:root {
    --font-destaques:'Orbitron', Helvetica, sans-serif ;
    --font-textos: 'Roboto Flex', Helvetica, sans-serif;
}

body {
    background-color: #141414;
    scroll-behavior: smooth;
    height: 300vh;
}

.marquee-banner {
    margin-top: 95px;
    display: none;
    background: linear-gradient(90deg, #000000, #f5b8009c, #000000);
    font-family: helvetica;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    padding: 5px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1000;
    pointer-events: none
}

.marquee-text {
    letter-spacing: 3px;
    display: inline-block;
    white-space: nowrap;
    animation: marquee 28s linear infinite;
}

.aqua, .spek, .qprpro, .arc {
    font-weight: bold;
    text-decoration: line-through;
}

.timer-box {
    margin-top: 125px;
    display: none; /* Oculta inicialmente */
    text-align: center;
    opacity: .8;
    font-family: var(--font-destaques);
    color: #f5b800;
    background-color: rgba(21, 19, 22, 0.8);
    font-weight: bold;
    font-size: 1.1rem;
    padding: 5px 0;
    width: 100%;
    position: fixed;
    top: 0px; /* Posiciona abaixo do letreiro */
    left: 0;
    z-index: 999;
    pointer-events: none
   
}

@keyframes marquee {
    0% { transform: translateX(70%); }
    100% { transform: translateX(-100%); }
}


.scroll-margin {
    scroll-margin-top: 120px; 
}

 h3,  h1 {
    font-family: var(--font-destaques);
    color: #fff;
    text-align: center; 
    font-size: 1rem;
}

/* Cabeçalho */
header {
    width: 100%;
    position: fixed; /* Fixa o header no topo */
    top: 0;
    left: 0;
    background-color: rgba(21, 19, 22, .8); /* Fundo semi-transparente */
    backdrop-filter: blur(2px); /* Aplica o desfoque */
    z-index: 1000; /* Garante que o header fique acima de outros elementos */
    display: flex;
    justify-content: center;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 1rem;
}

.cabecalho-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.cabecalho-logo img {
    height: 100%;
    width: auto;
    max-height: 100px;
    max-width: 100%;
}

nav {
    width: 60%;
}

nav ul  {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

nav ul li a {
    font-size: 0.9rem;
    color: #eddfdf;
    display: block;
    font-family: var(--font-destaques) ;

    position: relative;
    text-decoration: none;
    transition: color 0.5s;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 3px;
    width: 0;
    background-color: #00598a;
    transition: width 0.5s;
    letter-spacing: 2px;
}

nav ul li a:hover::after {
    width: 100%;
}


/* Banner / Slogan  */ 
#container-banner {
    display: flex;
    max-width: 100%;
    width: 100%;
    margin: 50px 0px;
}

.background-img-banner {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 100%;
    height: 90vh;
    background-image: url(../assets/ramon-salinero-vEE00Hx5d0Q-unsplash.jpg);
    background-size: cover;
    background-position:  right center;
    background-repeat: no-repeat;
    padding: 10px 0 0 15px; 
    margin-top: 130px;
}

.content-info-banner {
    max-width: 85%;
    text-align: left;
    color: white;
}

.title-main-banner, .text-main-banner, .about-work-banner-text, .container-slides h3, #about h2, .marquee-text {
    color: #fff;
    text-shadow: 
        2px 2px 0 #141414, 
       -2px -2px 0 #141414,  
        2px -2px 0 #141414,
       -2px 2px 0 #141414,
        2px 0 0 #141414,
       -2px 0 0 #141414,
        0 2px 0 #141414,
        0 -2px 0 #141414;
}

.title-main-banner {
    font-family: var(--font-destaques);
    font-size: 2.8rem;
    text-align: left;
    margin-bottom: 15px;
}

.text-main-banner {
    padding: 2px;
    font-size: 1.2rem;
    font-family: var(--font-destaques);
}

/* Carroussel máquinas destaque  */ 
.container-slides {
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 1rem 0 1rem 0;
}

.container-slides h3 {
    width: 100%;
    font-weight: bold;
    padding: 5px;
    font-size: 1.2rem;
    color: #ccc;
    /* background: linear-gradient(90deg, #000000, #f5b800, #000000); */
    background: linear-gradient(90deg, #000000, #003366, #000000);

}

.carousel {
    position: relative;
    width: 100%;
    max-width: 2560px;
    overflow: hidden;
    border-radius: 2px;
}

.slides {
    width: 100%;
    display: flex;
    transition: transform 0.7s ease-in-out;
}

.slide {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.slide img {
    width: 100%;
    height: auto;
    position: relative;
    object-fit: cover;

}

.bullets {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100%;
    gap: 10px;
}

.bullet {
    width: 15px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.bullet.active {
    background-color: #00598a;
}

/* Container dos equipamentos com video */
.container-equipament {
    margin: 150px auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}

.equipament__info {
    border-bottom: 1px solid; 
    border-image: linear-gradient(to right, rgb(0, 145, 255), rgb(72, 0, 255), rgb(0, 79, 128)) 0.5;  
    margin-top: 110px;
    height: auto;
    width: 92%;
    display: flex;
    /* flex-direction: row; */
    justify-content: center;
    padding: 1rem;
    align-items: center;
}

.equipament__images {
    display: flex;
    position: relative;
}

.carousel__equipament {
    position: relative;
    width: 50%;
    overflow: hidden;
}

.carousel-images {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-images img {
    width: 100%;
    object-fit: cover;
    min-height: 400px;
}

.carousel-bullets {
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.bullett {
    width: 10px;
    height: 10px;
    background-color: #666;
    border-radius: 50%;
    cursor: pointer;
}

.bullett.active {
    background-color: #00598a;
}

.equipament__about {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 50%;
    height: auto;
    background-color: rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 2px;
}

.equipment-container__title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--font-destaques);
    color: transparent;
    background: linear-gradient(90deg, #046288, #048274);
    -webkit-background-clip: text;
    background-clip: text; /* Suporte para navegadores que não precisam do prefixo */
}

.equipment-container__details {
    line-height: 1.5rem;
    text-align: center;
    font-size: 1rem;
    font-family: var(--font-textos), 'Helvetica', sans-serif;
    color: #fff;
}

.machine-name {
   font-weight: bold;
}

.expandable-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .2rem;
    width: 50%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), linear-gradient(90deg, #17b5f3, #0e433d);
    cursor: pointer;
    margin-top: 2px;
    cursor: pointer;
    transition: background 0.8s, height 0.8s;
    transition: transform 0.3s ease; /* Transição suave para o salto */
}

.expandable-bar:hover {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), #11b09d83);
    border: 1px solid #00598a;
    transform: translateY(2px); /* Move o elemento 10px para cima */
}

.expandable-bar p {
    font-family: var(--font-destaques);
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

.additional-content {
    background: linear-gradient(68deg, rgba(0,0,0,1) 18%, rgba(42,38,38,1) 53%, rgba(20,20,20,1) 86%);
    display: none; 
    margin-top: 10px;
    width: 90%;
    padding: 10px;
    border: 1px solid; 
    border-image: linear-gradient(to right, rgb(0, 145, 255), rgb(72, 0, 255), rgb(0, 79, 128)) 0.5;  
    border-radius: 4px;
} 

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
    align-items: start;
}

.video-block {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.details-block {
    grid-column: 2 / 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dimensions, .price {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 4px;
    grid-row: auto;
}

.dimensions, .price {
    color: #ddd;
    border: 1px solid;
    border-image: linear-gradient(to right, rgb(0, 145, 255), rgb(72, 0, 255), rgb(0, 79, 128)) 0.5;  
    padding: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-radius: 4px;
}

.dimensions__info {
    padding: 2px;
    border: 1px solid #046288;
}

.dimensions h3, .price h3 {
    font-family: 'Helvetica', sans-serif;
    margin-bottom: 15px;
    text-align: center;
}

.dimensions p {
    margin-bottom: 5px;
}

.price__info {
    height: auto;
    width: 100%;
    margin-top: 50px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    border: 1px solid #00598a;
}

.price__info img {
    height: 30px;
    
}

.price__info__buy {
    padding: 1rem;
    justify-content: center;
    gap: 10px;
    display: flex;
    align-items: center;
    
}

.link__buy {
    font-family: var(--font-destaques);
    display: flex;
    justify-content: center;
    text-align: center;
    color: #fff;
    letter-spacing: 2px;
    padding: 1rem;
    width: fit-content;
    border-radius: 20px;
    background: rgb(21,82,110);
    background: linear-gradient(127deg, rgba(14, 72, 92, 1) 16%, rgba(20, 52, 72, 1) 44%, rgba(0, 33, 44, 1) 59%);
    transition: 0.5s;
}

.link__buy:hover {
    background: linear-gradient(127deg, rgba(25, 92, 112, 1) 16%, rgba(30, 72, 92, 1) 44%, rgba(10, 53, 64, 1) 59%);
    outline: 2px solid #00598a;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px #000;
    transform: translateY(-3px);
}


/* Sobre a Empresa*/
#Sobre h2  {
    font-family: var(--font-destaques);
    text-align: center;
    font-size: 1.2rem;
    margin: 50px 0 20px 0;
    color: #fff;
}

 .company-container {
    padding: 1rem;
    margin: 100px 0 100px 0;
 }

 .company-cards {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    flex-wrap: wrap;
 }

 .card-info {
    color: #fff;
    padding: 1rem;
    width: 40%;
    text-align: center;
    font-family: var(--font-textos);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    
    border-radius: 5px;
    background-color: #1A1C26;
 }

 .card-info  {
    line-height: auto;
 }

  .card-info  img {
    height: 100px;
    width: 100px;
 }

 /* Rodapé */
  #Contato {
    min-height: 50vh; 
    width: 100%;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex-direction: row-reverse;
    align-items: center;
    -webkit-box-shadow: 2px -187px 209px 100px rgba(0,89,138,1);
    -moz-box-shadow: 2px -187px 209px 100px rgba(0,89,138,1);
    box-shadow: 2px -187px 209px 100px rgba(0,89,138,0.5);
    background: rgb(20,20,20);
    background: linear-gradient(0deg, rgba(20,20,20,1) 33%, rgba(18,27,32,1) 56%, rgba(0,89,138,0.5) 91%);
  }

  #Contato p  {
    text-align: center;
    border-radius: 10%;
    color: #fff; 
    font-size: 0.8rem;
    font-family: var(--font-textos);
    font-style: italic;
    width: 50%;
    line-height: 15px;
  }

  .rodape__container {
    gap: 0.7rem;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    padding: 0.5rem; 
  }

  .rodape__icons  {
    border-radius: 50%;
    height: 40px;
    width: 40px;
    transition: box-shadow 0.3s ease;
  }

  .rodape_info_icon {
    height: 20px;
    width: 20px;
  }

  .rodape__links {
    display: flex;
    justify-content: center;
    gap: 1rem; 
  }
  
  .rodape__info {
    justify-content: flex-start;
    width: auto;
    display: flex;
    justify-content: center;
    gap: 1rem;
    align-items: center;
    width: 100%;
  }

  .rodape__info div {
    display: flex;
    align-items: center;
    gap: 0.2rem;
  }

  .rodape__info div span  {
    color: #fff;
    font-family: var(--font-textos);
    font-style: oblique;
  }

  .media-contact {
    position: fixed;
    bottom: 0px;
    right: 10px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }

  .media-contact a img {
    height: 40px;
    border-radius: 25%;
    transition: box-shadow 0.3s ease;
}

 .media-contact a:hover img {
    -webkit-box-shadow: -4px -3px 45px 4px rgba(37,211,102,0.5);
    -moz-box-shadow: -4px -3px 45px 4px rgba(37,211,102,0.5);
    box-shadow: -4px -3px 45px 4px rgba(37,211,102,0.5);
}

.rodape__icons:hover {
    -webkit-box-shadow: -4px -3px 45px 4px rgb(37, 75, 211);
    -moz-box-shadow: -4px -3px 45px 4px rgb(60, 37, 211);
    box-shadow: -4px -3px 45px 4px rgb(69, 37, 211);
}

/* Breakpoints */
@media (max-width:2560px) {
    .carousel__equipament {
        width: 50%;
    }

    
    .carousel-images img {
        min-height: 270px;
    }
   
    .equipament__about {
        max-width: 50%;
    }
}

@media (max-width:1508px) {
    .carousel__equipament {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .marquee-text {
        animation: marquee 26s linear infinite;
    }

    .container-equipament {
        align-items: center;
    }

    .equipament__info {
        flex-direction: column;
        align-items: center;
    }

    .equipament__about {
        max-width: 100%;
        min-width: 300px;
    }

    .equipament__images img {
        max-width: 100%;
        min-height: 190px;
    }

    .grid-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .expandable-bar {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), #11b09d);
        height: 40px; 
    }
    

    .video-block, .details-block {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .details-block {
        flex-direction: column;
    }
}

@media (max-width: 634px ) {
    header {
        width: 100%; 
        background-color: rgba(21, 19, 22, 0.7);
        backdrop-filter: blur(2px); 
    }

    .marquee-banner {
        margin-top: 120px;
    }
    
    .timer-box {
        margin-top: 145px;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .cabecalho-logo {
        margin-bottom: 5px;
        margin-right: 0;
    }

    .cabecalho-logo img {
        max-width: 90px;
    }

    nav  {
        width: 100%; 
    }
   
    nav ul li {
        margin: 0.5rem 0;
    }

    nav ul li:last-child {
       margin: 0;
    }

    .btn-header {
        margin-top: 1rem;
        margin-left: 0;
        padding: 10px 3px;
    }

    .btn-header:hover {
        background-color: #2596be;
    }

    .about-work-link-banner a:hover {
        background-color: #2596be;
    }

    .container-equipament {
        margin-top: 150px;
    }

    .slide img {
        object-fit: cover;
    }

    .bullet {
        height: 10px;
        width: 10px;
    }

    #container-banner {
        margin-top: 120px;
    }

    .background-img-banner {
        margin: 0px;
    }

    .title-main-banner  {
        font-size: 1.8rem;
    }

    .rodape__info div span  {
        font-size: 0.7rem;
    }

    .company-container {
        display: flex;
        justify-content: center;
    }

    .company-cards {
        width: 95%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .card-info {
        width: 100%;
    }

    #Contato {
        height: 70vh;
        
    }

    #Contato  p {
        width: 90%;
    }

}

@media (max-width:425px) {
    .header-container nav ul li a {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
   
    /* Sobre*/
    h1 {
        font-size: 1.5rem;
       
    }

    .card-info {
        width: 100%;
    }
}

@media (max-width: 396px) {
    .slide img {
        height: 300px;
        object-fit: contain;
        width: 110%;
    }

    .bullets {
        bottom: 2px;
    }

    .carousel-bullets {
        bottom: 5px;
    }

   .about-work-banner p {
        word-wrap: break-word; 
        width: 60%;
    }

    .rodape__info div span  {
        font-size: 0.6rem;
    }
}