@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeInSlide {
    0% {
        opacity: 0;
        translate: -20%;
    }

    100% {
        opacity: 1;
    }
}
   
@keyframes scaleOver {
    0%{
        scale:1;
    }
    
    100%{
        scale: 1.2;
    }
}


@font-face {
    font-family: Gothan;
    src: url('../font/Gotham-Medium.otf');
}

@font-face {
    font-family: Gothan;
    src: url('../font/Gotham-Bold.otf');
    font-weight: bold;
}

@font-face {
    font-family: Gothan;
    src: url('../font/Gotham-Light.otf');
    font-weight: lighter;
}

@font-face {
    font-family: Gothan;
    src: url('../font/Gotham-Thin.otf');
    font-weight: 100;
}

@font-face {
    font-family: Gothan;
    src: url('../font/Gotham-Book.otf');
    font-weight: 300;
}

@font-face {
    font-family: Gothan;
    src: url('../font/Gotham-Medium.otf');
    font-weight: 500;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    padding: 0;
    font-family: 'gothan';
}

p{
    margin: 0;
}

body { 
    background: rgba(46,43,46,1)    ;
    background-image: url('../img/bg.webp');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0;
    overflow-x: hidden;
  
}


body ::-webkit-scrollbar{
    background: transparent;
}

body ::-webkit-scrollbar-thumb{
    background-color: grey;
    border-radius: 10em;

}

.container {
    width: 100vw;  
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1s ease-in-out;
    margin: 0;
}

.divVideo {
    width: 100vw;
    height: 100vh;
    position: fixed;
    left: 0;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
}

.divVideo video {
  width: 100%;
  height: 100%;
  object-fit: cover;      
    
}

/* ========================== */
/*  Menu */
/* ========================== */

.divHead{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 0px solid red;
    width: 90vw;
    height: 14vh;
    color: white;
    font-family: gothan;
    font-weight: 300;
    font-size: 1.1vw;
    margin-top: 1%;
    gap: 1.2vw;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.divHeadLeft{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 0px solid red;
    width: auto;
    height: 100%;
    gap: 0.8vw;
}

.headItem{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0px solid red;
    width: 12vh;
    height: 100%;
}

#imgLogo{
    background-image: url('../img/logo.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    cursor: pointer;
}

.btMenu{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 2em;
    width: auto;
    font-size: clamp(0.8rem, 1vh, 3rem);
    padding: 1vh;
    cursor: pointer;
    backdrop-filter: blur(13px) brightness(100%);
}

.btMenuHamb{
    display: none;
    background: transparent;
    border: 2px solid rgb(255, 255, 255);
    border-radius: 1em;
    width: 48px;
    height: 44px;
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-direction: column;
}

.btMenuHamb .hambLine{
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 10px;
}

.menuPanel{
    display: flex;
    align-items: center;
    width: 100%;
}

.menuBackdrop{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 9990;
}

.menuBackdrop.active{
    opacity: 1;
    pointer-events: auto;
}

.divHeadRight{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border: 0px solid red;
    width: auto;
    height: 100%;
    margin-left: auto;
}

.divAnimaWhtas{
    height: auto;
    width: 5vw;
}

/* ========================== */
/*  Textos */
/* ========================== */
.divInicio{
    width: 100%;
    
}

.divTitulo{
    display: flex;
    width: 90%;
    border: 0px solid red;
    color: white;
    font-family: 'Gothan';
    height: auto;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.itemTitulo{
    border: 0px solid red;
    width: 80%;
    margin-top: 1%;
}

.itemTitulo h1{
    border: 0px solid red;
    margin-top: 1%;
    font-weight: 500;
    font-size: clamp(2rem, 2vw, 4rem);
}

.itemTitulo h2{
    font-size: clamp(1.2rem, 1vw, 3rem);
    font-family: 'Gothan';
    text-align: justify;
    font-weight: 300;
    margin-top: 2%;

}

#txtDescricao{
    display: flex;
    font-size: 1vh;
    width: 35%;
    border: 0px solid red;
    margin: 1%;
    margin-left: 0%;
}

#txtDescricao p{
font-size: clamp(1.2rem, 1vw, 3rem);
font-family: 'Gothan';
font-weight: 300;
margin-top: 2%;
}


.divProdutos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;     
    width: 95%;
    height: auto;
    border: 0px solid red;
    gap: 1vh;
    margin-top: -6%;
}

.thumbProduto {
    flex: 1 1 12%;
    min-width: 200px; 
    min-height: 60vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: contain;
    border: 0px solid red;
    margin-bottom: 2%;
    position: relative;   /* base pro overlay */
    overflow: hidden;     /* garante que a faixa não vaze */
}

.thumbProduto::after{
    content: attr(data-label);
    position: absolute;
    padding: 1%;
    width: auto;
    bottom: 5%;
    text-align: center;
    font-family: 'Gothan';
    font-size: clamp(1.2rem, 1vw , 3rem);
    line-height: 1.1;
    color: white;
    backdrop-filter: blur(13px) brightness(100%);
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    animation: 0.5s fadeInSlide 0.5s ease-in-out backwards;
    border-radius:1rem;
    z-index: 3;
    pointer-events: none; /* não rouba clique/hover */
}

figure {
    margin:0;
}

.thumbProduto:hover{
    animation: scaleOver 0.5s ease-in-out forwards;
}

#imgMesa{
    background-image: url('../img/imgMenu/Mesa\ Interativa.webp');
}
#imgTablet{
    background-image: url('../img/imgMenu/Totem\ Tablet.webp');
}
#imgTotem45{
    background-image: url('../img/imgMenu/Totem\ 45.webp');
}
#imgInterativo{
    background-image: url('../img/imgMenu/Totem\ Interativo.webp');
}
#imgCarregador{
    background-image: url('../img/imgMenu/Totem\ Carregador.webp');
}
#imgInt55{
    background-image: url('../img/imgMenu/Totem\ 55.webp');
}
#imgTotem32{
    background-image: url('../img/imgMenu/Totem\ 32.webp');
}

#produtos{
    width: 100%;
    height: auto; ;
}

.divItemD,
.divItemE {
  position: relative;
  overflow: hidden;
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 6vw; 
   width: 100%;
   height: auto;     
   padding: 4vh 0;

   }
   

.divItemD{
    color: #052531;
    background: rgb(255,255,255);
        box-shadow: 0 0px 24px -10px rgba(0, 0, 0, 0.788);

    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 58%, rgba(239,239,239,1) 100%);
}

.divItemE{
    color:White ;
    background: rgb(7,50,67);
    background: radial-gradient(circle, rgb(7, 7, 7) 0%, rgba(1,10,13,1) 100%);
    box-shadow: 0 0px 24px -10px rgba(0, 0, 0, 0.788);
    z-index: 1;
 }

 
.divTxtItem{
    display: flex;
    flex: 1 1 13%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 0px solid red;
    height: 90%;
    max-width: 40%;
    font-family: gothan;
}

.nomeItem{
    display: flex;
    border: 0px solid red;
    width: 80%;
    height: 25%;
    font-size: clamp(1.8rem, 1.8vw, 3rem);
    letter-spacing: -0.03em;
    font-weight: 500;
}

h3{
    margin: 0;
}

.itemSeparador{
 border: 1px solid #052531;
 margin-top: 1%;
 width: 70%;
 margin-right: 8%;
}

.itemSeparadorE{
    border: 1px solid #ffffff;
    margin-top: 1%;
    margin-right: 8%;
    width: 70%;
}

.itemDescricao{
    display: flex;
    border: 0px solid red;
    width: 80%;
    height: 25%;
    font-size: clamp(1.4rem, 1.2vw, 4rem);
        font-weight: 300;

    margin-top: 5%;
}



.btOrcamento{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 0px solid red;
    width: 30%;
    height: 20%;
    font-size: 1vw;
    font-weight: bold;
    margin-top: 10%;
}

.btWhats{
    border: 0px solid red;
    width: 100%;
    height: 5vh;
    background-image: url('../img/imgMenu/btWhats.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 1vh;
    
}




/* -----------------------------------------------
   SEÇÃO: Carrossel de fotos
------------------------------------------------- */
.slider{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 0px solid red;
    border-radius: 2em;
    height: auto;     
    width: 40%;   
}

.slideshow-container {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    height: 45vh;      
}

.file-name {
    border: 0px solid red;
    display: flex;
    text-align: center;
    font-family: 'gothan';
    font-weight: 300;
    color: white;
    font-size: clamp(1.3rem, 2.2vh , 3rem);
    padding: 1%;
    border-radius: 1em;
    position: absolute;
    bottom: 3%;
    backdrop-filter: blur(13px) brightness(100%);
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
    animation: 0.5s fadeInSlide 0.5s ease-in-out backwards;   
    z-index: 5;
}

.slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 2em;
    box-shadow: 0px 5px 10px 3px rgba(0, 0, 0, 0.192);
}

.slide video {
   width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.fade {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInSlide 1s ease-in-out;  
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 2%;
    font-weight: bold;
    font-size: clamp(1.3rem, 2vh, 4rem);
    border-radius: 20em;
    user-select: none;
    transform: translateY(-50%);
    transition: background-color 0.3s ease;
    backdrop-filter: blur(13px) brightness(100%);
    z-index: 5;
}

/* --- Estilo visual para carrossel em fundo escuro (divItemE) --- */
.divItemE .prev,
.divItemE .next {
    color: white;
    background-color: rgba(255, 255, 255, 0.2);
}

.divItemE .prev:hover,
.divItemE .next:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

/* --- Estilo visual para carrossel em fundo claro (divItemD) --- */
.divItemD .prev,
.divItemD .next {
    color: rgb(255, 255, 255);
    background-color: rgba(0, 0, 0, 0.2);
}

.divItemD .prev:hover,
.divItemD .next:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

/* Posição lateral */
.prev {
    left: 0;
}

.next {
    right: 0;
}
/* -----------------------------------------------
   SEÇÃO: RODAPE
------------------------------------------------- */

    .divRodape{
    border: 0px solid red;
    width: 100vw;
    background-color: white;
    display: flex;
    }

.divInfos{
        overflow: hidden;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        color: #073243;
        width: 100%;
        height: auto;
        min-height: 60%;
        padding-bottom: 4%;
        cursor: pointer;
}

.itemContato{
 flex: 1 1 20%; 
  display: flex;
  flex-direction: column;
  align-items: center;
}

.animaContato{
    height: auto;
    width: 28%;
}

.tituloContato{
    display: flex;
    text-align: center;
    font-family: 'Gothan';
    font-size: 2.5vh;
}

.txtContato{
    display: flex;
    text-align: center;
    font-family: 'Gothan';
    font-size: 1.8vh;
}

.divisor {
  width: 2px;
  background-color: #073243;
  height: 50%;
  margin-top: 2%;
}


@media screen and (orientation: portrait){
    body {
        background: none !important;
    } 

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: -1;
        pointer-events: none;
        background-image: url("../img/bg.webp");
        background-repeat: no-repeat;
       background-size: cover;
       background-position: center;
}


.divHead{
    position: relative;
    justify-content: center;
    padding-top: 1.2vh;
    padding-bottom: 1.2vh;
  }

  #imgLogo{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }

  .btMenuHamb{
    display: flex;
    position: fixed;
    right: 4vw;
    top: 8.5vh;
    transform: translateY(-50%);
    z-index: 9999;
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.185);
    backdrop-filter: blur(13px) brightness(100%);
  }

   .btMenuHamb .hambLine{
    transition: transform 0.2s ease, opacity 0.2s ease;
    transform-origin: center;        
    box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.185);
  }

  .divHead.menuOpen .btMenuHamb .hambLine:nth-child(1){
    transform: translateY(8px) rotate(45deg);
  }

  .divHead.menuOpen .btMenuHamb .hambLine:nth-child(2){
    opacity: 0;
  }

  .divHead.menuOpen .btMenuHamb .hambLine:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
  }

  .divHeadLeft{
    width: 100%;
    height: auto;
    border: 0;
    flex-direction: column;
    gap: 4vh;
    margin-top: 12vh;
  }

  .divHeadRight{
    width: 100%;
    height: auto;
    border: 0;
    flex-direction: column;
    margin-left: 0;
    gap: 4vh;
  }

  .btMenu{
    width: 100%;
    padding: 4%;
  }

  .divAnimaWhtas{
    width: 25vw;
  }
  
   .menuPanel{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(75vw, 350px);
    backdrop-filter: blur(10px);
    box-shadow: -20px 0 40px rgba(0,0,0,0.45);
    transform: translateX(110%);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 3vh 3vh;
    gap: 4vh;
    z-index: 9998;
  }


  .divHead.menuOpen .menuPanel{
    transform: translateX(0);
  }
    
    .divVideo video {
        position: fixed;
    }
     .divTitulo{
            justify-content: center;
            text-align: center;
            width: 90%;
    }

    .divInicio{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border: 0px solid red;
        width: 80%;
        margin-top: 5%;
        }
    

    .itemTitulo{
            border: 0px solid red;
            width: 100%;
            text-align: center;
        }

    .itemTitulo h2{
            text-align: center;
        }

    #txtDescricao{
        width: 100%;
        margin-top: 5%;
        justify-content: center;
    }

    #txtDescricao p{
    text-align: center;
    }

    .divProdutos{
        margin-top: 10%;
        gap: 5vh;
    }

    .thumbProduto {
    flex: 0 0 80%;
    max-width: 80%;
    }

    .divItemD,
    .divItemE {
    flex-direction: column;
    height: auto;
    }

    .slider{
        width: 85%;
        justify-content: center;
    }
    
    .divTxtItem{
        border: 0px solid red;
        width: 90%;
        max-width: 90%;
        height: auto;
        margin-top: 5%;
        margin-bottom: 5%;
    }

    .nomeItem{
        display: flex;
        justify-content: center;
        align-items: center;
        border: 0px solid red;
        width: 90%;
        height: auto;
        text-align: center;
        font-weight: bold;
    }

    .itemSeparadorE{
        margin-right: 0;
        margin-top: 2%;

    }

    h3{
        margin: 0;
    }

    .itemSeparador{
        margin-right: 0;
        margin-top: 2%;
    }

    .itemDescricao{
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .thumbProduto{
        background-position: center;
    }

    .btOrcamento{
    width: 100%;
    font-size: 2vh;
    margin-top: 5%;
    }

    .btWhats{
        height: 5vh;
    }
    
    .divRodape{
        justify-content: center;
        height: 100vh;
    }
     .divInfos{
      display: flex;
      flex-direction: column;
      width: 80%;
      gap:10vw;
    }
    .divisor{
        display: none;
    }

}

