/* ---------------------- RESET BÁSICO ---------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #F9F6F2;
  color: #1A1A1A;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---------------------- NAVEGAÇÃO ---------------------- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background-color: #F9F6F2;
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logotipo */
.logo img {
  height: 100px;
  object-fit: contain;
  transition: height 0.3s ease;
}

/* Menu de links */
.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #C8A97E;
}

/* Ícone do menu hambúrguer */
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-icon span {
  width: 25px;
  height: 3px;
  background-color: #1A1A1A;
  border-radius: 2px;
}

/* Versão mobile */
@media (max-width: 768px) {
  .logo img {
    height: 60px;
  }

  .menu-icon {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 10%;
    background: #F9F6F2;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 10px;
    display: none; /* escondido por padrão */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }
}




/* ---------------------- HERO ---------------------- */
.hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* película preta com 40% de opacidade */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 0 20px;
}


.hero h1 {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 30px;
  background-color: #C8A97E;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-weight: 500;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #b7906d;
}
/* ---------------------- Welcome section ---------------------- */
.welcome-section {
  position: relative;
  background: url('../images/sidebar_bg.png') center/cover no-repeat;
  color: #333;
  padding: 100px 20px;
  text-align: center;
  font-family: 'Playfair Display', serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.75); /* leve opacidade branca */
  z-index: 1;
}

.welcome-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.welcome-section h1 {
  font-size: 3rem;
  color: #b89b5e; /* toque dourado */
  margin-bottom: 10px;
}

.welcome-section h2 {
  font-size: 2rem;
  color: #444;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.welcome-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.welcome-section strong {
  color: #b89b5e;
}

@media (max-width: 768px) {
  .welcome-section {
    padding: 60px 15px;
  }

  .welcome-section h1 {
    font-size: 2.5rem;
  }

  .welcome-section h2 {
    font-size: 1.8rem;
  }

  .welcome-section p {
    font-size: 1rem;
  }
}


/* ---------------------- SERVIÇOS EM DESTAQUE (HOME) ---------------------- */
.services-preview {
  padding: 60px 10%;
  text-align: center;
  background-color: #fff;
}

.services-preview h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-size: 3rem;
  color: #bfa25c;
  margin-bottom: 40px;
  text-shadow: 0 0 8px #f3eac2;
  display: inline-block;
  position: relative;
  font-family: 'Playfair Display', serif;
}

  .services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.service-card {
  flex: 1;
  min-width: 280px;
  background-color: #F9F6F2;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.service-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ---------------------- TESTIMONIALS ---------------------- */
.testimonials { 
  background: linear-gradient(180deg, #fff9f4, #fdf6ec);
  padding: 80px 10%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Partículas glitter giratórias */
.beauty-glitter::before,
.beauty-glitter::after {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, #ffe8a3 1px, transparent 1px);
  background-size: 50px 50px;
  animation: glitterGold 30s linear infinite;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}
.beauty-glitter::after {
  animation-delay: 15s;
  background-size: 70px 70px;
}

@keyframes glitterGold {
  0% { transform: rotate(0); }
  100% { transform: rotate(360deg); }
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #bfa25c;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 8px #f3eac2;
  z-index: 1;
}

.section-title::after {
  content: '';
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, #c8a97e, #fff2cc);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.testimonial-carousel {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  position: relative;
  z-index: 1;
  gap: 30px;
}

.testimonial-card {
  background: #fffdfa;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(200, 169, 126, 0.2);
  padding: 35px 30px;
  min-width: 100%; /* para carrossel: uma card por vez */
  max-width: 340px;
  flex-shrink: 0;
  transition: all 0.4s ease;
  border: 1px solid #f3e6d1;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 15px 35px rgba(200, 169, 126, 0.4);
}

.testimonial-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid #d4af37;
  box-shadow: 0 0 12px #f9e8c1;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-photo {
  transform: rotate(1deg) scale(1.05);
}

.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #bfa25c;
  margin-bottom: 12px;
  text-shadow: 0 0 6px #f9ecd4;
}

.testimonial-text {
  font-size: 1rem;
  color: #5a5243;
  line-height: 1.6;
  font-style: italic;
  padding-top: 10px;
  position: relative;
}

.testimonial-text::before {
  content: "“";
  font-size: 2rem;
  color: #d4af37;
  position: absolute;
  top: 0;
  left: -10px;
  font-family: 'Playfair Display', serif;
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .testimonial-carousel {
    gap: 15px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
	touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
  }

  .testimonial-card {
    min-width: 80%;
    max-width: none;
    padding: 25px 20px;
    margin-right: 10px;
    scroll-snap-align: start;
  }

  .testimonial-photo {
    width: 80px;
    height: 80px;
  }

  .testimonial-name {
    font-size: 1.3rem;
  }

  .testimonial-text {
    font-size: 0.95rem;
    padding-top: 8px;
  }

  .testimonial-text::before {
    font-size: 1.5rem;
    left: -6px;
  }
}

/* ----------------------Calendar ---------------------- */
.appointment-section {
  position: relative;
  background: url('../images/Banner-Brazilian-Aesthetics-1.jpg') center/cover no-repeat;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.appointment-section .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}

.appointment-content {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  z-index: 2;
}

.status {
  font-size: 18px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.title {
  font-size: 32px;
  margin-bottom: 20px;
}

.calendar {
  background: #fff;
  color: #333;
  border-radius: 10px;
  overflow: hidden;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  background: #222;
  color: #fff;
}

.calendar-days,
.calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.calendar-days div {
  background: #f4f4f4;
  padding: 10px 0;
  font-weight: bold;
}

.calendar-dates span {
  padding: 20px 0;
  cursor: pointer;
}

.calendar-dates span.today {
  background: #ffcc00;
  color: #000;
  font-weight: bold;
}

.calendar-dates span.prev-month {
  color: #aaa;
}

.selected-day {
  background-color: #007bff;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  cursor: pointer;
}

.appointment-confirmation {
  background: #222;
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
}
.confirm-btn {
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: #008CBA;
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
}
.confirm-btn:hover {
  background: #005f75;
}

/* ---------------------- SOCIAL REELS ---------------------- */
.social-reels {
  background: linear-gradient(135deg, #fff9f4, #fdf6ec);
  padding: 60px 10%;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.social-reels .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #bfa25c;
  margin-bottom: 40px;
  text-shadow: 0 0 8px #f3eac2;
  display: inline-block;
  position: relative;
}

.reels-carousel {
  display: flex;
  overflow: hidden;
  gap: 30px;
  scroll-behavior: smooth;
  position: relative;
  justify-content: center;
  flex-wrap: nowrap;
}

.reel-card {
  width: 520px;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 3px solid #d4af37;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
  background-color: #fffdfa;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: none;
  border-radius: 20px;
}

.reel-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(200, 169, 126, 0.5);
}

.carousel-controls {
  margin-top: 25px;
}

.carousel-controls button {
  background: #d4af37;
  border: none;
  color: #fffdfa;
  font-size: 2rem;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 12px #f9e8c1;
  transition: background 0.3s ease;
}

.carousel-controls button:hover {
  background: #bfa25c;
}

@media (max-width: 768px) {
  .reels-carousel {
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
  }

  .reel-card {
    width: 180px;
    height: 320px;
  }
}


/* ---------------------- MANIFESTO ---------------------- */
.manifesto {
  background: #fdfcfc;
  color: #2c2c2c;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.manifesto-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
  gap: 40px;
}

.manifesto-image {
  flex: 1;
  min-width: 300px;
}

.manifesto-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.manifesto-text-content {
  flex: 1.2;
  min-width: 320px;
}

.manifesto-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #7d426c;
  margin-bottom: 20px;
}

.manifesto-text {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.manifesto-points {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  font-weight: 500;
}

.manifesto-points li {
  margin: 6px 0;
}

.manifesto-conclusion {
  font-style: italic;
  color: #5a2b4a;
  margin-bottom: 20px;
}

.manifesto-tags {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.5;
}

/* Responsivo */
@media (max-width: 768px) {
  .manifesto-container {
    flex-direction: column;
  }

  .manifesto-text-content {
    text-align: center;
  }

  .manifesto-title {
    font-size: 1.8rem;
  }
}
/* ---------------------- CTA ---------------------- */
.natasha-cta {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 80px 20px;
  text-align: center;
  background-color: #f8f4f7; /* tom creme suave */
  z-index: 1;
}

/* Fundo com imagem */
.background-image {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url('../images/Radiesse-686x686.jpg'); /* Ajuste o caminho */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.6) saturate(1.1);
  z-index: 0;
}

/* Camada com degradê dourado rosado translúcido */
.overlay-white {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(35, 8, 48, 0.6), rgba(85, 20, 90, 0.6));
  backdrop-filter: blur(4px);
  z-index: 1;
  pointer-events: none;
}

/* Conteúdo principal */
.cta-container {
  position: relative;
  z-index: 2;
}

.cta-info {
  max-width: 700px;
  margin: 0 auto;
}

/* Avatar com brilho dourado neon animado */
.cta-avatar img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #c49f5a;
  box-shadow: 0 0 20px #c49f5a;
  margin-bottom: 30px;
  animation: neonGlow 3s ease-in-out infinite;
}

@keyframes neonGlow {
  0%, 100% {
    box-shadow: 0 0 20px #c49f5a, 0 0 40px #c49f5a;
  }
  50% {
    box-shadow: 0 0 30px #d1b85f, 0 0 60px #d1b85f;
  }
}

/* Título com brilho animado em roxo profundo */
.cta-text h2 {
  font-size: 2.4rem;
  font-family: 'Playfair Display', serif;
  color: #e6d0ec;
  margin-bottom: 20px;
  animation: textGlow 4s ease-in-out infinite;
  text-shadow: 0 0 8px #b05fb9, 0 0 12px #b05fb9;
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 8px #b05fb9;
  }
  50% {
    text-shadow: 0 0 16px #e6d0ec;
  }
}

/* Texto mais legível com tom suave e sofisticado */
.cta-text p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 30px;
  color: #d2a8d4;
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

/* Botão vibrante com degradê glamouroso */
.cta-button {
  background: linear-gradient(90deg, #d87fbf, #a46bcf);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px #a46bcf;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  transition: all 0.7s ease;
}

.cta-button:hover::before {
  left: 125%;
}

.cta-button:hover {
  background: linear-gradient(90deg, #a46bcf, #d87fbf);
  box-shadow: 0 0 20px #e6d0ec;
  transform: scale(1.05);
}


/* Efeito de linha horizontal animada para toque sofisticado */
.cta-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 200%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c49f5a, transparent);
  animation: moveLines 4s linear infinite;
  opacity: 0.12;
  transform: translateY(-50%);
  z-index: 0;
}

@keyframes moveLines {
  0% { transform: translateX(0) translateY(-50%); }
  100% { transform: translateX(-50%) translateY(-50%); }
}

/* ---------------------- FORM ---------------------- */
/* Seção geral com fundo suave e partículas */
.form-section-natasha {
  position: relative;
  padding: 60px 20px;
  background: linear-gradient(180deg, #fff0f7 0%, #ffe6f0 100%);
  overflow: hidden;
}

/* Camada de partículas brilhantes */
.beauty-particles::before,
.beauty-particles::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #ffc8e9 1px, transparent 1px);
  background-size: 50px 50px;
  animation: glitter 20s linear infinite;
  opacity: 0.4;
  pointer-events: none;
}

.beauty-particles::after {
  animation-delay: 10s;
  background-size: 70px 70px;
}

@keyframes glitter {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }
  100% {
    transform: rotate(360deg) translate(0, 0);
  }
}

/* Formulário estilizado */
/* Fundo da seção com partículas leves e toque de sofisticação */
.form-section-natasha {
  position: relative;
  padding: 60px 20px;
  background: linear-gradient(180deg, #fff9f0 0%, #fff1d6 100%);
  overflow: hidden;
}

/* Partículas suaves douradas */
.beauty-particles::before,
.beauty-particles::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, #ffe8a3 1px, transparent 1px);
  background-size: 50px 50px;
  animation: glitterGold 30s linear infinite;
  opacity: 0.3;
  pointer-events: none;
}

.beauty-particles::after {
  animation-delay: 15s;
  background-size: 70px 70px;
}

@keyframes glitterGold {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }
  100% {
    transform: rotate(360deg) translate(0, 0);
  }
}

/* Estilo do formulário com dourado */
.form-natasha-beauty {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid #d4af37;
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 40px #d4af3755;
  max-width: 700px;
  margin: 0 auto;
  animation: flutuar 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.form-natasha-beauty h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  color: #b8860b;
  margin-bottom: 30px;
  font-size: 2rem;
  text-shadow: 0 0 10px #f3e2a9;
}

.input-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.input-icon {
  position: relative;
  flex: 1;
}

.input-icon i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #d4af37;
  font-size: 1.1rem;
}

.input-icon input,
.input-icon textarea {
  width: 100%;
  padding: 15px 15px 15px 45px;
  margin-bottom: 20px;
  border: 1px solid #d4af37;
  background: transparent;
  color: #3a2d14;
  border-radius: 10px;
  font-size: 1rem;
  transition: border 0.3s, box-shadow 0.3s;
}

.input-icon textarea {
  resize: vertical;
  min-height: 120px;
}

.input-icon input:focus,
.input-icon textarea:focus {
  outline: none;
  border-color: #fff;
  box-shadow: 0 0 14px #ffefbb;
}

.form-natasha-beauty button {
  background: linear-gradient(135deg, #d4af37, #f9d976);
  color: #3a2d14;
  padding: 14px 32px;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 20px auto 0;
  box-shadow: 0 0 12px #d4af3799;
}

.form-natasha-beauty button:hover {
  background: linear-gradient(135deg, #bfa437, #f6c857);
  transform: scale(1.06);
  box-shadow: 0 0 20px #f9e3a699;
}

/* Flutuação leve */
@keyframes flutuar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* ---------------------- FOOTER ---------------------- */
.footer-natasha {
  background-color: #111;
  color: #f5f5f5;
  padding: 50px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-content {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #c8a97e;
  margin-bottom: 10px;
}

.footer-desc {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 30px;
}

.footer-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 30px;
}

.footer-info p {
  margin: 0;
  line-height: 1.6;
}

.footer-social a {
  color: #c8a97e;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #888;
  text-align: center;
}

/* ---------------------- Banner SERVIÇOS ---------------------- */
.banner-servicos {
  background-image: url('../images/hero-service.jpg'); /* Altere para a imagem desejada */
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.banner-servicos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.4); /* escurece a imagem */
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.banner-servicos h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.banner-servicos p {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.5px;
}


/* Container da grid: 4 colunas fixas, centralizado e responsivo */
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;  /* limita a largura para centralizar melhor */
  margin: 0 auto;     /* centraliza horizontalmente */
  padding: 0 15px;    /* espaçamento lateral */
}

/* Item da grid */
.grid-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #d6b6ff; /* borda lilás clara delicada */
  box-shadow: 0 6px 15px rgba(198, 124, 250, 0.3); /* sombra lilás suave */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(198, 124, 250, 0.6);
}

/* Imagem dentro do item */
.grid-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.grid-item:hover img {
  filter: brightness(1.1);
}

/* Informações do item */
.item-info {
  padding: 20px;
  background: #f9f5ff; /* lilás muito claro */
}

/* Categoria do serviço */
.item-category {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #8a63d2; /* lilás escuro */
  margin-bottom: 10px;
}

/* Título do serviço */
.item-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0;
  color: #3a0ca3; /* roxo escuro */
}

.item-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.item-title a:hover {
  color: #b892ff; /* lilás claro com toque dourado */
  text-decoration: underline;
}

/* Barra de filtros */
.filter-bar {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center; /* centraliza os botões */
}

/* Botões de filtro */
.filter-btn {
  background: #e9dbff;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #5b3e96;
  box-shadow: 0 3px 6px rgba(198, 124, 250, 0.3);
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background-color: #7c4dff;
  color: #fff;
  box-shadow: 0 6px 12px rgba(124, 77, 255, 0.7);
}

/* Responsividade: quebra para 2 colunas em telas menores */
@media (max-width: 900px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsividade: 1 coluna para celulares */
@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
}



/* ---------------------- PÁGINA SERVIÇOS ---------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.procedimentos-destaque {
  padding: 80px 20px;
  background: linear-gradient(180deg, #fffdf8, #fef6e9);
  font-family: 'Poppins', sans-serif;
  text-align: center;
  color: #5a5243;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #b88c2f; /* dourado */
  text-transform: uppercase;
  letter-spacing: 2px;
}
.section-title.section-title--second {
  margin-top: 40px; /* espaço extra antes do segundo título */
}

.procedimentos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  justify-items: center;
}

.procedimento-card {
  background: #fffefa;
  border-left: 6px solid #d4af37;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
  max-width: 360px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.procedimento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
}

.procedimento-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 4px solid #d4af37;
}

.procedimento-info {
  padding: 24px 28px;
  text-align: left;
  color: #5a5243;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.procedimento-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #b88c2f; /* dourado */
  margin-bottom: 14px;
}

.procedimento-info p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.beneficios {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
}

.beneficios li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.beneficios li span {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #d4af37;
}

.sub-itens p {
  margin: 2px 0;
  font-size: 0.9rem;
  color: #7f7040;
  font-style: italic;
}

/* Responsividade */
@media (max-width: 768px) {
  .procedimentos-destaque {
    padding: 40px 20px;
  }

  .procedimento-img {
    height: 180px;
  }

  .section-title {
    font-size: 1.6rem;        /* Reduz o tamanho da fonte */
    margin-bottom: 40px;      /* Ajusta o espaçamento */
    word-break: break-word;   /* Quebra a palavra se precisar */
    padding: 0 10px;          /* Pequeno padding lateral */
  }
}

/* === BANNER PORTFOLIO === */
.banner-portfolio {
  background-image: url('../images/portfolio.jpg'); /* imagem discreta e de bom gosto */
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  font-family: 'Playfair Display', serif;
}

.banner-portfolio::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.banner-portfolio h1 {
  font-size: 3.2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.banner-portfolio p {
  font-size: 1.25rem;
  font-weight: 300;
  color: #eee;
  letter-spacing: 0.6px;
}

/* === PORTFOLIO === */
.portfolio {
  background: linear-gradient(180deg, #fdfcf9, #fffefc);
  padding: 100px 20px;
  color: #5e5241;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.portfolio .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #b1976b;
  margin-bottom: 25px;
  text-shadow: 0 0 5px rgba(191, 162, 92, 0.2);
}

.portfolio-desc {
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #7e7465;
  line-height: 1.6;
}

/* === GRID === */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 35px;
  padding: 0 20px;
}

.grid-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.grid-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.grid-item:hover img {
  transform: scale(1.03);
}

/* === ITEM INFO === */
.item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease-in-out;
}

.grid-item:hover .item-info {
  opacity: 1;
  transform: translateY(0);
}

.item-category {
  font-size: 0.9rem;
  color: #d4af37;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.item-title {
  font-size: 1.3rem;
  margin: 0;
}

.item-title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.item-title a:hover {
  color: #d4af37;
}

/* === CATEGORIA COM COR SUAVE === */
.rejuvenescimento .item-category,
.facial .item-category,
.injectables .item-category {
  color: #c49bbb; /* tom rosé neutro */
}

/* === RESPONSIVO === */
@media (max-width: 768px) {
  .banner-portfolio h1 {
    font-size: 2.5rem;
  }

  .portfolio {
    padding: 60px 15px;
  }

  .grid-container {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .grid-container {
    grid-template-columns: 1fr;
  }

  .item-info {
    position: relative;
    background: #222;
    opacity: 1;
    transform: none;
  }

  .item-title {
    font-size: 1.2rem;
  }
}

/* Contato Section */

.banner-contato {
  background-image: url('../images/banner.png'); /* Altere para a imagem desejada */
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}

.banner-contato::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.4); /* escurece a imagem */
  z-index: 1;
} 
 

/* Estilos Gerais para Seções de Contato */
:root {
  --gold: #d4af37;
  --gold-light: #f1e0b0;
  --gold-dark: #b59530;
  --dark-bg: #1a1a1a;
  --light-bg: #f8f8f8;
  --text-dark: #333;
  --text-light: #f8f8f8;
}

/* Seção Contato Natasha */
.contact-natasha {
  background-color: var(--dark-bg);
  padding: 60px 0;
  color: var(--text-light);
  text-align: center;
}

.contact-natasha .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  
}

.contact-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
}

.label {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.label::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.contact-link {
  color: var(--text-light);
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  padding: 8px 0;
  position: relative;
}

.contact-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.contact-link:hover {
  color: var(--gold-light);
}

.contact-link:hover::before {
  width: 100%;
}

/* Seção do Formulário */
.form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gold);
}

.form-section .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.form-futurista-v2 {
  background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.form-futurista-v2::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--gold);
}

.form-futurista-v2 h2 {
  color: var(--dark-bg);
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.form-futurista-v2 h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gold);
}

.input-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.input-group .input-icon {
  flex: 1;
}

.input-icon {
  position: relative;
  margin-bottom: 20px;
}

.input-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1rem;
}

.textarea-icon i {
  top: 20px;
  transform: none;
}

.input-icon input,
.input-icon textarea {
  width: 100%;
  padding: 15px 15px 15px 45px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f9f9f9;
}

.input-icon textarea {
  padding-top: 15px;
  min-height: 150px;
  resize: vertical;
}

.input-icon input:focus,
.input-icon textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
  background-color: white;
}

button[type="submit"] {
  background: var(--gold);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  margin: 30px auto 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

button[type="submit"]:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Responsividade */
@media (max-width: 768px) {
  .contact-natasha .container {
    flex-direction: column;
    gap: 30px;
  }
  
  .input-group {
    flex-direction: column;
    gap: 0;
  }
  
  .form-futurista-v2 {
    padding: 30px 20px;
  }
  
  .form-futurista-v2 h2 {
    font-size: 1.8rem;
  }
}

/* Efeitos Especiais */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.contact-item {
  animation: fadeIn 0.6s ease forwards;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.3s; }

.form-futurista-v2 {
  animation: fadeIn 0.8s ease forwards;
}
/* SOBRE NÓS */
.about-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.about-section h2 {
  font-size: 2.8rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #b88c2f;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 400px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  text-align: left;
}

.about-text p {
  margin-bottom: 18px;
}

.about-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* NOSSA EQUIPE */
.team-section {
  padding: 60px 20px;
  background-color: #fff;
  color: #222;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.team-section h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: 700;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  background: #f0f0f0;
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 250px;
  max-width: 280px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
}

.member-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: #111;
}

.position {
  font-style: italic;
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 10px;
}

.member-info p {
  font-size: 1rem;
  color: #444;
  line-height: 1.4;
}

/* NOSSOS VALORES */
.values-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.values-section h2 {
  font-size: 2.8rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #b88c2f;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  flex: 1 1 220px;
  max-width: 250px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease;
}

.value-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.value-icon {
  font-size: 2.5rem;
  color: #ff7f50;
  margin-bottom: 15px;
}

.value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #333;
}

.value-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* Responsividade básica */
@media (max-width: 768px) {
  .about-content, .team-grid, .values-grid {
    flex-direction: column;
  }

  .about-text, .about-image, .team-member, .value-card {
    max-width: 100%;
  }

  .about-text {
    text-align: center;
  }
}
/* Mapa com fundo escuro e borda neon */
.contato-mapa {
  flex: 1;
  min-width: 300px;
  background: #f8f6f4;
  border-radius: 12px;
  box-shadow: 0 0 15px#ebbc00;
  overflow: hidden;
  border: 2px solid #ebbc00;
}

.contato-mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
  filter: grayscale(0%) brightness(1); /* mapa limpo, sem filtro escuro */
  border-radius: 8px;
}


/* ===============================
   Botão "Back to Top"
   =============================== */
.back-to-top {
  position: fixed; /* Mantém o botão fixo mesmo rolando */
  bottom: 20px;
  right: 30px;
  background: #c7a902;
  display: none; /* Oculta inicialmente */
  color: white;
  padding: 10px 14px;
  border-radius: 50px;
  box-shadow: 0 0 12px rgba(199, 169, 2, 0.5);
  font-size: 1.1rem;
  z-index: 999;
  transition: background 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
  background: #a88b00;
  transform: translateY(-3px);
}

/* ===============================
   Responsividade
   =============================== */
@media (max-width: 768px) {
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    padding: 8px 10px;
    bottom: 15px;
    right: 20px;
  }
}
.footer-seal {
  margin-top: 20px;
  text-align: center;
}

.footer-seal img {
  max-width: 150px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}
/* ===============================
  Newsletter"
   =============================== */

.newsletter {
  background-color: #f9f9f9;
  padding: 40px 20px;
}

.newsletter-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* Texto */
.newsletter-text h3 {
  font-size: 24px;
  font-weight: 600;
  color: #b88c2f;
  margin-bottom: 10px;
}

.newsletter-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* Formulário */
.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  padding: 10px 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  flex: 1 1 250px;
}

.newsletter-form button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #222;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #444;
}
