@import url("https://fonts.googleapis.com/css2?family=Koh+Santepheap:wght@100;300;400;700;900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --brand-color: #ff0000;
  --paper: #f8f5f2;
  --white: #ffffff;
  --gray: #525252;
  --gray-footer: #161616d0;
  --text: #232323
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  font-family: "Koh Santepheap", poppins;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "poppins";
}

/* For WebKit-based browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 5px !important;
  /* Scrollbar width */
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Scrollbar track color */
}

::-webkit-scrollbar-thumb {
  background: var(--brand-color);
  /* Scrollbar thumb color */
  border-radius: 4px;
  /* Thumb rounding */
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
  /* Thumb color on hover */
}

body {
  background-color: var(--white);
}

header {
  display: flex;
  justify-content: space-between;
  /* Distribui os 3 itens: logo, nav e botão */
  align-items: center;
  padding: 10px 10px;
  /* Define uma altura consistente para o cabeçalho */
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

header img {
  width: 145px;
  height: 41px;
}

header nav ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  /* Aumentei o gap para um melhor espaçamento */
}

header nav a {
  font-weight: 400;
  font-size: 1.2rem;
  color: #333;
  position: relative;
  /* Necessário para o pseudo-elemento ::after */
  padding-bottom: 5px;
  /* Espaço para a linha não sobrepor o texto */
  transition: color 0.3s ease-out;
}

/* Efeito de linha para os links da navbar */
header nav a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--brand-color);
  transform: scaleX(0);
  /* Começa com largura 0 */
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

a {
  font-family: var(--font-terceira);
}

.navbar,
a {
  font-family: "poppins";
}

.desktop-nav a:hover {
  color: var(--brand-color);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  /* Expande a linha para 100% da largura */
  transform-origin: bottom left;
}

.titles {
  font-family: "poppins";
  font-weight: 400;
  font-size: 40px;
  line-height: 120%;
  padding-top: 5vh;
  padding-bottom: 2vh;
}

.btn1 {
  background-color: var(--brand-color);
  color: var(--white);
  font-weight: 400;
  font-size: 1.1rem;
  padding: 12px 40px;
  border: none;
  cursor: pointer;
  width: 200px;
  height: 49px;
  border-radius: 60px;
  position: relative;
  /* Para posicionar a linha */
  overflow: hidden;
  /* Para conter a animação da linha */
  transition: color 0.4s ease, background-color 0.4s ease;
}

.btn1:hover {
  background-color: var(--white);
  /* Fundo branco ao passar o mouse */
  color: var(--brand-color);
  border: 1px solid var(--brand-color);
}

.btn-menu {
  background-color: var(--brand-color);
  color: var(--white);
  font-weight: 400;
  /* Corrigido: sem 'px' */
  font-size: 1.1rem;
  padding: 12px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  position: relative;
  /* Para posicionar a linha */
  overflow: hidden;
  /* Para conter a animação da linha */
  transition: color 0.4s ease, background-color 0.4s ease;
}

.btn-menu:hover {
  background-color: var(--white);
  /* Fundo branco ao passar o mouse */
  color: var(--brand-color);
  border: 1px solid var(--brand-color);
  transition: all 0.4s ease;
}

.titles {
  font-family: "Koh Santepheap";
  font-weight: 400;
  font-style: Regular;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: center;
}

/* PRINCIPAIS IMAGENS DO PROJETO */

.img-hero {
  width: 400;
  height: 535;
  top: 184px;
  left: 1174px;
  padding-right: 100px;
  padding-left: 100px;
}

.img-about {

  border-radius: 16px;
}

.about-img {
  padding-top: 10vh;
  padding-left: 13vh;
}

.about-img img {
  height: auto;
  border-radius: 16px;
  top: 830px;
  left: 352px;
  width: 481px;
  height: 400px;
  opacity: 1;

}

.comentario-img {
  width: 120;
  height: 120;
  opacity: 1;
  top: 2378px;
  left: 392px;
  border-radius: 16px;

}

.stars img {
  width: 23px;
  height: 23px;
  margin: 1px;
}

/* SEÇÃO HERO */

.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10vh;
}

.hero-text {
  width: 545px;
  height: 292px;
  top: 296px;
  padding-left: 100px;
}

.title-hero {
  font-family: "Koh Santepheap";
  font-weight: 410;
  font-style: Regular;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0%;

}

.text-hero {
  font-family: "poppins";
  font-weight: 300;
  font-size: 25px;
  line-height: 160%;
  color: var(--text);
  padding-bottom: 15px;
}

/* SEÇÃO SOBRE NÓS */

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10vh;
  padding-bottom: 5vh;

}

.about-indicator {
  font-weight: 500;
  color: var(--brand-color);
  font-family: "Koh Santepheap";
}

.about-title {
  font-family: "Koh Santepheap";
  font-weight: 400;
  font-style: Regular;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0%;

}

.about-text {
  font-family: "poppins";
  font-weight: 300;
  color: var(--text);
  font-size: 21px;
  line-height: 160%;
  letter-spacing: 0%;
  padding-top: 10px;
  padding-bottom: 15px;
  text-align: justify;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 100px 0;
  gap: 10px;
  margin: 0 50px;
}

/* SEÇÃO POPULARES */

.Populares {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 100px 50px;
}

/* Container principal para alinhar os cards (opcional, se você já tiver um grid) */
.cards-container {
  display: flex;
  /* ou grid */
  justify-content: center;
  gap: 30px;
  /* Espaçamento entre os cards */
  padding: 20px;
}

/* Estilo geral do card */
.card {
  width: 350px;
  /* Largura do card, se quiser manter */
  background-color: var(--paper);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;

  /* Aumente o padding-bottom para criar mais espaço na parte de baixo do card */
  padding-bottom: 40px;
  padding-top: 45px;
  position: relative;
  overflow: visible;
}

.card:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition: transform 0.9s ease;
  box-shadow: 0 2px 10px var(--brand-color);

}

/* Container da imagem */
.card-image-container {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin: -90px auto 30px auto;
  /* Aumente a margem inferior aqui para afastar a imagem do título */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Título do card */
.card-title {
  font-size: 22px;
  color: var(--text);

  /* Aumente o espaçamento acima e abaixo do título */
  margin-top: 20px;
  margin-bottom: 15px;
}

/* Descrição do card */
.card-description {
  font-size: 14px;
  color: var(--text);
  font-weight: 355;
  /* Aumente o espaçamento abaixo da descrição */
  margin-bottom: 30px;
  font-family: "Poppins";

}

/* Preço do card */
.card-price {
  font-family: "Koh Santepheap";
  /* Use a fonte do seu projeto */
  font-size: 30px;
  color: var(--brand-color);
  /* Cor avermelhada do preço */
  font-weight: 505;
}

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* SEÇÃO COMENTARIOS */

.comentarios {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 100px 50px;
  flex-wrap: wrap;
}

.comentario-item {
  background-color: var(--paper);
  width: 490px;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.171);
}


.comentario-nome {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.comentario {
  font-family: "Poppins";
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
}



/* ==== FOOTER ==== */
.footer {
  width: 100%;
  /* Um fundo escuro e elegante para melhor contraste */
  background-color: var(--g);
  padding: 80px 0 20px;
  /* Mais espaço no topo para um visual premium */
  margin-top: 100px;
  /* Garante uma boa separação do conteúdo acima */
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  /* Espaço consistente entre as colunas */
  margin-bottom: 60px;
}

.footer-section {
  flex: 1;
  min-width: 220px;
  /* Garante que as colunas quebrem corretamente */
}

/* Seção da Marca */
.footer-brand .footer-logo {
  max-width: 140px;
  margin-bottom: 20px;
}



/* Títulos das seções */
.footer-section h3 {
  margin-bottom: 25px;
  font-family: "Koh Santepheap";
  color: var(--text);
  font-weight: 450;
  font-style: Regular;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0px;

}

/* Listas de links */
.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 12px;
}

.footer-section a {
  color: #161616d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--brand-color);
  /* Efeito de hover simples e eficaz */
}

/* Rodapé inferior (Copyright) */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2vw;
  border-top: 2px solid var(--paper);
  /* Cor de borda mais suave */
  font-size: 0.9rem;
  margin-top: 40px;
  padding-top: 30px;
}

/* Reset para a tag <address> */
.footer-contact {
  font-style: normal;
}

/* Ícones de Redes Sociais */
.social-icons {
  display: flex;
  gap: 20px;
}

.social-icons a {
  display: inline-block;
}

.social-icons img {
  width: 32px;
  /* Ícones com tamanho mais refinado */
  height: 32px;
  /* MÁGICA: Inverte a cor do SVG de preto para branco para ser visível */
  filter: brightness(0) invert(1);
  opacity: 0.7;
  /* Deixa o ícone um pouco mais sutil */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover img {
  opacity: 1;
  /* Opacidade total no hover */
  transform: translateY(-3px);
  /* Efeito de levantar o ícone */
}

.desktop-footer-links img {
  filter: none;
  opacity: 1;
}



.mobile-footer-bottom {
  display: none;
}

.desktop-footer-links {
  display: flex;
  gap: 20px;
}