:root {
  --background-1: #fff8f5;
  --rosa-suave: #efc7c2;
  --rosa-queimado: #c97b84;
  --dourado-chamapanhe: #d4af37;
  --lilas-destaque: #c8a2c8;
  --texto-principal: #4a4a4a;
  --cta-button: #c97b84;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background-color: var(--background-1);
  font-family: "Poppins", sans-serif;
}
h2 {
  line-height: 1;
  text-transform: uppercase;
}

/**/
/**/
@media screen and (max-width: 768px) {
  .hero h1 {
    font-size: 1.65rem;
    text-shadow: 1px 2px 1px #5e2a3e;
  }
  .hero p {
    font-size: 1rem;
  }
}
/* 🎬 Seção Hero */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.8);
}

/* Camada de cor suave para contraste */
.overlay .overlay-hero {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(255, 248, 245, 0.1)
  );
  z-index: 1;
}
.hero video {
  filter: brightness(0.5);
}

/* Conteúdo do hero */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  padding: 0 20px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}
.hero h1 span {
  color: var(--cta-button);
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f9f9f9;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
  text-transform: uppercase;
}
.hero p span {
  color: var(--cta-button);
  text-transform: uppercase;
}
.btn-whatsapp {
  background-color: #c97b84;
  color: #fff;
  padding: 10px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  max-width: fit-content;
}

.btn-whatsapp:hover {
  background-color: #b52755;
  transform: scale(1.05);
}

/* 🔁 Animação suave de entrada */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}

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

/* 📱 Responsividade */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}
/* SOBRE O SALÃO */
.about {
  position: relative;
  padding: 100px 5%;
  background: url(./assets/images/salao-kennoa.webp) no-repeat center/cover;
  color: #fff;
  z-index: 1;
  background-attachment: fixed;
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* sombra escura */
  z-index: -1; /* fica atrás do texto */
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image img {
  width: 450px;
  max-width: 100%;
  border-radius: 1.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #eec9d3;
  margin-bottom: 20px;
}

.about-text p {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  color: var(--background-1);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-btn {
  display: inline-block;
  background-color: #c97b84;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background-color: #b52755;
  transform: translateY(-3px);
}

/* Responsivo */
@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-text h2 {
    font-size: 2rem;
  }
}
.sobre {
  padding: 20px 5%;
  background: linear-gradient(
    rgba(192, 107, 136, 0.55),
    rgba(255, 218, 230, 0.3)
  );
}

.sobre-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.sobre-texto {
  flex: 1;
  min-width: 320px;
}

.sobre h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: #d14976;
  margin-bottom: 20px;
}

.sobre p {
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

.diferenciais {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.diferenciais li {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  margin-bottom: 10px;
  color: #555;
}

.btn-sobre {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #d88baa, #c06b88);
  color: #fff;
  border-radius: 30px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 6px 15px rgba(192, 107, 136, 0.3);
}

.btn-sobre:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(192, 107, 136, 0.4);
}

.sobre-img {
  flex: 1;
  min-width: 320px;
}

.sobre-img img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* 🎀 Sessão Serviços */
.services {
  background-color: #fff8f5;
  padding: 80px 0;
  color: #333;
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-header h2 {
  font-family: "Playfair Display", serif;
  color: #c97b84;
  font-size: 2.5rem;
}

.services-header p {
  color: #777;
  font-size: 1.1rem;
  margin-top: 10px;
}

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

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.promo-highlight-card,
.service-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* CARD PROMOCIONAL (mesmo layout, + destaque) */
.promo-highlight-card {
  border: 2px solid #ff7ca3;
  background: linear-gradient(to bottom right, #fff5f8, #ffe9f0);
  position: relative;
  animation: promoPulse 3s infinite ease-in-out;
}

/* Selo Promo */
.promo-highlight-card .promo-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff4786;
  color: #fff;
  padding: 6px 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  z-index: 5;
  animation: wiggle 1.5s infinite ease-in-out;
}

/* Destaque Preço */
.promo-price {
  font-size: 1.4rem;
  color: #d22f6b !important;
  font-weight: 800;
}

/* Texto urgente */
.promo-limited {
  font-size: 14px;
  color: #b52755;
  font-weight: 700;
  margin-top: 5px;
}

/* Botão Promo */
.promo-btn {
  background: linear-gradient(to right, #ff5a8b, #ff8cb0) !important;
  box-shadow: 0 8px 20px rgba(255, 100, 150, 0.35);
}

.promo-btn:hover {
  transform: scale(1.05);
  background: #d22f6b !important;
}

.service-card {
  min-width: 300px;
  margin: 0 10px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: scale(1.03);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-info {
  padding: 20px;
  text-align: left;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-info h3 {
  font-family: "Playfair Display", serif;
  color: #c97b84;
  margin-bottom: 10px;
}

.service-info p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.service-info .btn:not(.promo-btn) {
  text-align: center;
  text-transform: uppercase;
}
.service-info .btn,
.promo-btn {
  align-self: flex-start;
  margin-top: 15px;
  width: 100%;
}
.price-old {
  text-decoration: line-through;
  color: #999;
}

.price-new {
  color: #d4af37;
  font-weight: bold;
}

.btn {
  display: inline-block;
  background-color: #c97b84;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #b52755;
  color: #fff;
}

/* Botões laterais */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(201, 123, 132, 0.8);
  color: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 10;
}

.carousel-btn:hover {
  background-color: #b52755;
}

.carousel-btn.left {
  left: 10px;
}
.carousel-btn.right {
  right: 10px;
}

/* Responsivo */
@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }
  .carousel-track {
    overflow-x: scroll;
    scroll-behavior: smooth;
  }
  .service-card {
    min-width: 260px;
  }
}
.galeria {
  padding: 80px 10%;
  background: linear-gradient(
    rgba(192, 107, 136, 0.55),
    rgba(255, 218, 230, 0.3)
  );

  text-align: center;
}

.galeria h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  color: #c06b88;
  margin-bottom: 10px;
  line-height: 1;
}

.galeria .subtitulo {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 35px;
}

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

.grid-galeria .item {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.grid-galeria img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.3s;
}

.grid-galeria img:hover {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.localizacao {
  padding: 80px 10%;
  background: linear-gradient(to right, #fffafc, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-localizacao {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
}

.info-localizacao {
  flex: 1 1 400px;
}

.info-localizacao h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #c06b88;
  margin-bottom: 20px;
  line-height: 1;
}

.info-localizacao p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 20px;
}

.info-localizacao .dados p {
  margin-bottom: 10px;
}

.btn-localizacao {
  display: inline-block;
  background: #c06b88;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-localizacao:hover {
  background: #b52755;
  color: #fff;
}

.mapa {
  flex: 1 1 500px;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsivo */
@media (max-width: 900px) {
  .container-localizacao {
    flex-direction: column;
    gap: 30px;
  }

  .info-localizacao h2 {
    text-align: center;
    line-height: 1;
  }

  .info-localizacao p,
  .info-localizacao .dados {
    text-align: center;
  }

  .btn-localizacao {
    display: block;
    margin: 20px auto 0;
  }

  .mapa {
    width: 100%;
    height: 350px;
  }
}

.faq-section {
  background-color: #fff8f5;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-container h2 {
  font-family: "Playfair Display", serif;
  text-align: center;
  font-size: 2.5rem;
  color: #c97b84;
  margin-bottom: 10px;
  line-height: 1;
}

.faq-container .subtitle {
  text-align: center;
  color: #6f6f6f;
  margin-bottom: 40px;
}

.faq-item {
  border-bottom: 1px solid #efd8d2;
  margin-bottom: 10px;
}

.faq-question {
  background: none;
  border: none;
  outline: none;
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  padding: 16px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #c97b84;
}

.faq-answer {
  display: none;
  padding-bottom: 16px;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.faq-answer a {
  color: #c97b84;
  text-decoration: none;
  font-weight: 600;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: #c97b84;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-slider {
  position: relative;
  overflow: hidden;
}
.gallery-track {
  display: flex;
  overflow-x: scroll;
  scroll-behavior: smooth;

  /* Esconde as barras */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE e Edge */
}
.gallery-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari e Opera */
}
.gallery-item {
  flex: 0 0 auto;
  margin-right: 16px;
  width: 280px;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease; /* suavidade no zoom */
}

.gallery-item:hover img {
  transform: scale(1.2); /* aumenta só a imagem */
}

.gallery-item {
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-item.active {
  transform: scale(1.15);
  z-index: 2;
}

.gallery-item:not(.active) {
  opacity: 0.6;
  transform: scale(0.9);
}
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #b52755;
  color: white;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 15px;
  z-index: 99;
}
.scroll-btn.left {
  left: 0;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
}
.scroll-btn.right {
  right: 0;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}
