

.banner-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    height: auto;
    border-radius: 20px;
}
.imagens {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}
.imagens figure {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}
.imagens figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

@media (max-width: 768px) {
    .imagens figure img {
        object-fit: contain;
    }
}
  
  /* Botões de navegação */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 2rem;
    border-radius: 3px;
    user-select: none;
    z-index: 10;
    width: 40px;
    height: 40px;
    color: #fff;
    text-align: center;
    background-color: transparent; /* fundo transparente */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.prev {
    left: 10px;
}
.next {
    right: 10px;
}


.produtos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px; /* espaço entre os produtos */
  justify-content: center; /* centraliza os produtos */
  padding: 20px;
}

.produtos h1{
  font-size: 22px;
}

.produto {
  background-color: #fde7d4ab;
  border-radius: 12px;
  box-shadow: 0 1px 4px #ece2d1;
  padding: 20px;
  width: 280px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.produto img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(204, 153, 255, 0.2);
}

.produto h1 {
  color:#cd8df4;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.descricao {
  font-size: 0.95rem;
  color: #929191;
  margin-bottom: 20px;
  flex-grow: 1; /* para empurrar o botão para baixo */
}

.produto:hover {
  transform: translateY(-8px);
  background-color: #fff5e9;
}

.container-produtos{
    margin-top: 40px;
}


.estaconectado {
    display: block;
    text-align: right; 
    width: 100%;    
    margin-top: 10px;
}

@media (max-width: 900px) {
  .produtos {
    justify-content: center;
  }
  .produto {
    width: 80%;
  }
}
@media (max-width: 600px) {
    .produto {
        width: 80%;
    }
    .perfil {
        height: 50px; /* faixa menor */
        padding: 0 10px;
    }

    .perfil img {
        height: 70%;
        max-height: 35px; /* ícones menores */
        margin-left: 10px;
    }
}

.diferenciais {
    background-color: #fff5e9;
    padding: 60px 20px;
    text-align: center;
}

.diferenciais h1 {
    color: #cd8df4;
    margin-bottom: 50px;
}

/* Container flexível para os cards */
.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Card Neumorphism */
.card {
    background: #f7e4fc;
    border-radius: 50%;
    box-shadow: 38px 38px 76px #dbd3c8,
                -38px -38px 76px #ffffff;
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card figure img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.card h3 {
    font-family: 'Open Sauce One', sans-serif;
    font-size: 1rem;
    color: #cd8df4;
    margin-bottom: 5px;
}

.card p {
    font-family: 'Livvic', sans-serif;
    font-size: 0.85rem;
    color: #929191;
}

.card:hover,
.card:focus {
    transform: translateY(-8px);
    box-shadow: 20px 20px 40px #dbd3c8,
                -20px -20px 40px #ffffff;
    outline: none;
}

/* Responsividade */

/* Tablets e telas médias */
@media (max-width: 900px) {
    .card {
        width: 210px;
        height: 210px;
    }
    .card figure img {
        width: 50px;
        height: 50px;
    }
    .card h3 {
        font-size: 0.9rem;
    }
    .card p {
        font-size: 0.8rem;
    }
}

/* Smartphones */
@media (max-width: 600px) {
    .cards-container {
        gap: 25px;
    }
    .card {
        width: 180px;
        height: 180px;
        padding: 15px;
    }
    .card figure img {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
    }
    .card h3 {
        font-size: 0.85rem;
    }
    .card p {
        font-size: 0.75rem;
    }
}

.quem-somos_container {
  width: 100vw;          /* largura total da viewport */
  margin: 0;             /* remove margens */
  padding: 0;            /* remove padding */
  overflow: hidden;      /* evita scroll horizontal */
  margin-top: 40px;
}

.quem-somos_container picture,
.quem-somos_container img {
  width: 100vw;          /* largura total da viewport */
  height: auto;          /* mantém proporção */
  display: block;        /* remove espaço embaixo da imagem */
  object-fit: cover;     /* cobre toda a área, cortando se necessário */
  border-radius: 0;      /* remove bordas arredondadas para ocupar toda a largura */
  box-shadow: none;      /* remove sombra para ficar clean */
}

/* Ajuste para telas pequenas */
@media (max-width: 480px) {
  .quem-somos_container {
    margin: 1rem 0;
    padding: 0 0;
  }

  .quem-somos_container picture,
  .quem-somos_container img {
    max-height: 300px;
    border-radius: 8px;
  }
}


.estaconectado{
    font-family: 'Livvic', sans-serif; 
    font-size: 18px;
}

