* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;

}


.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgb(67, 115, 143);
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 9999;
    width: 65px;  
    height: 65px; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.whatsapp-icon svg {
    width: 40px; 
    height: 40px;
    fill: white;
}
.tooltip {
    visibility: hidden;  
    position: absolute;
    top: 50%;  
    right: 100%; 
    background-color: #26324A;
    transform: translateY(-50%) translateX(20px); 
    color: white;
    padding: 12px;
    border-radius: 20px;
    font-size: 18px;
    white-space: nowrap;
    opacity: 0; 
    pointer-events: none; 
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s; 
    margin-right: 7px;
}

.whatsapp-icon:hover .tooltip {
    visibility: visible;  
    opacity: 1;  
    pointer-events: auto; 
    transform: translateY(-50%) translateX(0);  
    transition: opacity 0.3s ease, transform 0.3s ease; 
}
header {
    background-color: #fff;
    padding: 15px 100px;

}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:relative;
}

.logo img {
    max-width: 250px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 60px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav ul li a:hover{
    color: #808080;
    transition: 0.5s;
}

.contact a:hover {
    color: #808080;
    transition: 0.5s;
}
.contact a {
    text-decoration: none;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bolder;
}


.contact svg {
    height: 25px;
    margin-right: 8px ;
}
/* banner */
.banner {
    position: relative;
    background: url('img/image\ 1.png') no-repeat center center/cover;
display: grid;
grid-template-columns: 55% 40%;
    align-items: center;
    justify-content: flex-start; 
    color: white;
    text-align: left; 
    height: 90vh; 
    width: 100%; 
    padding-left: 100px; 
    /*parallax effect*/
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 55px;
    margin-bottom: 10px;
}

.banner-content p {
    font-size: 30px;
    margin-bottom: 20px;
}

.btn {
    background-color:rgb(67, 115, 143);
    color: white;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background-color: #5e79b3;
    transition: 1s;
}

.button {
    padding-top: 10px;
}


/* sobre nos */
.container-about {
    text-align: center;
    background-image: url('img/image\ 1\ \(1\).png');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color:rgb(48, 84, 104);
}

.overlay-white {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(215, 228, 255, 0.2);
}

h1 {
    font-size: 50px;
    margin-bottom: 30px;
    font-weight: bolder;
}
.container-about p {
    font-size: 20px;
    font-weight: 400;
    color: rgb(58, 82, 95);
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.container-about h2 {
    font-size: 14px;
    font-weight: bolder;
    color: black;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 110px;
    padding-top: 30px;
}
.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 150px;
}
.feature img {
 height: 120px;
    margin-bottom: 20px;
}
.feature h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #34495e;
}
.feature p {
    font-size: 1em;
    color: #505d66;
}

/* oficina / servicos */

.container-services {
    text-align: center;
    background-image: url('img/image\ 3\ \(1\).png');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: #ffffff;
}

.container-services h1 {
    font-size: 50px;
    margin-bottom: 10px;
    font-weight: bolder;
}
.container-services p {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.container-services h2 {
    font-size: 14px;
    font-weight: bolder;
    color: rgb(145, 145, 145);
}


.cards-services {
padding-top: 10px;
display: grid;
grid-template-columns: 20% 20% 20% 20% 20% 20%;
grid-column-start: 3;
}

#card1 {
    grid-column-start: 2;
}

.card{
background-color: #D9D9D9;
color: #333;
border-radius: 30px;
padding: 10px 20px;
margin: 10px 5px;
}

.card h1 {
    font-size: 30px;
}

.card svg {
    height: 100px;
    padding-top: 20px;
    fill: rgb(48, 84, 104);
}

.card h2 {
    padding-bottom: 20px;
}


/* produtos */


.container-products {
    text-align: center;
    background-image: url('img/image\ 4.png');
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    color: #ffffff;
}

.h2-shop {
    font-size: 14px;
    font-weight: bolder;
    color: rgb(0, 0, 0);
}

.container-products h1 {
    font-size: 50px;
    margin-bottom: 30px;
    font-weight: bolder;
    color: rgb(48, 84, 104);
}
.container-products p {
    font-size: 20px;
    font-weight: 400;
    color: rgb(58, 82, 95);;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.cards-prod h2 {
    font-size: 14px;
    font-weight: bolder;
    color: rgb(116, 116, 116);
}

.cards-products {
    display: grid;
    grid-template-columns: 10% 20% 20% 20% 20% 10%;
    grid-column-start: 3;
  }

#card1-products {
    grid-column-start: 2;
}

.cards-prod{
background-color: #f1f1f1;
color: #333;
border-radius: 30px;
padding: 20px 20px;
margin: 10px 5px;
cursor: pointer;
}

.cards-prod h1 {
    font-size: 20px;
    margin-bottom: 15px;
}

.cards-prod img {
    width: 100%;
    border-radius: 20px;

}

.cards-prod h2 {
    padding-bottom: 20px;
}



.cards-products-second-layer {
    padding-top: 10px;
    display: grid;
    grid-template-columns: 10% 20% 20% 20% 20% 10%;
    grid-column-start: 3;
    }
    
.extern-shop {
    padding: 20px 50px;
    display: grid;
    grid-template-columns: 45% 70% 30% ;
    text-align: right;
align-content: end;

}

.extern-shop p {
    margin: 0;
    grid-column-start: 2;
}

    .extern-shop svg { height: 25px;
vertical-align: middle;
padding-left: 1%;
    }

/*modal*/

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 40px 20px; 
    box-sizing: border-box;
}

.modal-conteudo {
    background-color: #ffffff;
    padding: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    margin: auto; 
}


/* imagem do produto */
#img-prod {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
    margin: 15px 0;
}

.modal h2 {
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.modal h3 {
    color: #000000be;
    margin-top: 10px;
    font-weight: 400;
    font-size: 16px;
}

.fechar {
    color: #949494;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.fechar:hover,
.fechar:focus {
    color: #000;
}

/* botão orçamento */
.botao-comprar {
    margin-top: 20px;
    padding: 12px 20px;
    background-color: #34495e;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}



    /* contact form */


    .container-form {
        text-align: center;
        background-image: url('img/image\ 3\ \(1\).png');
        background-size: cover;
        background-position: center;
        padding-top: 100px;
        padding-left:  20px;
        padding-right:  20px;
        padding-bottom: 100px;

        color: #E9E3E3;
    }
    
    .h2-form {
        font-size: 14px;
        font-weight: bolder;
        color: #E9E3E3;
    }
    
    .container-form h1 {
        font-size: 50px;
        margin-bottom: 30px;
        font-weight: bolder;
        color: #ffffff;
    }
    .container-form p {
        font-size: 20px;
        font-weight: 400;
        color: #ffffff;
        max-width: 600px;
        margin: 0 auto 30px auto;
    }


.formulario-cf {
    border-radius: 10px;
    text-align: center;
    justify-content: center;   
       
    display: flex;
}


.contact-form {
    border-radius: 10px;
    text-align: center;
    max-width: 400px;          
    width: 100%;               
}
.contact-form h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-form p {
    color: #fff;
    margin-bottom: 20px;
}

label {
    font-size: 25px;
    display: block;
    text-align: left;
    margin-bottom: 5px;
    color: #fff;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 25px;
    border: none;
    background-color: #DCE2F8;
    font-family: "DM Sans", sans-serif;
    font-weight: 500;
    font-size: 16px;
}

textarea {
    height: 100px;
    resize: none;
    border-radius: 15px;
}

button {
    padding: 20px 25px;
    background-color: rgb(67, 115, 143);
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 18px;
    font-family: "DM Sans", sans-serif;
    box-shadow: 0.5px 0.5px 10px rgba(255, 255, 255, 0.205);
}



button:hover {
    background-color: #5f7ab4;
    transition: 1s;
}


/* map loc */

.map-container {
    width: 100%;
    height: 500px;

}

iframe {
    border: 0;
    width: 100%;
    height: 100%;
}

/* footer */

.grid-footer {
    background-image: url('img/image\ 3\ \(1\).png' );
    background-size: cover;
display: grid;
grid-template-columns: 55% 45%;
padding: 0px 50px;
padding-bottom:  10%
}

.bn-img {
    padding-top: 20%;
    text-align: center;

}

#logo-img {
    width: 550px;
}


.grid-info { padding-top: 20%;
    color: #fff; 
    font-size: 22px; 
    line-height: 1.5;
    margin-top: 20px; 
    grid-column-start:2 ;
}

.info-grid {
    display: flex; 
    align-items: center; 
    margin-bottom: 30px; 
;
}

.info-grid svg {
 width: 20px;
 margin-right: 20px;
 fill: #ffffff;
 vertical-align: middle;
}


/* developer credit footerpage */

.dev {
    background-color: rgb(30, 54, 72);
    padding-top: 20px;
    padding-bottom: 30px;
    text-align: center;
    color:  rgb(189, 209, 233);
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    position: relative;
    bottom: 0;
    width: 100%;
   box-shadow: 0 -20px 10px rgb(30, 54, 72);
}

.dev p {
    margin: 0;
}

::selection{
    background-color:#5873a898;
    color: #ffffffd2;
}

/*responsividade*/

@media (max-width: 768px) {
    .cards-products, .cards-products-second-layer {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0 10px;
    }
  
    .cards-prod {
      width: 100%;
      max-width: 360px;
      margin: 20px 0;
    }
  
    .extern-shop {
      grid-template-columns: 1fr;
      text-align: center;
    }


.cards-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }

  .card {
    width: 100%;
    max-width: 360px;
    margin: 20px 0;
    text-align: center;
  }

  .card svg {
    height: 80px;
  }

  .card h1 {
    font-size: 24px;
  }

  .card h2 {
    font-size: 16px;
    padding: 10px 0;
  }


.grid-footer {
    background-image: url('img/image 3 (1).png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 50px;
    color: #fff;
    text-align: center;
    padding-bottom: 100px;
}


#logo-img {
    max-width: 105%;
}

.bn-img {align-items: center;
}

.grid-info {
    font-size: 20px;
    line-height: 1.6;
    width: 100%;
    max-width: 400px;
    padding-top: 10px;
    text-align: left;
}

.info-grid {
    display: flex;
    margin-bottom: 20px;
    text-align: left;
}

.info-grid svg {
    width: 20px;
    margin-right: 10px;
    fill: #ffffff;
}

.svg-loc{
    width: 100px;
}

.dev p {
    font-size: 16px;
}

}
    
  
@media screen and (max-width: 768px) {
    
    img, header, section, div {
        max-width: 100%;
    }

    .logo img {
        width: 30vh;
    }

    .menu-toggle {
        display: flex; 
        margin-left: auto;
    }

    header {

        position: relative; 
    }

.container{
    padding: 0px 20px;
}

.whatsapp-icon {bottom: 60px;
    right: 40px;
}

    nav {

        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        z-index: 1000;
    }

      nav.active {
        display: block;
      }
    
      nav ul {
        flex-direction: column;
        gap: 20px;
      }


    .contact {
        display: none;
    }

    .header {
        padding: 5vh 2vh;
        display: grid;
    }

    .banner {
        display: block;
        padding: 15vh 5vh;
        }

    .banner h1 {
        font-size: 40px;
        margin-bottom: 2vh;
    }

    .banner-content p {
        font-size: 25px;
        margin-bottom: 5vh;
    }

    .btn{
        font-size: 20px;
        border-radius: 30px;
    }

    .tooltip {
        display: none;
      }

    h1  {
        font-size: 30px;
    margin-bottom: 3vh;
    font-weight: 900;
}

.container-services h1{
    font-size: 30px;
font-weight: 900;}

 .container-services {
    padding: 40px;
 }

    .features{
        gap: 100px;
    }

    .feature h3 {
        font-size: 30px;
    }

    .feature p {
        font-size: 20px;
    }

    .container-products{
        padding: 40px 50px;
    }

    .cards-prod {
        max-width: 290px;
    }

.container-form {
    padding: 50px;
}

.container-about {
    padding: 50px;
}

}