@import url("https://use.typekit.net/dku8chf.css");


@font-face {
    font-family: 'Magnolia';
    src: url('/fontes/Magnolia\ Script.otf') format('woff2'),
         url('fonts/MagnoliaScript.woff') format('woff'),
         url('fonts/MagnoliaScript.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  html {
    scroll-behavior: smooth;
  }
   

body { 
    margin: 0;
    font-family: 'Nunito', sans-serif;
    background: #fff;
    color: #fa1e76;
  }

  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }
 /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icons1 {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) translateY(-20px); /* começando mais acima */
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.social-icons1.show {
    opacity: 1;
    transform: translateY(-50%) translateY(0); /* volta pra posição normal */
}

.social-icons1 a {
    font-size: 1rem;
    color: #fdfdfd;
    transition: transform 0.3s ease, color 0.3s ease;
    background-color: #f9afc7;
    padding: 3px 5px;
    border-radius: 10px;
}

.social-icons1 a:hover {
    transform: scale(1.2);
    background-color: #e6226a;
    color: #ffe3ec;
}



  /* back to top */

  .back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #facde5; /* Cor rosa */
    color: rgb(229, 103, 191);
    width: 23px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 26px;

    transition: opacity 0.3s, transform 0.3s;
    opacity: 0; /* Começa invisível */
    pointer-events: none; /* Não clicável no início */
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0);
}


.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}


/* */

  .social-icon {
    position: relative;
    padding: 0;
    margin: 4em 0 0 0;
  }

  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    text-decoration: none;
    display: inline-block;
    font-size: var(--base-font-size);
    margin: 10px;
    text-align: center;
  }


 /* Navbar geral */
.navbar {
  height: 70px;
  display: flex;
  align-items: center; /* Centraliza o conteúdo verticalmente */
  padding: 0 2rem;
  background-color: transparent;
  position: relative;
  top: 0;
  z-index: 100;
}

.container-nav {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  height: 100%;
  margin-left: 70px;
}

.logo img {
  max-width: 250px;
  display: block;
  padding: 1rem;
  margin-top: 30px;
}

/* Menu */
.menu {
  display: flex;
  gap: 3.3rem;
  list-style: none;
  padding: 0;
  left: 0;
  right: auto; /* garante que o right não interfira */
  margin-right: 250px;
  align-items: center;
  font-family: 'Myriad-pro', sans-serif;
  font-weight: bold;
  background-color: transparent;
  border-radius: 8px;
}

.menu a {
  color: #f81972;
  text-decoration: none;
  transform: 0.2s;
  padding: 9px 12px;
}

.menu a:hover {
  color: #1e1d1d;
  background-color: #78ded4;
  border-radius: 8px;
  transition: 0.2s;
}

/* Menu Toggle (hamburger) */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* Media Queries - Responsividade */
@media (max-width: 768px) {
  .logo img {
    width: 100%;
    max-width: 350px;
  }

  /* Menu */
  .menu {
    display: none; /* Oculta o menu no mobile por padrão */
    flex-direction: column;
    position: absolute;
    top: 70px; /* Posiciona o menu logo abaixo da navbar */
    right: 0;
    background: #fff;
    width: 100%;
    padding: 1rem 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99;
  }

  .menu.show {
    display: flex; /* Exibe o menu quando a classe 'show' for adicionada */
    background-color: #ffd9e8;

  }

  /* Toggle Menu - Botão de menu */
  .menu-toggle {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    z-index: 100;
    color: #ff3b83;
  }

  .nav-top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Alinhamento do conteúdo e espaçamento do menu */
  .menu a {
    padding: 1rem; /* Espaçamento dentro dos itens do menu */
    text-align: center;
    width: 100%; /* Cada link ocupará toda a largura disponível */
  }

  /* Ajustes para melhorar a usabilidade */
  .container-nav {
    padding: 0 1rem; /* Ajuste do padding para telas menores */
  }
}


  /* section hero */

  .boas-vindas-bg {
    background-color: #fffeff;
    width: 100%;
  }
  
  .boas-vindas {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  
  .texto {
    flex: 1 1 600px;
    min-width: 350px;
    line-height: 0.8;
  }
  
  .imagem {
    flex: 1 1 400px;
    text-align: left;
    position: relative;
    max-width: 800px;
  }
  
  .imagem > img:first-of-type {
    width: 100%;
    max-width: 480px;
    border-radius: 2rem;
    padding: 1rem;
  }
  
  .icone {
    position: absolute;
    width: 24px; /* Ícone pequeno */
    height: auto;
    z-index: 2;
  }
  
  /* Ícone no topo esquerdo */
  .icone-top-right {
    top: 15px;
    left: 416px;
    width: 90px;
  }
  
  /* Primeiro ícone no canto inferior esquerdo */
  .icone-bottom-left-alt {
    bottom: 3px;
    width: 80px;
    left: 6px;
  }
  
  /* Segundo ícone no canto inferior esquerdo (deslocado pra cima do outro) */
  .icone-bottom-left {
    bottom: 75px;
    left: 5px;
    width: 50px;
    transform: rotate(35deg); /* gira 15 graus no sentido anti-horário */
  }
  
  

  
  /* Título */
  .parabens {
    font-size: 2.5rem;
    margin: 0;
    color: #ff6f9f;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
  }
  
  .ma-cherie {
    font-size: 6rem;
    font-family: 'Magnolia', cursive;
    font-weight: 400;
    font-style: normal;
    color: #ff2f74;
    margin: 0.5rem 0;
  }
  
  .subtitulo {
    font-size: 2rem;
    color: #ff6f9f;
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.1;
    margin-top: 5px;
    font-family: 'Rubik', sans-serif;
  }

  .sub-bold {
    font-weight: 800;
  }



  /* Corpo do texto */
  .conteudo p {
    text-align: justify;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    line-height: 1.1;
    color: #f31781;
    font-family: "myriad-pro", sans-serif;
    max-width: 500px;
  }
  
  .conteudo strong {
    font-weight: 700;
    color: #ff377a;
  }
  
  .conteudo em {
    font-style: normal;
    font-style: italic;
    color: #ff377a;
    font-family: 'Magnolia';
  }

  .conteudo a {
    text-decoration: none;
    color: #ec3a76;
  }


  
  /* clio style */
  .clio-section {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 30px;
    min-height: 650px;
    background-image: url(imagens/Pattern\ -\ 02.png);
    overflow: hidden;
    box-sizing: border-box;
    display: flex; /* Define o uso de flexbox para organizar os itens */
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Permite que os itens quebrem linha em telas menores */
  }
  
  .clio-wrapper {
    display: flex;
    flex-direction: row; /* Default para desktop: card à esquerda, imagem à direita */
    position: relative;
    width: 100%;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
  }
  
  /* Em telas menores (mobile), card fica em cima e imagem embaixo */
  @media screen and (max-width: 768px) {
    .clio-wrapper {
      flex-direction: column; /* Muda para coluna em telas menores */
      align-items: center;
    }
    .clio-image {
      position: relative;
      top: initial; /* Reseta a posição absoluta */
      left: initial;
      width: 100%; /* Ajusta a imagem para ser responsiva */
      max-width: 280px;
      margin-top: 20px;
    }
  
    .clio-card {
      left: initial;
      right: initial;
      max-width: 100%; /* Garante que o card ocupe 100% da largura disponível */
      margin-left: 0;
    }
  }
  
  .clio-image {
    position: absolute;
    top: -200px;
    left: 100px;
    width: 400px;
    object-fit: cover;
    border-top-left-radius: 40px;
    display: block;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .clio-yellow {
    position: absolute;
    top: -220px;
    left: 430px;
    transform: rotate(-180deg);
    z-index: 9999;
    max-width: 80px;
  }

  .clio-flor {
    position: absolute;
    top: -140px;
    left: 480px;
    z-index: 9999;
    transform: rotate(-180deg);
    max-width: 75px;
  }

  .clio-flor2 {
    position: absolute;
    top: -40px;
    left: 480px;
    z-index: 9999;
    max-width: 60px;
  }
  
  .back {
    position: absolute;
    top: -190px;
    left: 90px;
    width: 400px;
    z-index: -1;
  }
  
  .clio-card {
    position: absolute;
    top: 155px;
    left: 280px;
    max-width: 530px;
    height: 350px;
    margin-right: 200px;
    background: linear-gradient(to left, #fecbdb42, #ffffffa9, #fff, #ffff, #fff, #fff, #ffff);
    padding: 2rem;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ec3a76;
    z-index: 1;
  }
  
  .clio-logo {
    max-width: 320px;
    margin-bottom: 1rem;
    margin-left: 80px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .clio-logo:hover {
    transform: scale(1.05);
  }
  
  .clio-card p {
    font-size: 1.1rem;
    line-height: 1;
    margin-bottom: 1rem;
    text-align: justify;
    margin-left: 10px;
  }
  
  .italic {
    font-style: italic;
    font-family: 'Magnolia', cursive;
  }
  
  .highlight {
    color: #f14182;
  }
  
  .clio-social-icons {
    position: absolute;
    bottom: 90px;
    left: 320px;
    z-index: 10;
    display: flex;
    gap: 1rem;
    overflow: visible;
  }
  
  .clio-social-icons a {
    color: #fdf8fa;
    font-size: 1.7rem;
    transition: transform 0.2s ease;
    background-color: #fd2d9c;
    padding: 8px 10px;
    border-radius: 50px;
  }
  
  .clio-social-icons a:hover {
    transform: scale(1.2);
  }
  
  
  /* === TABLET (1024px para baixo) === */
  @media (max-width: 1024px) {
    .clio-section {
      min-height: auto;
      background: repeating-linear-gradient(
        90deg,
        #fce8f0,
        #fce8f0 25px,
        #ffffff 25px,
        #ffffff 50px
      );
    }
  
    .clio-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: static;
    }
  
    .clio-image {
      position: static;
      width: 100%;
      max-width: 500px;
      height: auto;
      margin-bottom: 2rem;
      border-radius: 30px;
    }
  
    .clio-card {
      position: static;
      width: 100%;
      max-width: 600px;
      height: auto;
      padding: 2rem;
      border-radius: 30px;
    }
  
    .clio-logo {
      max-width: 200px;
      margin: 0 auto 1.2rem auto;
    }
  
    .clio-card p {
      font-size: 1.05rem;
      line-height: 1.6;
      text-align: left;
    }

  }
  
  /* === MOBILE (768px para baixo) === */
  @media (max-width: 768px) {
    .clio-section {
      background: repeating-linear-gradient(
        90deg,
        #fce8f0,
        #fce8f0 25px,
        #ffffff 25px,
        #ffffff 50px
      );
    }
  
    .clio-image {
      max-width: 80%;
    }

    .clio-back {
      max-width: 70%;
      margin-left: -110px;
    }

    .clio-flor,
    .clio-yellow {
      width: 50px;
    }
  
    .clio-flor {
      right: 10px;
      top: -8px;
    }
  
    .clio-yellow {
      left: 12%;
      bottom: 450px;
    }
  
    .clio-card {
      width: 80%;
      padding: 1.5rem;
      margin-left: 200px;
    }
  
    .clio-logo {
      max-width: 180px;
    }
  
    .clio-card p {
      font-size: 1rem;
      line-height: 1.5;
      text-align: justify;
    }

    .clio-social-icons {
      position: static;
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.5rem;
    }
  
    .clio-social-icons a {
      font-size: 1.4rem;
      background-color: #f5329a;
      padding: 6px 10px;
      border-radius: 50px;
      color: white;
    }

    .ma-cherie {
      font-size: 22px;
      text-align: center;
    }
  }
  

 /* produtos */

#produtos-rb {
  background: url('imagens/Pattern\ -\ 01.png');
  padding: 2rem 1rem;
  text-align: center;
}

.produtos-header h2 {
  font-size: 3rem;
  color: #ff3f72;
  margin-top: 10px;
  font-family: "myriad-regular", sans-serif;
}

.produtos-header h2 img {
  width: 60px; 
  vertical-align: middle;
  margin-bottom: 25px;
}

.produtos-header span {
  font-family: 'Magnolia', sans-serif;
  font-size: 3rem;
  color: #f81079;
  font-weight: 400;
}

.filtros-produtos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.filtros-produtos button {
  background: transparent;
  border: 2px solid #d81b60;
  color: #d81b60;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.filtros-produtos button.ativo {
  background: #d81b60;
  color: white;
}

.filtros-produtos button:hover {
  background-color: #78ded4;
  color: white;
  border-color: #78ded4;
}

.produtos-lista {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 2rem; /* aumentei o espaçamento entre os produtos */
padding: 20px;
margin: 0 auto;
max-width: 1000px; /* aumentei o limite para permitir produtos maiores */
}

.produto-item {
padding: 1.2rem;
border-radius: 20px;
text-align: center;
font-family: "myriad-pro", sans-serif;
height: auto; /* melhor deixar auto para adaptar conforme o conteúdo */
max-width: 100%; /* usar toda a largura disponível */
width: 100%;
display: flex;
flex-direction: column;
justify-content: flex-start;
box-shadow: 0 4px 10px rgba(0,0,0,0.05); /* leve sombra para separar visualmente */
background: #ffe5f097;
}

.produto-item img {
height: 280px; /* reduzido para manter proporção e evitar excesso vertical */
object-fit: contain;
margin-bottom: 1rem;
border-radius: 12px;
transition: transform 0.4s ease, opacity 0.4s ease;
opacity: 1;
cursor: pointer;
mix-blend-mode: multiply;
}



.produto-item img:hover {
  transform: scale(1.2);
  opacity: 0.9; /* leve fade no hover */
  z-index: 1;
}


.produto-item h4 {
  font-size: 1.3rem;
  color: #ff4882;
  text-align: left;
  margin: 0.5rem 0 0.2rem 0;
  font-family: "myriad-pro", sans-serif;
  margin-top: 0;
}

.descricao-produto {
  font-size: 1rem;
  text-align: left;
  margin-left: -10px;
  color: #787878;
  margin-top: 4px;
  padding: 0 10px;
  margin-bottom: 50px;
}

.produto-item span {
  color: #fe3172;
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  display: block;
  margin-bottom: 0.6rem;
}

.zoom-btn {
  background: none;
  border: none;
  color: #d81b60;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
  margin-top: -10px;
}

.zoom-btn:hover {
  text-decoration: underline;
  transform: scale(1.1);
}

/* modal */

.zoom-modal {
  display: none; /* Quando ativar via JS, use display: flex */
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 99999;
}


.zoom-modal img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 0 10px #000;
  background-color: #ffffff;

}

.zoom-modal .fechar {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}



  
/* vip */

#vip-rb {
    background: url('imagens/Pattern\ -\ 01.png');
    padding: 2.3rem 2rem; /* aumentamos o padding vertical */
    display: flex;
    align-items: center;

  }
  
  .vip-container {
    display: flex;
    flex-direction: row; /* mantém os dois lados (texto e form) lado a lado */
    align-items: center; /* alinha verticalmente */
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
  }
  
  
  .vip-flex {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Alinha verticalmente */
    gap: 2rem;
  }
  
  
  .vip-texto {
    flex: 1;
    line-height: 1.3;
    text-align: justify;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 130px;
  }
  
  .vip-texto h2 {
    font-family: "al-fresco", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 100px;
    color: #fa259a;
    margin-bottom: 0.4rem; /* menos espaço */
  }
  
  .vip-texto p {
    font-size: 1.2rem;
    margin: 0.5rem 0 1rem; /* menos margem no topo */
    color: #fa259a;
  }

  .vip-texto span {
    font-family: 'Magnolia', cursive;
  }
  
  .vip-texto ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
  }
  
  .vip-texto ul li {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ff3781;
    line-height: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
  }
  
  .vip-texto ul li::before {
    content: "💗";
    display: inline-block;
    transition: transform 0.5s ease;
  }
  
  /* Hover animation */
  .vip-texto ul li:hover {
    transform: translateX(10px);
  }
  
  .vip-texto ul li:hover::before {
    transform: rotate(360deg);
  }
  
  .vip-formulario {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  
  .form-img {
    width: 120px;
    margin-top: -87px;
    margin-bottom: 1rem;
    z-index: 2;
    transition: transform 0.2s ease;
    will-change: transform;
  }
  
  .vip-formulario input {
    width: 100%;
    max-width: 300px;
    padding: 0.5rem 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ffebf5;
    background-color: #fbedf3;
    color: #e6226a;
    border-radius: 8px;
    font-size: 1rem;
  }
  
  .vip-formulario input::placeholder {
    color: #f1adca;
    opacity: 1;
  }
  
  .vip-formulario button {
    background: #78ded4;
    color: white;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 18px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
  }
  
  .vip-formulario button:hover {
    background: #c2185b;
  }
  

  @media (max-width: 768px) {

    
    .vip-flex {
      flex-direction: column;
      align-items: center;
      gap: 2rem;
    }
  
    .vip-texto {
      margin-bottom: 0;
      text-align: center;
      padding: 0;
    }
  
    .vip-texto h2 {
      font-size: 4.5rem;
    }
  
    .vip-texto p {
      font-size: 1rem;
      text-align: justify;
    }

    .vip-texto ul li {
      font-size: 1rem;
      line-height: 1.5rem;
      text-align: justify;
      word-break: break-word; /* Garante que palavras longas se ajustem quando necessário */
    }
  
    .vip-texto ul li span {
      white-space: nowrap; /* Garante que o 'so special!' não quebre a linha */
    }

  
    .vip-formulario {
      width: 100%;
      padding: 1.5rem;
      max-width: 100%;
    }
  
    .form-img {
      width: 80px;
      margin-top: -60px;
      margin-bottom: 1rem;
    }
  
    .vip-formulario input {
      max-width: 100%;
      font-size: 1rem;
    }
  
    .vip-formulario button {
      width: 100%;
      font-size: 1rem;
    }
  }
  
  
 /**/

/* Estilos Responsivos Gerais */
*, *::before, *::after {
  box-sizing: border-box;
}

nav img {
  max-width: 180px;
  height: auto;
}

@media (max-width: 1024px) {
  .boas-vindas, 
  .clio-conteudo, 
  .vip-container,
  .clio-card {
    padding: 1rem 1rem;
  }

.clio-flor {
  margin-right: 25px;
}
.clio-yellow {
  margin-top: 80px;
}



  .ma-cherie {
    font-size: 4rem;
  }

  #scroll-icon {
    width: 150px;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  nav img {
    max-width: 150px;
  }

  .boas-vindas {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    margin: 0 auto;
    gap: 1rem;
  }

  .imagem, 
  .texto {
    text-align: justify;
    width: 100%;
    margin: 0;
    padding: 0;
  }


  .conteudo {
    max-width: 330px;
  }

  .clio-section {
    min-height: 80vh; /* Aumenta a altura da seção no mobile */
    padding: 2rem 1.3rem; /* Garantir respiro interno */
  }

  .clio-conteudo {
    flex-direction: column;
    text-align: left;
    padding: 1.5rem 1rem;
  }

  .clio-img, 
  .clio-card {
    width: 100%;
    border-radius: 20px;
    padding: 1rem;
    margin: 0;
  }

  .clio-img::before {
    display: none;
  }

  .clio-social {
    justify-content: center;
  }

  .produtos-lista {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
  }

  #scroll-icon {
    width: 50px;
    right: 20px;
    bottom: 20px;
    position: fixed;
    z-index: 99;
  }
}

@media (max-width: 480px) {


  .boas-vindas,
  .clio-section,
  .produtos-rb,
  .vip-rb {
    margin: 0;
    padding: 0;
  }
  
  .boas-vindas {
    margin-bottom: -80px;
  }


  .nav-top {
    margin-left: -120px;
    max-width: 10px;    
  }
  
  .menu-toggle {
    margin-right: -455px;
    margin-bottom: 14px;
  }

  .icone-top-left {
    max-width: 50px;
    margin-right: 300px;
  }

  .texto1 {
    margin-top: 5px;
    margin-left: 43px;
    max-width: 300px;
    height: 100px;
  
  }
   
  .parabens {
    font-size: 1.6rem;
    margin-left: -165px;
    text-align: center;
    margin-top: 10px;
  }

  .ma-cherie {
    font-size: 2.1rem;
    text-align: center;
    margin-left: 118px;
    margin-top: -26px;
  }


  .subtitulo {
    font-size: 1.5rem;
    text-align: left;
    margin-left: 10px;
    color: #ff0a74;
    font-style: italic;
    margin-top: 17px;
  }



  .conteudo p {
    font-size: 18px;
    margin-bottom: 0;
    text-align: justify;
    max-width: 315px;
    line-height: 1.5rem;
  }

  .conteudo {
    margin-left: 38px;
  }

  .imagem {
    margin-top: -5px;
    margin-left: 0;
    order: -1; /* faz a imagem aparecer antes */
    max-width: 350px;
  }


  .texto1,
  .parabens,
  .ma-cherie,
  .subtitulo,
  .conteudo {
    order: 0;
  }

  .boas-vindas {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
  .boas-vindas {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }

  .back {
    max-width: 250px;
    margin-left: -85px;
    margin-top: 226px;
    overflow: hidden;
  }

  .clio-image {
    max-width: 250px;
    margin-right: 95px;
    margin-top: 30px;
  }

.clio-image-wrapper {
  margin-right: -100px;
}

.clio-flor,
.clio-yellow,
.clio-flor2 {
  margin: 0 !important;
}


.clio-card {
  max-width: 340px;
  z-index: 1;
  background: linear-gradient(to right, #fff1f6, #fff1f6, #fff, #ffff, #fff, #fff, #ffff);
  margin-left: 8px;
}

.clio-card p {
  margin-left: -5px;
  max-width: 310px;
  font-size: 1rem;
}

.clio-logo {
  max-width: 240px;
  margin-top: 15px;
}

.clio-social-icons {
  margin-top: 10px;
  margin-bottom: 10px;
}

.produtos-rb {
  padding: 0;
  margin-bottom: -150px;
}

.produtos-header {
  margin-top: -30px;
  line-height: 0.5rem;
}

.produtos-header h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.produtos-header h2 img {
  max-width: 40px;
  margin-top: 8px;
}

.produtos-header span {
  font-weight: 400;
  font-size: 2.4rem;
}

.produtos-lista {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.produto-item {
  background-color: #ffedf5f5;
  box-shadow: 0 4px 10px rgba(255, 7, 114, 0.121); /* leve sombra para separar visualmente */
  max-height: 420px;
}

.produto-item h4 {
  font-size: 1rem;
}

.produto-item span {
  font-size: 0.9rem;
}

.descricao-produto {
  line-height: 1.2rem;
  font-size: 2rem;
  margin-top: 10px;
}


.vip-container {
  padding-top: 0;
}

  .vip-texto h2 {
    font-size: 4rem;
    text-align: center;
    margin-top: -65px;
    margin-bottom: 0;
  }


  .vip-texto ul li {
  text-align: justify;
  line-height: 1.1rem;
  }

  .social-icons {
    right: 10px;
  }

  .social-icons a {
    font-size: 0.9rem;
    padding: 4px;
  }

  .back-to-top {
    width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .filtros-produtos button {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }

  .descricao-produto {
    justify-content: center;
    margin-left: -10px;
    font-size: 1rem;
    margin-bottom: 10px;
  }


  #scroll-icon {
    max-width: 70px;
    bottom: 20px;
    right: 15px;
    position: fixed;
    z-index: 99;
  }
}


/*preloader*/

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ff3e9e; /* Rosa claro */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  transition: opacity 0.5s ease;
}

.loader-content {
  text-align: center;
}

.logo {
  width: 320px;
  margin-bottom: 20px;
  margin-right: 70px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dots span {
  width: 8px;
  height: 9px;
  border-radius: 50%;
  background-color: #ffc4d5;
  animation: bounce 1.2s infinite;
}

.dots span:nth-child(2) {
  animation-delay: 0.2s;
}
.dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

 /**/

 #scroll-icon {
  position: fixed;
  top: 100px;
  left: 0;
  width: 120px;
  height: 30px;
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 9999;
}

#scroll-icon img {
  width: 100%;
  height: auto;
  display: block;
}