* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #5a5a5a;
  background: #fff;
  overflow-x: hidden;
}

.container {
  width: 92%;
  max-width: 1800px;
  margin: 0 auto;
}

/* ===== HEADER ===== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background: transparent;
}

/* NAV ocupa 100% da tela */
.navbar {
  width: 100%;
  background: #fff;
  padding: 20px 0;
  height: 120px;
}

/* Container centraliza conteúdo */
.nav-container {
  max-width: 1800px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  /* alinha itens pelo topo */
  padding: 10px 10px;
}

/* Remove margem padrão do body se tiver */
body {
  margin: 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-area img {
  width: 85px;
}

.logo-area h2 {
  font-size: 22px;
  color: #d63384;
  font-weight: 600;
}

.logo-area span {
  font-size: 12px;
  color: #999;
  letter-spacing: 1px;
}

.logo img {
  width: 580px;
  height: auto;
  transition: all 0.4s ease;
}

.logo {
  position: relative;
  top: -60px;
  /* antes -90 */
  left: -20px;
  /* antes -90 */
  transition: all 0.4s ease;
}

#header.header-scroll .logo {
  top: 0;
}

#header.header-scroll .logo img {
  width: 250px;
}



nav a {
  text-decoration: none;
  color: #6a4c57;

  font-size: 55px;
  /* aumenta tamanho */
  font-weight: 800;
  /* deixa mais forte */
  letter-spacing: 0.5px;
  /* leve espaçamento elegante */

  transition: 0.3s;
}

nav a:hover {
  color: #d63384;
}

.btn-nav {
  display: inline-block;
  background: linear-gradient(135deg, #f8a5c2, #d63384);
  color: #fff;
  padding: 14px 38px;
  /* aumenta largura e altura */
  border-radius: 50px;
  /* deixa totalmente arredondado */
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(214, 51, 132, 0.25);
  transition: 0.3s ease;
  margin-left: auto;
  margin-top: 25px;

}


.btn-nav:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(214, 51, 132, 0.35);
}

.btn-top {
  background: linear-gradient(45deg, #ff9ec7, #d63384);
  padding: 10px 28px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.4s;
  box-shadow: 0 8px 20px rgba(214, 51, 132, 0.3);
}

.btn-top:hover {
  transform: translateY(-3px);
}

.menu {
  display: flex;
  gap: 60px;
  list-style: none;
  margin-top: 35px;
}



.menu a {
  text-decoration: none;
  color: #5c3b4d;
  font-size: 20px;
  /* aumentamos o tamanho */
  font-weight: 600;
  transition: 0.3s;
}

.menu a:hover {
  color: #d63384;
}

/* ===== HERO ===== */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background:
    linear-gradient(rgba(255, 182, 193, 0.6), rgba(255, 105, 180, 0.6)),
    url("img/bg-rosa.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 120px;
}

.hero-grid {
  display: contents;
}

.hero-text {
  padding-left: 8%;
}

.hero-text h1 {
  font-size: 60px;
  color: #fff;
  font-weight: 600;
  line-height: 1.1;
  font-family: 'Playfair Display', serif;
}

.hero-text p {
  margin: 25px 0;
  font-size: 30px;
  color: #fff;
}

.btn-light {
  background: #fff;
  padding: 14px 35px;
  border-radius: 40px;
  text-decoration: none;
  color: #d63384;
  font-weight: 600;
  box-shadow: none;
}

.hero-img {
  height: 100%;
}

.hero-img img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

/* ===== SOBRE ===== */

.sobre {
  padding: 120px 0;
  background: linear-gradient(to bottom, #fff, #ffe6f0);
  text-align: center;
}

.sobre h2 {
  font-size: 36px;
  color: #6a4c57;
  margin-bottom: 20px;
  position: relative;
}

.sobre h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #d63384;
  display: block;
  margin: 15px auto;
  border-radius: 3px;
}

.sobre p {
  max-width: 900px;
  margin: auto;
  font-size: 25px;
  line-height: 2.5;
}

/* ===== PRODUTOS ===== */

.produtos {
  padding: 160px 0;
  background: #fff;
  text-align: center;
}

.produtos h2 {
  font-size: 36px;
  color: #6a4c57;
  margin-bottom: 60px;
  position: relative;
}

.produtos h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #d63384;
  display: inline;
  margin: 15px auto;
  border-radius: 3px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  justify-content: center;
}


.card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  height: 620px;
  /* altura fixa igual para todos */
}

.card:hover {
  transform: translateY(-15px);
}

.card img {
  width: 100%;
  height: 380px;
  /* área fixa da imagem */
  object-fit: contain;
  /* mostra imagem inteira */
  background: #fff;
  /* evita fundo estranho */
  padding: 20px;
  /* dá respiro */
}


.card h3 {
  margin: 20px 0 12px;
  font-size: 24px;
  font-weight: 600;
  color: #6a4c57;
}

.card p {
  padding: 0 30px;
  font-size: 17px;
  line-height: 1.6;
  flex-grow: 1;
}

.btn-card {
  display: inline-block;
  margin-bottom: 35px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 18px 42px;
  border-radius: 40px;
  background: linear-gradient(45deg, #ff9ec7, #d63384);
  font-size: 18px;
  /* aumenta tamanho */
  font-weight: 700;
  /* deixa mais forte */
  letter-spacing: 0.5px;
  color: #ffffff;
}




.btn-card:hover {
  transform: translateY(-4px);
}

/* GALERIA */

.galeria {
  padding: 120px 0;
  background: #fff0f6;
  text-align: center;
}

.galeria h2 {
  font-size: 40px;
  color: #6a4c57;
  margin-bottom: 10px;
}

.galeria-subtitulo {
  margin-bottom: 60px;
  font-size: 18px;
  color: #777;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.galeria-item {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.galeria-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.4s;
}

.galeria-item:hover img {
  transform: scale(1.1);
}

/* PREÇOS */

.precos {
  padding: 120px 0;
  background: #fff;
  text-align: center;
}

.precos h2 {
  font-size: 40px;
  color: #6a4c57;
  margin-bottom: 10px;
}

.precos-subtitulo {
  margin-bottom: 60px;
  color: #777;
}

.precos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.preco-card {
  background: #fff0f6;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.preco-card:hover {
  transform: translateY(-10px);
}

.preco-card h3 {
  color: #d63384;
  margin-bottom: 15px;
}

.preco-valor {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.preco-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.preco-card li {
  margin: 10px 0;
}

.btn-preco {
  background: linear-gradient(45deg, #ff9ec7, #d63384);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
}

.precos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.preco-card {
  background: #f8e6ec;
  padding: 30px;
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 100%;
}

/* LISTA */
.preco-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;

  text-align: left;
  /* alinha melhor */
}

.preco-card li {
  margin-bottom: 10px;
  line-height: 1.4;
}

/* TÍTULO */
.preco-card h3 {
  text-align: center;
}

/* PREÇO */
.preco-valor {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0;
}

/* BOTÃO */
.btn-preco {
  margin-top: auto;
  /* ESSENCIAL */
  align-self: center;
}

/* destaque */
.destaque {
  background: #ffd6e7;
  transform: scale(1.05);
}

/* ===== CTA ===== */

.cta {
  background:
    linear-gradient(rgba(214, 51, 132, 0.85), rgba(214, 51, 132, 0.85)),
    url("img/bg-rosa.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  text-align: center;
  color: white;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 35px;
  font-size: 18px;
}

.btn-whatsapp {
  background: white;
  color: #25D366;
  padding: 16px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.4s;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-5px);
}

/* ===== FOOTER ===== */

.footer {
  background: #fff0f6;
  padding: 70px 20px;
  text-align: center;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-text {
  margin-bottom: 25px;
  color: #6a4c57;
  font-size: 18px;
}

.footer-redes {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
}

.footer-redes img {
  width: 40px;
  transition: 0.3s;
}

.footer-redes img:hover {
  transform: scale(1.2);
}

.footer-copy {
  font-size: 14px;
  color: #777;
}

/* BOTÃO WHATSAPP PROFISSIONAL */

.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  z-index: 999;
  animation: whatsappPulse 2s infinite;
  transition: 0.3s;
}

.whatsapp-float img {
  width: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Animação pulsando */

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== RESPONSIVO ===== */

@media(max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  nav {
    display: block;
  }

  .hero-text h1 {
    font-size: 36px;
  }
}

@media (max-width: 1200px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards {
    grid-template-columns: 1fr;
  }
}

/* RESPONSIVO MOBILE */
@media(max-width: 768px) {

  /* MENU */
  .menu {
    display: none;
  }

  /* LOGO */
  .logo img {
    width: 220px;
  }

  .logo {
    top: -20px;
    left: 0;
  }

  /* HERO */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  /* SEÇÕES */
  section {
    padding: 80px 20px;
  }

  /* CARDS */
  .cards {
    grid-template-columns: 1fr;
  }

  .precos-grid {
    grid-template-columns: 1fr;
  }

  /* GALERIA */
  .galeria-grid {
    grid-template-columns: 1fr 1fr;
  }

  .precos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }

  /* CARD */
  .preco-card {
    background: #f8e6ec;
    padding: 30px;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 100%;
  }

  /* LISTA */
  .preco-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;

    text-align: left;
    /* alinha melhor */
  }

  .preco-card li {
    margin-bottom: 10px;
    line-height: 1.4;
  }

  /* TÍTULO */
  .preco-card h3 {
    text-align: center;
  }

  /* PREÇO */
  .preco-valor {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0;
  }

  /* BOTÃO */
  .btn-preco {
    margin-top: auto;
    /* ESSENCIAL */
    align-self: center;
  }

}

@media (max-width: 480px) {

  .hero-text h1 {
    font-size: 22px;
  }

  .galeria-grid {
    grid-template-columns: 1fr;
  }

  .preco-card {
    padding: 20px;
  }

}

body {
  margin: 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-area img {
  width: 85px;
}

.logo-area h2 {
  font-size: 22px;
  color: #d63384;
  font-weight: 600;
}

.logo-area span {
  font-size: 12px;
  color: #999;
  letter-spacing: 1px;
}

.logo img {
  width: 580px;
  height: auto;
  transition: all 0.4s ease;
}

.logo {
  position: relative;
  top: -60px;
  /* antes -90 */
  left: -20px;
  /* antes -90 */
  transition: all 0.4s ease;
}

#header.header-scroll .logo {
  top: 0;
}

#header.header-scroll .logo img {
  width: 250px;
}



nav a {
  text-decoration: none;
  color: #6a4c57;

  font-size: 55px;
  /* aumenta tamanho */
  font-weight: 800;
  /* deixa mais forte */
  letter-spacing: 0.5px;
  /* leve espaçamento elegante */

  transition: 0.3s;
}

nav a:hover {
  color: #d63384;
}

.btn-nav {
  display: inline-block;
  background: linear-gradient(135deg, #f8a5c2, #d63384);
  color: #fff;
  padding: 14px 38px;
  /* aumenta largura e altura */
  border-radius: 50px;
  /* deixa totalmente arredondado */
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(214, 51, 132, 0.25);
  transition: 0.3s ease;
  margin-left: auto;
  margin-top: 25px;

}


.btn-nav:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(214, 51, 132, 0.35);
}

.btn-top {
  background: linear-gradient(45deg, #ff9ec7, #d63384);
  padding: 10px 28px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.4s;
  box-shadow: 0 8px 20px rgba(214, 51, 132, 0.3);
}

.btn-top:hover {
  transform: translateY(-3px);
}

.menu {
  display: flex;
  gap: 60px;
  list-style: none;
  margin-top: 35px;
}



.menu a {
  text-decoration: none;
  color: #5c3b4d;
  font-size: 20px;
  /* aumentamos o tamanho */
  font-weight: 600;
  transition: 0.3s;
}

.menu a:hover {
  color: #d63384;
}

/* ===== HERO ===== */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background:
    linear-gradient(rgba(255, 182, 193, 0.6), rgba(255, 105, 180, 0.6)),
    url("img/bg-rosa.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 120px;
}

.hero-grid {
  display: contents;
}

.hero-text {
  padding-left: 8%;
}

.hero-text h1 {
  font-size: 60px;
  color: #fff;
  font-weight: 600;
  line-height: 1.1;
  font-family: 'Playfair Display', serif;
}

.hero-text p {
  margin: 25px 0;
  font-size: 30px;
  color: #fff;
}

.btn-light {
  background: #fff;
  padding: 14px 35px;
  border-radius: 40px;
  text-decoration: none;
  color: #d63384;
  font-weight: 600;
  box-shadow: none;
}

.hero-img {
  height: 100%;
}

.hero-img img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

/* ===== SOBRE ===== */

.sobre {
  padding: 120px 0;
  background: linear-gradient(to bottom, #fff, #ffe6f0);
  text-align: center;
}

.sobre h2 {
  font-size: 36px;
  color: #6a4c57;
  margin-bottom: 20px;
  position: relative;
}

.sobre h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #d63384;
  display: block;
  margin: 15px auto;
  border-radius: 3px;
}

.sobre p {
  max-width: 900px;
  margin: auto;
  font-size: 25px;
  line-height: 2.5;
}

/* ===== PRODUTOS ===== */

.produtos {
  padding: 160px 0;
  background: #fff;
  text-align: center;
}

.produtos h2 {
  font-size: 36px;
  color: #6a4c57;
  margin-bottom: 60px;
  position: relative;
}

.produtos h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #d63384;
  display: inline;
  margin: 15px auto;
  border-radius: 3px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  justify-content: center;
}


.card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  height: 620px;
  /* altura fixa igual para todos */
}

.card:hover {
  transform: translateY(-15px);
}

.card img {
  width: 100%;
  height: 380px;
  /* área fixa da imagem */
  object-fit: contain;
  /* mostra imagem inteira */
  background: #fff;
  /* evita fundo estranho */
  padding: 20px;
  /* dá respiro */
}


.card h3 {
  margin: 20px 0 12px;
  font-size: 24px;
  font-weight: 600;
  color: #6a4c57;
}

.card p {
  padding: 0 30px;
  font-size: 17px;
  line-height: 1.6;
  flex-grow: 1;
}

.btn-card {
  display: inline-block;
  margin-bottom: 35px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 18px 42px;
  border-radius: 40px;
  background: linear-gradient(45deg, #ff9ec7, #d63384);
  font-size: 18px;
  /* aumenta tamanho */
  font-weight: 700;
  /* deixa mais forte */
  letter-spacing: 0.5px;
  color: #ffffff;
}




.btn-card:hover {
  transform: translateY(-4px);
}

/* GALERIA */

.galeria {
  padding: 120px 0;
  background: #fff0f6;
  text-align: center;
}

.galeria h2 {
  font-size: 40px;
  color: #6a4c57;
  margin-bottom: 10px;
}

.galeria-subtitulo {
  margin-bottom: 60px;
  font-size: 18px;
  color: #777;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.galeria-item {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.galeria-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.4s;
}

.galeria-item:hover img {
  transform: scale(1.1);
}

/* PREÇOS */

.precos {
  padding: 120px 0;
  background: #fff;
  text-align: center;
}

.precos h2 {
  font-size: 40px;
  color: #6a4c57;
  margin-bottom: 10px;
}

.precos-subtitulo {
  margin-bottom: 60px;
  color: #777;
}

.precos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.preco-card {
  background: #fff0f6;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.preco-card:hover {
  transform: translateY(-10px);
}

.preco-card h3 {
  color: #d63384;
  margin-bottom: 15px;
}

.preco-valor {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.preco-card ul {
  list-style: none;
  margin-bottom: 25px;
}

.preco-card li {
  margin: 10px 0;
}

.btn-preco {
  background: linear-gradient(45deg, #ff9ec7, #d63384);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
}

.precos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.preco-card {
  background: #f8e6ec;
  padding: 30px;
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  height: 100%;
}

/* LISTA */
.preco-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;

  text-align: left;
  /* alinha melhor */
}

.preco-card li {
  margin-bottom: 10px;
  line-height: 1.4;
}

/* TÍTULO */
.preco-card h3 {
  text-align: center;
}

/* PREÇO */
.preco-valor {
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  margin: 10px 0;
}

/* BOTÃO */
.btn-preco {
  margin-top: auto;
  /* ESSENCIAL */
  align-self: center;
}

/* destaque */
.destaque {
  background: #ffd6e7;
  transform: scale(1.05);
}

/* ===== CTA ===== */

.cta {
  background:
    linear-gradient(rgba(214, 51, 132, 0.85), rgba(214, 51, 132, 0.85)),
    url("img/bg-rosa.jpg");
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  text-align: center;
  color: white;
}

.cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta p {
  margin-bottom: 35px;
  font-size: 18px;
}

.btn-whatsapp {
  background: white;
  color: #25D366;
  padding: 16px 40px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.4s;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-5px);
}

/* ===== FOOTER ===== */

.footer {
  background: #fff0f6;
  padding: 70px 20px;
  text-align: center;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
}

.footer-text {
  margin-bottom: 25px;
  color: #6a4c57;
  font-size: 18px;
}

.footer-redes {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
}

.footer-redes img {
  width: 40px;
  transition: 0.3s;
}

.footer-redes img:hover {
  transform: scale(1.2);
}

.footer-copy {
  font-size: 14px;
  color: #777;
}

/* BOTÃO WHATSAPP PROFISSIONAL */

.whatsapp-float {
  position: fixed;
  width: 65px;
  height: 65px;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  z-index: 999;
  animation: whatsappPulse 2s infinite;
  transition: 0.3s;
}

.whatsapp-float img {
  width: 35px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Animação pulsando */

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {

  /* ===== HEADER ===== */
  header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 10px 15px;
  }

  /* LOGO */
  .logo {
    position: relative;
    top: 0;
    left: 0;
  }

  .logo img {
    width: 120px;
    height: auto;
  }

  /* MENU HAMBURGUER */
  .menu-toggle {
    display: block;
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    color: #d63384;
    z-index: 10000;
    cursor: pointer;
  }

  /* ESCONDE MENU NORMAL */


  /* MENU ABERTO */
  .menu.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    z-index: 9999;
  }

  /* REMOVE BOTÃO ENCOMENDAR */
  .btn-nav {
    display: none;
  }

  /* ===== HERO ===== */
  .hero {
    padding-top: 0;
    height: 75vh;
    /* 🔥 DIMINUÍMOS PRA NÃO CORTAR */
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }

  .hero-img {
    width: 100%;
    height: 100%;
  }

  .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    /* 🔥 CENTRALIZA O BOLO */
  }

  /* TEXTO */
  .hero-text {
    text-align: center;
    padding: 0 20px;
  }

  .hero-text h1 {
    font-size: 26px;
  }

  .hero-text p {
    font-size: 16px;
  }

  /* ===== GERAL ===== */
  section {
    padding: 80px 20px;
  }

  .cards,
  .precos-grid {
    grid-template-columns: 1fr;
  }

  .galeria-grid {
    grid-template-columns: 1fr 1fr;
  }

  @media (max-width: 768px) {

    /* ===== RESET MOBILE ===== */
    body,
    html {
      overflow-x: hidden;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    /* ===== HEADER ===== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: #fff;
      z-index: 9999;
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 15px;
      position: relative;
    }

    /* LOGO */
    .logo {
      top: 0;
      left: 0;
    }

    .logo img {
      width: 110px;
    }

    /* ===== MENU HAMBURGUER ===== */

    /* ESCONDE NO DESKTOP (garantia) */
  }

  @media (max-width: 768px) {

    /* MOSTRA NO MOBILE */
    .menu-toggle {
      display: block;
      font-size: 28px;
      color: #d63384;
      cursor: pointer;
      z-index: 10000;
    }

    /* MENU NORMAL SOME */
    .menu {
      display: none;
    }

    /* MENU ATIVO */
    .menu.active {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background: #fff;
      padding: 20px 0;
    }

    /* REMOVE BOTÃO */
    .btn-nav {
      display: none;
    }

    /* ===== HERO (BOLO) ===== */

    .hero {
      margin-top: 70px;
      /* espaço pro header */
      height: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0;
    }

    .hero-img {
      width: 100%;
      height: auto;
    }

    .hero-img img {
      width: 100%;
      height: 55vh;
      /* 🔥 DIMINUÍMOS */
      object-fit: cover;
      object-position: center;
    }

    /* TEXTO */
    .hero-text {
      text-align: center;
      padding: 20px;
    }

    .hero-text h1 {
      font-size: 24px;
      line-height: 1.3;
    }

    .hero-text p {
      font-size: 15px;
    }

    /* ===== SEÇÕES ===== */

    section {
      padding: 60px 15px;
    }

    .cards {
      grid-template-columns: 1fr;
      gap: 25px;
    }

    .card {
      height: auto;
    }

    .galeria-grid {
      grid-template-columns: 1fr;
    }

    .precos-grid {
      grid-template-columns: 1fr;
    }

  }

  @media (max-width: 768px) {

    .card img {
      width: 100%;
      height: 220px;
      object-fit: contain;
      /* 🔥 mostra imagem inteira */
      object-position: center;
      /* 🔥 centraliza */
      background: #fff;
      /* evita fundo estranho */
    }

  }

  @media (max-width: 768px) {

    .hero-img img {
      width: 100%;
      height: 50vh;
      /* 🔥 menor */
      object-fit: contain;
      /* 🔥 mostra o bolo inteiro */
      object-position: center;
    }

  }

  @media (max-width: 768px) {

    .hero {
      margin-top: 80px;
      /* espaço pro header */
    }

  }

  @media (max-width: 768px) {

    .card {
      display: flex;
      flex-direction: column;
      align-items: center;
    }


    .card img {
      width: 100%;
      max-width: 100%;
      /* 🔥 ocupa todo o card */
      height: 200px;
      /* 🔥 aumenta a altura */
      object-fit: cover;
      /* 🔥 preenche melhor */
      object-position: center;
      border-radius: 15px;
    }



  }

  @media (max-width: 768px) {

    .menu-toggle {
      display: block !important;
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 30px;
      color: #d63384;
      z-index: 9999;
      cursor: pointer;
    }

    .nav-container {
      position: relative;
    }

  }

}
/* ===== TABLETS (iPad e similares) ===== */
@media (min-width: 769px) and (max-width: 1024px) {

  /* HERO */
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    height: auto;
    padding-top: 140px;
  }

  .hero-img img {
    width: 100%;
    height: 60vh;
    object-fit: cover;
    object-position: center;
  }

  .hero-text {
    padding: 20px;
  }

  .hero-text h1 {
    font-size: 40px;
  }

  /* MENU */
  .menu {
    gap: 25px;
  }

  .menu a {
    font-size: 16px;
  }

  /* CARDS */
  .cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .card img {
    height: 220px;
    object-fit: cover;
    object-position: center;
  }

  /* GALERIA */
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* DESKTOP - escondido */
.menu-toggle {
  display: none;
}