/* GERAL */
body {
    background-color: #f0f4f8;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
  }
  
  /* HEADER */
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #f0f8ff;
  }
  
  
  .container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  /* LOGO COM EFEITO PULSE */
  .logo {
    height: 60px;
    animation: pulse 2.5s infinite ease-in-out;
  }
  
  @keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
  }
  
  .container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* <-- ESSENCIAL para alinhar à esquerda */
    gap: 20px; /* Espaço entre logo e menu */
  }
  
  .menu {
    display: flex;
    gap: 20px;
    flex-grow: 1;
    justify-content: center; /* centraliza os botões entre logo e login */
  }
  
  .login-btn {
    margin-left: auto;
  }
  
  .botao-login {
    background: linear-gradient(145deg, #e6f0ff, #cfe0ff);
    border: 2px solid #0051ff;
    padding: 10px 20px;
    border-radius: 12px;
    color: #003366;
    text-shadow: 1px 1px 0 #fff;
    box-shadow: inset 0 1px 0 #fff, 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
  }
  
  .botao-login:hover {
    background: linear-gradient(145deg, #d0e4ff, #b3cdff);
    transform: scale(1.05);
  }

  /* Links com efeito plástico */
  .menu a {
    background: linear-gradient(to bottom, #0099ff, #0055a5);
    padding: 8px 14px;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 
      0 4px 8px rgba(0, 85, 165, 0.3),
      inset 0 -2px 4px rgba(0, 0, 0, 0.2),
      inset 0 2px 4px rgba(255, 255, 255, 0.4);
    transition: transform 0.2s, box-shadow 0.3s;
  }
  
  .menu a:hover {
    transform: translateY(-2px);
    box-shadow: 
      0 6px 12px rgba(0, 85, 165, 0.4),
      inset 0 -1px 2px rgba(0, 0, 0, 0.2),
      inset 0 2px 6px rgba(255, 255, 255, 0.5);
  }
  
  .btn-login,
  .login-content form button {
    background: linear-gradient(to bottom, #0099ff, #0055a5);
    border: none;
    padding: 10px 16px;
    border-radius: 12px;
    color: white;
    font-weight: bold;
    box-shadow: 0 5px 10px rgba(0, 85, 165, 0.3),
                inset 0 -2px 5px rgba(0, 0, 0, 0.2),
                inset 0 2px 5px rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
  }
  
  .btn-login:hover,
  .login-content form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 14px rgba(0, 85, 165, 0.4),
                inset 0 -1px 3px rgba(0, 0, 0, 0.2),
                inset 0 2px 6px rgba(255, 255, 255, 0.5);
  }
  
  /* LOGIN */
  .login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6); /* fundo escuro translúcido */
    backdrop-filter: blur(5px); /* efeito de desfoque no fundo */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Torna visível quando a classe "active" é adicionada */
.login-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Card do login */
.login-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    position: relative;
}

/* Botão fechar */
.close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 26px;
    color: #888;
    cursor: pointer;
}

.close-btn:hover {
    color: #e60000;
}
  
  @keyframes fadeInUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  .close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 26px;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .close-btn:hover {
    color: #e60000;
  }
  
  /* INPUT LOGIN */
  .login-content form input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 16px;
    transition: border 0.3s;
  }
  
  .login-content form input:focus {
    border-color: #0099ff;
    outline: none;
  }
  
  /* TITULOS LOGIN */
  .login-content h2 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
    color: #0055a5;
  }
  
  /* CARROSSEL DE BANNERS */
  .banners-animados {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.banners-animados input {
    display: none;
}

.banners {
    display: flex;
    width: 800%;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.slide {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#banner1:checked ~ .banners { transform: translateX(0%); }
#banner2:checked ~ .banners { transform: translateX(-100vw); }
#banner3:checked ~ .banners { transform: translateX(-200vw); }
#banner4:checked ~ .banners { transform: translateX(-300vw); }
#banner5:checked ~ .banners { transform: translateX(-400vw); }
#banner6:checked ~ .banners { transform: translateX(-500vw); }
#banner7:checked ~ .banners { transform: translateX(-600vw); }
#banner8:checked ~ .banners { transform: translateX(-700vw); }

.indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.indicators label {
    width: 14px;
    height: 14px;
    background-color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s;
}

.indicators label:hover {
    transform: scale(1.2);
}

/* Botões de navegação */
.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.controls label {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    transition: background-color 0.3s;
}

.controls label:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


  /* MARCAS */
  .marcas-lista ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 40px 20px;
    background-color: #ffffff;
  }
  
  .marcas-lista img {
    max-width: 80px;
    height: auto;
    transition: transform 0.3s ease;
  }
  
  .marcas-lista img:hover {
    transform: scale(1.1);
  }
  
  .sobre-nos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background-color: #f8faff; /* tom claro da paleta azul */
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 81, 255, 0.1);
  }
  
  .foto-sobre {
    width: 300px;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  
  .texto-sobre {
    max-width: 600px;
    color: #003366;
  }
  
  .texto-sobre h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #0051ff;
  }
  
  .texto-sobre p {
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .banner-text h2 {
    color: #003366;
    font-size: 28px;
    margin-bottom: 20px;
  }
  
  /* FOOTER */
  footer {
    background-color: #0f3a6b;
    color: white;
    padding: 40px 0;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1140px;
    margin: 0 auto;
    padding-bottom: 20px;
}

.footer-col {
    width: 30%;
}

.footer-col h5 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col p,
.footer-col ul {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #ddd;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col .social-icon {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col .social-icon i {
    margin-right: 10px;
    font-size: 24px;
}

.footer-col .social-icon:hover {
    color: #ffcc00;
}

.footer-col .btn-plastico {
    display: block;
    background: linear-gradient(145deg, #0f3a6b, #003580);
    border: 1px solid #003580;
    color: white;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    width: 80%;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.2), -4px -4px 6px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.footer-col .btn-plastico:hover {
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.3), -4px -4px 12px rgba(255, 255, 255, 0.6);
}


.footer-credits {
    text-align: center;
    background-color: #002244;
    padding: 20px 0;
    margin-top: 20px;
    font-size: 14px;
    color: #fff;
}

.footer-credits p {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-credits {
        padding: 10px 0;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-col {
        width: 100%;
        margin-bottom: 30px;
    }

    .footer-credits {
        padding: 10px 0;
    }
}
  /* RESPONSIVO */
  @media (max-width: 768px) {
    .container-header {
      flex-direction: column;
      gap: 15px;
    }
  
    .menu a {
      display: inline-block;
      margin: 5px 10px;
    }
  
    .banner-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .banner-img img {
      width: 180px;
    }
  }

  .quem-somos {
    padding: 60px 20px;
    background: #f8f9fc;
    color: #1c2b4a;
  }
  
  .quem-somos-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  .galeria-fotos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
    min-width: 280px;
  }
  
  .foto-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 51, 153, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 200px; /* ou qualquer altura que desejar */
  }
  
  .foto-card:hover {
    transform: scale(1.03);
  }
  
  .foto-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Preenche todo o espaço, cortando se necessário */
    display: block;
  }
  
  .quem-somos-texto {
    flex: 2;
    min-width: 300px;
  }
  
  .quem-somos-texto h2 {
    font-size: 2.2rem;
    color: #004080;
    margin-bottom: 20px;
  }
  
  .quem-somos-texto p {
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 1rem;
  }
  
  .quem-somos-texto strong {
    color: #0070cc;
  }

  .missao-visao-valores {
    background-color: #ffffff;
    padding: 60px 20px;
    color: #1c2b4a;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .missao-visao-valores h2 {
    font-size: 2.2rem;
    text-align: center;
    color: #004080;
    margin-bottom: 40px;
  }
  
  .bloco-mvv {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .card-mvv {
    background: #f0f4f9;
    border-left: 6px solid #0070cc;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(0, 51, 153, 0.05);
  }
  
  .card-mvv h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 12px;
  }
  
  .card-mvv p,
  .card-mvv ul {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0;
  }
  
  .card-mvv ul {
    list-style: disc inside;
    padding-left: 10px;
  }
  
  .card-mvv li {
    margin-bottom: 10px;
  }

  .nossas-marcas {
    max-width: 800px;
    margin: 40px auto;
    padding: 30px;
    background-color: #f0f4ff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 51, 153, 0.1);
    color: #002b66;
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
  }
  
  .nossas-marcas h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
    color: #003399;
  }
  
  .nossas-marcas h2 span {
    color: #0055cc;
  }
  
  .nossas-marcas p {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
  
  .nossas-marcas strong {
    color: #003399;
  }

  .vendedores {
    padding: 40px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .vendedores h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #003399;
  }
  
  .grid-vendedores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .vendedor-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s;
  }
  
  .vendedor-card:hover {
    transform: translateY(-5px);
  }
  
  .vendedor-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #e0e0e0;
    box-shadow: inset -3px -3px 10px rgba(255, 255, 255, 0.6),
                inset 3px 3px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
  }
  
  .vendedor-card h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    color: #003399;
  }
  
  .vendedor-card p {
    margin: 2px 0;
    color: #333;
    font-size: 0.95rem;
  }

  @media (max-width: 768px) {
    .grid-vendedores {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 480px) {
    .grid-vendedores {
      grid-template-columns: 1fr;
    }
  }

  .imagens-empilhadas {
    display: flex;
    flex-direction: column;
    align-items: center; /* centraliza as imagens */
    gap: 20px; /* espaçamento entre elas */
  }
  
  .logo,
  .foto-sobre {
    max-width: 100%;
    height: auto;
  }