/* corpo do html */
body {
    margin: 0;
    padding-top: 70px; /* Espaço para o header fixo */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
  }
  
  header {
    background-color: #fff;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    transition: box-shadow 0.3s ease-in-out;
  }
  
  header.scrolled {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  /* cabecalho e container ajuste */
  .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
  }
  
  /* loguinho */
  .logo {
    flex: 1;
  }
  
  .logo img {
    height: 50px;
  }
  
  /* Cmenu centralizado */
  nav {
    flex: 2;
    display: flex;
    justify-content: center;
    position: relative;
  }
  
  /* menu estiliado */
  nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  nav ul li {
    display: inline;
  }
  
  /* links */
  nav ul li a {
    text-decoration: none;
    color: #48e3e9;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
    position: relative;
  }
  
  /* efeito do mouse */
  nav ul li a:hover {
    color: #23c4ec;
    transform: scale(1.1);
  }
  
  /* linha embaixo do botao */
  nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: #000000;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
  }
  
  /* linha crescer */
  nav ul li a:hover::after {
    width: 100%;
    left: 0;
  }
  
  /* botão hamburguer */
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-left: auto;
   margin-bottom: 10px;
  }
  
  .menu-toggle span {
    
    width: 25px;
    height: 3px;
    background: #48e3e9;
    transition: 0.3s;
  }

  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
      margin-left: auto;
    }
  }
  
  
  /* responsivo */
  @media (max-width: 768px) {
    .container {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  
    nav {
        display: none; /* escondido por padrão no mobile */
        position: absolute;
        top: 60px;  /* logo abaixo do header */
        right: 20px;
        background-color: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        border-radius: 8px;
        width: 200px;
        padding: 10px 0;
        flex-direction: column;
        z-index: 1001;
      }
      
      nav.active {
        display: flex;
      }
      
      nav ul {
        flex-direction: column;
        padding: 0;
        margin: 0;
      }
      
      nav ul li {
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
      }
      
      nav ul li:last-child {
        border-bottom: none;
      }
      
      nav ul li a {
        color: #007bff;
        font-weight: bold;
        text-decoration: none;
        transition: color 0.3s;
      }
      
      nav ul li a:hover {
        color: #0056b3;
      }
      
  
    .menu-toggle {
      display: flex;
    }
  
    .container nav ul {
      flex-direction: column;
      gap: 10px;
      align-items: center;
    }
  
    .container nav ul li {
      display: block;
    }
  }
  
  .hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding: 120px 10%;
    background: linear-gradient(to right, #4d97d3, #00a8ff);
    color: white;
    gap: 50px;
  }
  
  .hero-content {
    max-width: 50%;
  }
  
  .hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ffffff, #caeaf1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
  }
  
  .hero-content p {
    font-size: 20px;
    font-weight: 300;
    color: #f1f1f1;
    margin: 30px 0;
    line-height: 1.6;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    background: #ffcc00;
    color: #333;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.4);
  }
  
  .btn:hover {
    background: #ffdb4d;
    transform: scale(1.1);
  }
  
  .hero-image img {
    width: 500px;
    max-width: 100%;
  }
  
  @media (max-width: 992px) {
    .hero {
      flex-direction: column;
      text-align: center;
      gap: 30px;
    }
  
    .hero-content {
      max-width: 100%;
    }
  
    .hero-content h1 {
      font-size: 36px;
    }
  
    .hero-image img {
      width: 80%;
    }
  }
  
  /* rodape */
  footer {
    background-color: #34668f;
    color: white;
    text-align: center;
    padding: 20px;
  }
  
  footer p {
    font-size: 12px;
  }
  
/* botar em todas as pag */
.content {
    margin-top: 120px; 
    text-align: center;
    padding: 40px 20px;
}

.content h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.content p {
    font-size: 18px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}


/* cabecalho bonito */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
    background: linear-gradient(to right, #ffffff, #f0f0f0); 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

/* efeito rolar pagina */
header.scrolled {
    background: linear-gradient(to right, #ffffff, #e0e0e0); /* degrade ao rolar */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* container do cabeçalho */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* logo */
.logo img {
    height: 60px; 
    transition: transform 0.3s ease-in-out;
}

/* mouse na logo */
.logo img:hover {
    transform: scale(1.1);
}

/* menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
    padding: 0;
}

/* links menu */
nav ul li a {
    text-decoration: none;
    color: #0066B3; /* Cor escura para contrastar com o fundo claro */
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
    position: relative;
}

/* efeito mouse */
nav ul li a:hover {
    color: #244e66;
    transform: scale(1.1);
}

/* linha em baixo do botao */
nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 3px;
    background-color: #0073e6;
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}


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

/* Responsividade */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }
}


/* Fundo azul igual ao da página inicial */
/* Seção Sobre Nós */
.sobre-nos-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0069B3;
    padding: 40px;
    margin: 0 auto; /* centraliza horizontalmente */
    border-radius: 30px;
    box-shadow: 0px 10px 50px rgba(103, 107, 107, 0.3);
    width: 90%;
    max-width: 1200px;
    gap: 30px;
    flex-wrap: nowrap; /* evita quebrar no desktop */
    flex-direction: row; /* lado a lado */
    margin-bottom: 10%;
}



/* Conteúdo texto */
.conteudo-sobre {
    max-width: 50%;
    padding: 20px;
    text-align: left;
    color: #e0f0ff;
    font-weight: 400;
    hyphens: auto;
    flex-grow: 1;
}

/* Caixa da imagem/GIF */
.imagem-box {
    flex-grow: 1;
    max-width: 450px;
    transition: transform 0.3s ease;
}

.imagem-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.imagem-box:hover {
    transform: scale(1.1);
}

/* Responsividade - em telas menores, empilha verticalmente */
@media (max-width: 768px) {
    .sobre-nos-box {
        flex-direction: column; /* empilha */
        align-items: center;
        text-align: center;
        width: 90%;
    }

    .conteudo-sobre,
    .imagem-box {
        max-width: 100%;
        padding: 10px 0;
    }

    .conteudo-sobre {
        text-align: center;
    }

    .imagem-box:hover {
        transform: none; /* desliga o zoom no hover em mobile */
    }
}

/* Título principal dentro da caixa */
.sobre-nos-box h1 {
    color: #FFBF08;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 50px;
    font-weight: bolder;
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 20px;
}

/* Conteúdo textual dentro da caixa */
.conteudo-sobre {
    max-width: 50%;
    padding: 20px;
    text-align: left;
    color: #e0f0ff;
    font-weight: 400;
    hyphens: auto;
    flex-grow: 1;
}

/* Título dentro do conteúdo */
.conteudo-sobre h1 {
    font-size: 45px;
    margin-bottom: 25px;
    background: linear-gradient(90deg, #ffffff, #73e2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Parágrafo */
.conteudo-sobre p {
    font-size: 19px;
    line-height: 1.5;
}

/* Imagem ao lado do conteúdo */
.imagem-box {
    flex-grow: 1;
    max-width: 450px;
    transition: transform 0.3s ease;
}

.imagem-box img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.imagem-box:hover {
    transform: scale(1.1);
}

/* Seção dos quadrados informativos */
.sobre-nos-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 50px 0 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* centraliza horizontalmente */
    margin-bottom: 40px;
    background: linear-gradient(to bottom, #e0f0ff, #ffffff);
    border-radius: 10px;
  }

/* Estilo dos quadrados */
.quadrado {
    flex: 1 1 260px; /* cresce e encolhe com base em 260px */
    max-width: 310px; /* limite máximo para o quadrado */
    min-width: 220px; /* limite mínimo para evitar ficar muito pequeno */
    min-height: 220px;
    background: #ffffffcc; 
    backdrop-filter: blur(10px);
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(17, 18, 19, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    font-weight: bolder;
    color: #0069B3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1.5s ease-in-out;
    margin-bottom: 7%;
}

/* Ícones dentro dos quadrados */
.quadrado img {
    width: 45px;
    height: 55px;
    margin-bottom: 1px;
    object-fit: contain;
}

/* Título dentro dos quadrados */
.quadrado h3 {
    font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
    font-size: 26px;
    font-weight: bolder;
    margin-bottom: 10px;
}

/* Texto dentro dos quadrados */
.quadrado p {
    font-family: 'Trebuchet MS', Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 1.6;
    hyphens: auto;
    margin: 0 15px;
    color: #0069B3;
}

/* Hover nos quadrados */
.quadrado:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Animação fadeInUp */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .sobre-nos-box {
        flex-direction: column;
        align-items: center;
        padding: 30px;
        width: 90%;
    }

    .conteudo-sobre,
    .imagem-box {
        max-width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .conteudo-sobre h1 {
        font-size: 36px;
    }

    .imagem-box:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .sobre-nos-info {
        gap: 20px;
        padding: 30px 0 0;
        width: 100%;
    }

    .quadrado {
        flex: 1 1 90%;  /* para ocupar quase toda largura */
        max-width: none;
        min-width: auto;
        min-height: auto;
        padding: 20px;
    }

    .quadrado h3 {
        font-size: 22px;
    }

    .quadrado p {
        font-size: 11px;
    }

    .quadrado img {
        width: 40px;
        height: 50px;
    }
}


.contato {
    background: linear-gradient(to right, #0044cc, #0073e6); 
    color: white;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.contato-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.contato h2 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.contato p {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 25px;
}

/* Cartões de Contato */
.contato-info {
    display: flex;
    justify-content: center;  
    flex-wrap: wrap;
    gap: 20px;
}

.contato-card {
    background: rgba(255, 255, 255, 0.15); 
    padding: 20px;
    width: 100%;
    max-width: 260px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.contato-card i {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 8px;
}

.contato-card h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.contato-card p {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
    margin: 0;
}

.wpp img {
    height: 40px;
    margin-bottom: 8px;
}

/* Hover */
.contato-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* Responsivo */
@media (max-width: 768px) {
    .contato h2 {
        font-size: 24px;
    }

    .contato p {
        font-size: 14px;
    }

    .contato-card {
        max-width: 90%;
        padding: 18px;
    }

    .contato-card h3 {
        font-size: 16px;
    }

    .contato-card p {
        font-size: 13px;
    }

    .contato-card i {
        font-size: 28px;
    }

    .wpp img {
        height: 36px;
    }
}



/* Seção Produtos */
.produtos-section {
    padding: 60px 30px;
    background: linear-gradient(to bottom, #e0f0ff, #ffffff);
    text-align: center;
  }
  
  .produtos-section {
    padding: 120px 30px; 
    background: linear-gradient(to bottom, #e0f0ff, #ffffff);
    text-align: center;
    min-height: 100vh; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
  }
  
  /* Centralizar melhor o carrossel */
  /* Carrossel */
  .carousel {
    position: relative;
    overflow: visible; 
    width: 100%;
    max-width: 1000px;
    margin: auto;
  }
  
  
  .carousel-track-container {
    overflow: hidden;
    position: relative;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  
  .carousel-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin: 0 10px;
    width: 300px;
    flex-shrink: 0;
    padding: 20px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative; 
    margin-top: 60px; 
    margin-bottom: 60px;
  }

  .carousel-card p{
    color: #14416b;
    font-size: 15px;
    text-align: left;
    line-height: 1.1;
    hyphens: auto;
    font-weight: inherit;
    
  }

  

  /* Efeito ao passar o mouse */
  .carousel-card:hover {
    transform: scale(1.05); /* cresce suavemente */
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
    z-index: 2; /* fica sobre os outros */
  }
  
  /* Imagem com zoom */
.carousel-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.5s ease;
    
  }
  .carousel-card:hover img {
  transform: scale(1.1);
}
  
 /* Título */
.carousel-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #003366;
    z-index: 2;
    
  }

  /* Descrição animada */
.card-description {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    font-size: 0.95rem;
    color: #555;
    margin-top: 10px;
    transition: opacity 0.5s ease, max-height 0.5s ease;
  }


  /* Mostrar a descrição quando hover */
.carousel-card:hover .card-description {
    opacity: 1;
    max-height: 500px;
  }
  
  /* Botão */
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
  }

  
  
  .card-btn:hover {
    background: #004c99;
  }
  
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 102, 204, 0.8);
    color: white;
    border: none;
    font-size: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease-in-out;
  }
  
  .carousel-btn:hover {
    background: rgba(0, 76, 153, 0.9);
  }
  
  .carousel-btn.prev {
    left: -20px;
  }
  
  .carousel-btn.next {
    right: -30px;
  }
  
  @media (max-width: 768px) {
    .carousel-card {
      width: 250px;
    }
  
    .carousel-btn {
      font-size: 1.5rem;
      width: 40px;
      height: 40px;
    }
  }


  .produtos-section h2 {
    font-size: 3rem; 
    font-weight: bold;
    text-transform: uppercase;
    color: #003366;
    text-align: center;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #0066cc, #00ccff); 
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; /* Aplica o gradiente no texto */
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 10px;
    display: inline-block;
  }
  
  /* linha de baixo do titulo*/
  .produtos-section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #00ccff;
    margin: 10px auto 0;
    border-radius: 5px;
  }
  
  /* Animação de brilho no título */
  @keyframes brilhoTexto {
    0% {
      text-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
    }
    50% {
      text-shadow: 0 0 20px rgba(0, 102, 204, 0.6);
    }
    100% {
      text-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
    }
  }
  
  .produtos-section h2:hover {
    animation: brilhoTexto 1.5s infinite alternate;
  }
  

/* contato  */

  .contato2-section {
    padding: 100px 40px;
    background: linear-gradient(to bottom, #e0f2ff, #ffffff);
    min-height: 100vh;
    text-align: center;
  }
  
  .contato2-section h2 {
    font-size: 2.8rem;
    color: #003366;
    margin-bottom: 60px;
    position: relative;
    padding: 80px 20px 80px;
  }
  
  .contato2-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .contato2-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 25px;
    width: 300px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .contato2-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
  }
  
  .contato2-card img {
    width: 50px;
    margin-bottom: 15px;
  }
  
  .contato2-card h3 {
    font-size: 1.4rem;
    color: #0066cc;
    margin-bottom: 10px;
  }
  
  .contato2-card p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
  }
  


/*parte de produtos*/
/*produto1*/
.produto-detalhado {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    padding: 120px 60px 80px;
    background: #f0f7ff;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    margin-bottom: 80px;
  }
  
  .produto-texto {
    flex: 1;
    min-width: 320px;
  }
  
  .produto-texto h2 {
    font-size: 3rem;
    color: #003366;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
    font-weight: 700;
  }
  
  .produto-texto h2 span {
    color: #0066cc;
    background: linear-gradient(to right, #0066cc, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  .produto-texto h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 5px;
    background: linear-gradient(to right, #0066cc, #00ccff);
    border-radius: 3px;
  }
  
  .produto-texto p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    max-width: 600px;
  }
  
  .produto-imagem {
    flex: 1;
    min-width: 320px;
    text-align: center;
  }
  
  .produto-imagem img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 102, 204, 0.2);
    transition: transform 0.3s ease;
  }
  
  .produto-imagem img:hover {
    transform: scale(1.03);
  }
  

a{
     
        text-decoration: none;
        font-weight: normal;
        color: #fcfcfc;
        text-decoration: none;
        font-weight: bold;
      
}


