/* Paleta */
@import url('https://fonts.googleapis.com/css2?family=Sour+Gummy:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --cor-principal: #4b004c;
  --cor-secundaria: #f0b7ce80;
  --cor-destaque: #e0d1ed;
  --branco: #ffffff;
  --cor-secundaria-maisforte: #f0b7cee1; 
  --fonte-titulo: 'Sour Gummy', cursive;
}

/* Reset básico */
* {
  font-family: 'Times New Roman', Times, serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a{
  color: unset;
  text-decoration: unset;
  height: unset;
  width:unset;
}

a:visited{
  text-decoration: unset;
  height: unset;
  width:unset;
}

.imgHead {
  background-image: url('../imagens/beauty.png');
  width: 50px;
  height: 50px;
  display: inline-block;
  background-size: cover;
  vertical-align: middle;
}

nav{
  display: flex;
  justify-content: start;
  gap: 30px;
}
nav.active {
  display: flex !important;
}

nav>a:hover{
  background-color: var(--cor-secundaria);
  color: var(--cor-principal);
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--cor-principal);
  background-color: var(--branco);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}
h1{
  font-family: var(--fonte-titulo);
  font-weight: 700;
  font-size: 3rem;
  color: var(--branco);
  text-align: center;
  margin-bottom: 20px;
}
/* Cabeçalho */
header {
  text-align: center;
  background: var(--cor-principal);
  color: var(--branco);
  padding: 20px 0;
}


header h1 {
  text-align: center;
  margin-bottom: 10px;
}


header nav a {
  color: var(--branco);
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  padding: 5px;
  border-radius: 5px;
  transition: background-color 0.5s ease, color 0.3s ease;
}

/* Banner */
.banner {
  background: var(--cor-principal);
  padding: 50px 20px;
  text-align: center;
  background-image: url('../imagens/banner-bg.png');
  background-size: contain; 
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-weight: bold;
}

.banner h2 {
  margin-bottom: 10px;
}

.banner p {
  margin: auto;
  text-align: justify;
}
.texto-banner {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 20px;
  border-radius: 10px;
  color: black;
  max-width: 700px;
  margin: 0 auto;
}

/* Produtos */
.produtos {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px;
}
.produtos h2 {
  text-align: center;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  text-decoration: none;
  display: block;
  background: var(--cor-secundaria);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: var(--cor-principal);
  transition: 
    background-color 0.5s ease,
    transform 0.3s cubic-bezier(0.4, 0.2, 0.2, 1); /* adicione esta linha */
}

.card:hover {
  background-color: var(--cor-secundaria-maisforte); /* exemplo de leve destaque */
  transform: scale(1.07); /* aumenta o card ao passar o mouse */
  transition: 
    background-color 0.5s ease,
    transform 0.3s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.cardImg{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 550px; /* altura fixa para as imagens */
}

.card img{
  max-width: 100%;
  margin: 10px;
  height: max-content;
  border-radius: 10px;
}

.card h3 {
  margin-bottom: 10px;
}

.carrossel-container {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.carrossel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.card {
  min-width: 100%;
  box-sizing: border-box;
}

.btn-anterior,
.btn-proximo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--cor-principal);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
  border-radius: 50%;
  font-size: 18px;
}

.btn-anterior {
  left: 10px;
}

.btn-proximo {
  right: 10px;
}
/* Destaques */
/* Vídeos Produtos */
.videos-produtos {
  background: var(--cor-destaque);
  padding: 50px 20px;
  text-align: center;
}

.videos-produtos h2 {
  color: var(--cor-principal);
  margin-bottom: 30px;
  font-size: 2.2em;
  font-family: var(--fonte-titulo);
}

.video-card {
  background: rgba(255,255,255,0.85);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: inline-block;
  padding: 24px 24px 32px 24px;
  margin: 0 auto;
  max-width: 500px;
}

.video-card iframe {
  width: 100%;
  max-width: 450px;
  height: 350px;
  border-radius: 10px;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

.botao-link {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 28px;
  background: var(--cor-principal);
  color: var(--branco);
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1em;
  transition: background 0.5s, color 0.3s, transform 0.2s;
}

.botao-link:hover {
  background: var(--cor-secundaria-maisforte);
  color: var(--cor-principal);
  transform: scale(1.05);
}

/* Responsivo para vídeo */

/* Depoimentos */
.depoimentos {
  max-width: 1100px;
  margin: 40px auto;
  background: var(--cor-secundaria-maisforte);
  padding: 50px 20px;
  text-align: center;
  border-radius: 10px;
}

.depoimentos h2 {
  color: var(--cor-principal);
  font-family: var(--fonte-titulo);
  font-size: 2rem;
  margin-bottom: 32px;
}

.depoimento {
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  max-width: 500px;
  margin: 18px auto;
  padding: 24px 28px;
  font-size: 1.15rem;
  color: var(--cor-principal);
  font-style: italic;
  transition: transform 0.2s, box-shadow 0.2s;
}

.depoimento:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.95);
}

/* Sobre */
.sobre {
  background-color: var(--branco);
  background-image: url('../imagens/sobre.png');
  background-size: cover;
  background-attachment: fixed;
  padding: 50px 20px;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sobre h2 {
  text-align: center;
  margin-bottom: 20px;
}

.sobre p {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.texto-sobre{
  background-color: rgba(255, 255, 255, 0.7);
  padding: 20px;
  border-radius: 10px;
  color:var(--cor-principal);
  max-width: 700px;
  margin: 0 auto;
}
/* Redes sociais no contato */
.contato-redes {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 18px;
}

.rede-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.5s, box-shadow 0.2s;
}

.rede-link img {
  width: 22px;
  height: 22px;
  filter: grayscale(0.2);
}

.rede-link.facebook:hover {
  background: #4267B2;
}
.rede-link.facebook:hover img {
  filter: invert(1) brightness(2);
}

.rede-link.instagram:hover {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.rede-link.instagram:hover img {
  filter: invert(1) brightness(2);
}

.rede-link.whatsapp:hover {
  background: #25D366;
}
.rede-link.whatsapp:hover img {
  filter: invert(1) brightness(2);
}

/* Contato */
.contato {
  max-width: 800px;
  margin: 40px auto 0 auto;
  padding: 40px 24px 32px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  
}

.contato h2 {
  text-align: center;
  margin-bottom: 12px;
  font-size: 2rem;
  color: var(--cor-principal);
  font-family: var(--fonte-titulo);
}
.inline-contact {
  width: 100%;
}

.inline-form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.contato p {
  text-align: center;
  margin-bottom: 28px;
  color: #555;
  font-size: 1.05rem;
}

.contato-redes {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
}

.rede-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.5s, box-shadow 0.2s;
}

.rede-link img {
  width: 22px;
  height: 22px;
  filter: grayscale(0.2);
}

.rede-link.facebook:hover { background: #4267B2; }
.rede-link.facebook:hover img,
.rede-link.instagram:hover img,
.rede-link.whatsapp:hover img { filter: invert(1) brightness(2); }
.rede-link.instagram:hover {
  background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.rede-link.whatsapp:hover { background: #25D366; }

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form label {
  font-weight: bold;
  color: var(--cor-principal);
  margin-bottom: 4px;
}

form input,
form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 2px;
  background: #faf8fc;
  transition: border-color 0.2s;
}

form input:focus,
form textarea:focus {
  border-color: var(--cor-principal);
  outline: none;
}

form button {
  padding: 14px;
  background-color: var(--cor-principal);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: var(--cor-secundaria-maisforte);
  color: var(--cor-principal);
}

/* Rodapé */
footer {
  background: var(--cor-principal);
  color: var(--branco);
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  background-color: var(--branco);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.depoimentos-carrossel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.depoimento {
  display: none;
  flex: 1 0 100%;
  min-width: 0;
  transition: opacity 0.4s;
}

.depoimento.ativo {
  display: block;
}

.depoimento-anterior,
.depoimento-proximo {
  background: var(--cor-principal);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.5rem;
  cursor: pointer;
  margin: 0 10px;
  transition: background 0.3s;
}

.depoimento-anterior:hover,
.depoimento-proximo:hover {
  background: var(--cor-secundaria-maisforte);
  color: var(--cor-principal);
}
