/* ==========================
   VARIÁVEIS DE CORES
   ========================== */
:root {
  --black: #1A1A1A;
  --gold: #000;
  --white: #FFFFFF;
  --offwhite: #f8f8f8;
  --gray: #707070;
  --shadow: 0 8px 24px rgba(0,0,0,.12);
  --radius: 16px;
  --transition: 0.3s ease;
}

/* ==========================
   RESET E BASE
   ========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: var(--offwhite);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--radius);
}

/* ==========================
   HEADER
   ========================== */
header.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

header .container {
  max-width: 1200px;
  margin: 0 auto;
  /*padding: 18px 6%;*/
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Menu ativo conforme seção visível */
header nav a {
  position: relative;
  transition: color 0.3s ease;
}

header nav a.active {
  color: var(--gray);
  font-weight: 600;
}

header nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}


.logo img {
  max-width: 110px;
  height: auto;
  display: block;
}

header nav a {
  margin: 0 16px;
  text-decoration: none;
  font-weight: 500;
  color: var(--black);
  transition: var(--transition);
}

header nav a:hover {
  color: var(--gray);
}

.btn-primary {
  background:  var(--black);
  color: var(--white);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  animation: pulse 5s infinite;
  position: relative;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.0);
  }

  /* Pulso acontece rapidamente */
  4% {
    transform: scale(1.05);
    box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.08);
  }

  8% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }

  /* Fica parado até completar os 5s */
  100% {
    transform: scale(1);
  }
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--gray) !important;
  color: #FFF !important;
}

/* ==========================
   HERO
   ========================== */
.hero {
  position: relative;
  width: 100%;
  height: 75vh; /* desktop */
  overflow: hidden;
  border-radius: 0% 0% 15% 15%;
}


.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


@media (max-width: 768px) {
  .hero {
    height: auto;
  }

  .hero-img {
    height: auto;
    max-height: 70svh;
  }
}


.hero .overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: rgba(0,0,0,0.35);
}

.hero-content {
  position: relative;
  color: var(--white);
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
  animation: fadeUp 1s ease forwards;
}

.hero-sub {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  animation: fadeUp 1.2s ease forwards;
}

/* ==========================
   SEÇÕES
   ========================== */
.section {
  padding: 60px 6%;
  scroll-margin-top: 140px; /* um pouco maior que o header */
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-align: center;
  color: var(--black);
  margin-bottom: 40px;
}

.section-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: var(--black);
  opacity: 0.9;
  line-height: 1.8;
}

/* ==========================
   PLANOS
   ========================== */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.plan {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}

.plan:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,.15);
}

.plan h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.plan p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.btn-plan {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-plan:hover {
  background:  var(--gray) !important;
  color: #FFF !important;
  transform: translateY(-2px);
}

/* ==========================
   ABOUT HER
   ========================== */


.about-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 40px 1.4fr;
  align-items: center;
  gap: 40px;
  padding-top: 40px;
}

/* FOTO */
.about-photo img {
  width: 100%;
  max-width: 320px;
  border-radius: 40% 0%;
  box-shadow: 0 18px 30px rgba(0,0,0,0.25);
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.35));
}

@media (max-width: 768px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 20px;
  }

  .about-photo img {
    max-width: 260px;
    width: 100%;
    filter: drop-shadow(0 18px 26px rgba(0,0,0,.35));
}

  .about-text p {
    font-size: 1rem;
    line-height: 1.7;
  }
}
@media (max-width: 430px) {
  .about-photo img {
    max-width: 220px;
    filter: drop-shadow(0 18px 26px rgba(0,0,0,.35));
  }

  .section-title {
    font-size: 1.6rem;
  }
}


/* DIVISOR */
.about-divider {
  width: 4px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--black),
    transparent
  );
  border-radius: 4px;
}

/* TEXTO */
.about-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 18px;
  color: var(--black);
}

/* ==========================
   RESPONSIVO
   ========================== */

@media (max-width: 900px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-divider {
    display: none;
  }

  .about-photo {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
  }

  .about-text {
    text-align: center;
  }
}



/* ==========================
   SERVIÇOS
   ========================== */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  margin: 40px 0px 10px 0;
}

.services {
  display: inline-flex;
  gap: 30px;
  animation: slideMarquee 40s linear infinite;
}

.services:hover {
  animation-play-state: paused;
}

.service {
  background: var(--black);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  /* Animação de cores de cabelo */
    animation: hairColors 10s infinite alternate;
}


/* Keyframes para cores de cabelo */
@keyframes hairColors {
  0%   { background-color: #000000; }  /* Preto */

  100%  { background-color: #808080; }  /* Cinza */
}

.service:hover {
  transform: translateY(-2px) scale(1.00);
}

/* ==========================
   SOBRE
   ========================== */
.card-info {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.card-info p {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.atendimento {
  background: var(--white);
}

.atendimento-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.atendimento-text {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Horários */
.horarios {
  display: grid;
  gap: 14px;
  margin-bottom: 36px;
}

.horarios div {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--offwhite);
  border-radius: var(--radius);
  font-size: 1rem;
}

.horarios .fechado {
  opacity: 0.6;
}

/* Destaque lateral */
.atendimento-highlight {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 50px 40px;
  text-align: center;
  box-shadow: var(--shadow);
}

.atendimento-highlight i {
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.atendimento-highlight p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 900px) {
  .atendimento-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .section-title.left {
    text-align: center;
  }

  .horarios div {
    flex-direction: column;
    gap: 6px;
  }
}

/* ==========================
   MAPA
   ========================== */

p.small-info {
    text-align: center;
    margin: 10px 0;
    font-size: 15px;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ==========================
   FOOTER
   ========================== */
footer {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 8px 6%;;
}

p.footer {
    font-size: 11px;
    font-weight: 100;
}


/* ==========================
   AVALIAÇÕES
   ========================== */
   
.reviews-container {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 6px;
}

.reviews {
  display: flex;
  gap: 30px;
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.review {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 0 0 calc(33.333% - 20px);
  text-align: center;
  opacity: 1;
  transition: opacity 0.8s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.review:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0,0,0,.15);
}

.review p {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 10px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
}

.stars {
  color: #FFD700; /* Dourado para estrelas */
  margin-bottom: 12px;
  font-size: 1.2rem;
}

/* ==========================
   AVALIAÇÕES – MOBILE FIX
========================== */

@media (max-width: 768px) {
  .reviews {
    gap: 0;
  }

  .review {
    flex: 0 0 100%;
    width: 100%;
    margin: 0;
  }

  .reviews-container {
    padding: 0;
  }
}


/* ==========================
   COMODIDADES
   ========================== */
.amenities {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 0;
  justify-items: center;
  margin-top: 80px;
}

.amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--black);
  font-size: 1rem;
  text-align: center;
  transition: var(--transition);
}

.amenity i {
  margin-bottom: 8px;
  color: #504949;
}

.amenity span {
  font-weight: 500;
  line-height: 1.4;
}

/* ==========================
   INSTAGRAM EXPERIENCE
========================== */

.instagram-experience {
  position: relative;
  background: radial-gradient(
    circle at top,
    #2a2a2a,
    #000
  );
  color: #fff;
  padding: 60px 6%;
  overflow: hidden;
}

/* brilho animado */
.insta-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(255,255,255,0.12),
    transparent 70%
  );
  top: -120px;
  right: -120px;
  animation: floatGlow 8s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  from { transform: translateY(0); }
  to   { transform: translateY(40px); }
}

/* conteúdo */
.insta-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.insta-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  opacity: 0.6;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.insta-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 26px;
}

.insta-desc {
  font-size: 1.1rem;
  max-width: 520px;
  opacity: 0.85;
  line-height: 1.8;
  margin-bottom: 50px;
}

/* CTA criativo */
.insta-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 34px;
  border-radius: 60px;
  background: linear-gradient(
    135deg,
    #833ab4,
    #fd1d1d,
    #fcb045
  );
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 18px 40px rgba(0,0,0,.4);
}

.insta-cta i {
  font-size: 1.3rem;
}

.insta-cta:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 50px rgba(0,0,0,.6);
}

/* Responsivo */
@media (max-width: 768px) {
  .instagram-experience {
    padding: 100px 6%;
  }

  .insta-title {
    font-size: 2.3rem;
  }
}


/* Responsivo */
@media (max-width: 1024px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: 1fr;
  }
}


/* Responsivo */
@media(max-width: 1024px){
  .amenities {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media(max-width: 768px){
  .amenities {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* FIM TESTE */

/* ==========================
   WHATSAPP
   ========================== */
.whatsapp-btn {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #25d366;
  font-size: 1.8rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 1000;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
}

/* ==========================
   ANIMAÇÕES
   ========================== */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}

@keyframes slideMarquee {
  0% { transform: translateX(0);}
  100% { transform: translateX(-50%);}
}

/* ==========================
   RESPONSIVO
   ========================== */
@media(max-width: 1024px){
  .hero-title { font-size: 2.6rem; }
  .section-title { font-size: 2rem; }
}

@media(max-width: 768px){
  header nav { display: none; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .btn-primary { padding: 10px 24px; }
  .plans { grid-template-columns: 1fr; gap: 24px; }
}

@media(max-width: 480px){
  .hero-title { font-size: 1.6rem; }
  .section-title { font-size: 1.6rem; }
  .plan h3 { font-size: 1.2rem; }
  .plan p { font-size: 0.95rem; }
  .service { padding: 12px 20px; font-size: 0.9rem; }
}