@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --color-primary: #D2B8B9;
  --color-primary-dark: #ba9d9e;
  --color-bg: #FBFBFB;
  --color-gold: #C5A059;
  --color-dark: #2C2C2C;
  --color-text: #555555;
  --color-white: #FFFFFF;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.04);
  --shadow-medium: 0 16px 50px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
  --border-radius: 8px;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-dark);
  font-weight: 500;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Utilities */
.text-gold {
  color: var(--color-gold);
}
.text-center {
  text-align: center;
}
.subtitle {
  font-size: 1.125rem;
  font-weight: 300;
  margin-top: 1.5rem;
  color: var(--color-text);
}
.badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 6rem 0;
}
.section-light {
  background-color: var(--color-white);
}

/* Components */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
  padding: 1rem 0;
}
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 45px; /* Altura ideal para a navbar */
  width: auto;
  border-radius: 4px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.nav-links a:hover {
  color: var(--color-gold);
}
.nav-cta {
  padding: 0.8rem 1.5rem;
  font-size: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-radius: 0;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}
.btn-outline {
  background-color: transparent;
  color: var(--color-dark);
  border-color: var(--color-dark);
}
.btn-outline:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

/* Aesthetic Image Frames */
.image-frame {
  position: relative;
  z-index: 1;
}
.image-frame::after {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: -2rem;
  bottom: -2rem;
  border: 1px solid var(--color-gold);
  z-index: -1;
  pointer-events: none;
}
.image-frame.frame-rose::before {
  content: '';
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: -1rem;
  bottom: -1rem;
  background-color: var(--color-primary);
  opacity: 0.2;
  z-index: -2;
  pointer-events: none;
}
.image-frame img {
  box-shadow: var(--shadow-soft);
  width: 100%;
  border-radius: var(--border-radius);
}

/* Section: Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-text h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}
.hero-text .btn {
  margin-top: 2.5rem;
}
.hero-image-container {
  position: relative;
}
.hero-image-caption {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--color-white);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-dark);
  max-width: 250px;
  z-index: 2;
}

/* Section: Dor */
.dor-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.dor-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

/* Section: Sobre */
.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.sobre-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.sobre-text p {
  margin-bottom: 1rem;
}
.sobre-quote {
  margin-top: 3rem;
  padding-left: 1.5rem;
  border-left: 2px solid var(--color-gold);
}
.sobre-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}
.sobre-quote span {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

/* Section: Serviços (Dark Cards) */
.section-dark {
  background-color: #1a1917;
}
.servicos-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.serv-card {
  border-radius: 8px;
  overflow: hidden;
  background-color: #35312d;
  color: var(--color-white);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.serv-img-placeholder {
  width: 100%;
  height: 220px;
  background-color: #2a2520;
  /* Temporary generic salon image as placeholder */
  background-image: url('../images/salão.png');
  background-size: cover;
  background-position: center;
}
.serv-card-body {
  padding: 1.5rem;
}
.serv-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.serv-card-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
  color: var(--color-white);
}
.serv-card-subtitle {
  font-size: 0.9rem;
  color: #b9afa5;
  margin: 0;
  line-height: 1.4;
}
.serv-arrow {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.serv-card.active .serv-arrow {
  transform: rotate(180deg);
}
.serv-card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.serv-list-simple {
  list-style: none;
  padding: 1.5rem 0 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.serv-list-simple li {
  font-size: 0.95rem;
  color: #e0d9d0;
  padding-left: 1.2rem;
  position: relative;
}
.serv-list-simple li::before {
  content: '•';
  color: var(--color-gold);
  position: absolute;
  left: 0;
}

/* Section: Objeção */
.objecao {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
}
.objecao h2 {
  color: var(--color-white);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.objecao p {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
}
.objecao .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}
.objecao .btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

/* Section: Como Funciona */
.processo-header {
  text-align: center;
  margin-bottom: 4rem;
}
.processo-header h2 {
  font-size: 2.5rem;
}
.processo-steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
}
.processo-steps::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #E0E0E0;
  z-index: 0;
}
.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--color-bg);
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-gold);
}
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 0.9rem;
}

/* Section: Benefícios */
.diferenciais-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.badge-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.badge-line {
  height: 1px;
  width: 40px;
  background-color: var(--color-gold);
}
.badge-title .badge {
  margin-bottom: 0;
  letter-spacing: 0.1em;
  background: none;
  color: var(--color-text);
  padding: 0;
  font-weight: 600;
}
.diferenciais-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}
.diferenciais-desc {
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.diferenciais-list {
  list-style: none;
  padding: 0;
}
.diferenciais-list li {
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: var(--color-dark);
  position: relative;
  padding-left: 2rem;
  line-height: 1.5;
}
.diferenciais-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="%23C5A059" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><polyline points="20 6 9 17 4 12"></polyline></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

/* Section: Prova Social */
.prova-social {
  text-align: center;
  background-color: #19436c;
  padding: 4rem 0;
}
.prova-social h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--color-white);
}
.marquee-container {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  position: relative;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.marquee-container::before, .marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #19436c, transparent);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #19436c, transparent);
}
.marquee-content {
  display: inline-flex;
  gap: 1.5rem;
  animation: scrollMarquee 45s linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
.avaliacao-card {
  width: 380px;
  background: var(--color-white);
  padding: 2rem;
  border-radius: 8px;
  text-align: left;
  white-space: normal;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 0.75rem)); }
}
.avaliacao-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
  position: relative;
}
.avaliacao-header::after {
  content: '';
  position: absolute;
  right: 0;
  top: 5px;
  width: 20px;
  height: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="%234285F4" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/><path fill="%2334A853" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/><path fill="%23FBBC05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/><path fill="%23EA4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}
.avatar-placeholder {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #673AB7; /* default purple */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.1rem;
  margin-right: 1rem;
}
.avaliacao-card:nth-child(2n) .avatar-placeholder { background-color: #0F9D58; } /* green */
.avaliacao-card:nth-child(3n) .avatar-placeholder { background-color: #DB4437; } /* red/orange */
.avaliacao-card:nth-child(4n) .avatar-placeholder { background-color: #4285F4; } /* blue */

.avaliacao-info h4 {
  font-size: 1rem;
  font-family: var(--font-sans);
  color: #19436c; /* matches background */
  margin-bottom: 0.2rem;
  font-weight: 600;
}
.stars {
  color: #FFB400;
  font-size: 0.95rem;
  letter-spacing: 2px;
}
.avaliacao-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Section: FAQ */
.section-light {
  background-color: var(--color-light);
}
.faq {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.faq-item {
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--color-dark);
  text-align: left;
  cursor: pointer;
}
.faq-arrow {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq-arrow svg {
  width: 100%;
  height: 100%;
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer p {
  padding-top: 1rem;
  color: var(--color-text);
  line-height: 1.6;
}

/* Section: CTA Final */
.cta-final {
  background-color: var(--color-primary);
  text-align: center;
  padding: 8rem 0;
}
.cta-final h2 {
  color: var(--color-white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}
.cta-final p {
  color: var(--color-white);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.cta-final .btn {
  background-color: var(--color-white);
  color: var(--color-primary);
}
.cta-final .btn:hover {
  background-color: var(--color-bg);
  color: var(--color-primary-dark);
}

/* Footer */
.footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 4rem 0 2rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 1rem;
}
.footer-col h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--color-gold);
  margin-bottom: 1.5rem;
}
.footer-col p, .footer-col a {
  color: #CCCCCC;
  margin-bottom: 0.5rem;
  display: block;
}
.footer-col a:hover {
  color: var(--color-gold);
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #444;
  color: #888;
  font-size: 0.9rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: var(--shadow-medium);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
.whatsapp-float svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  .hero-content, .dor-content, .sobre-content, .diferenciais-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-text {
    text-align: center;
  }
  .hero-text h1 {
    font-size: 2.8rem;
  }
  .image-frame::after {
    top: 1rem;
    left: 1rem;
    right: -1rem;
    bottom: -1rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .navbar {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text {
    padding-right: 0;
  }
  
  .sobre-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .processo-grid {
    grid-template-columns: 1fr;
  }
  
  .faq {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  /* Processo Mobile - Lista Vertical */
  .processo-steps {
    flex-direction: column;
    gap: 2rem;
  }
  .processo-steps::before {
    top: 0;
    left: 30px;
    width: 1px;
    height: 100%;
  }
  .step {
    display: flex;
    align-items: flex-start;
    text-align: left;
  }
  .step-number {
    margin: 0 1.5rem 0 0;
    flex-shrink: 0;
  }
  
  /* Serviços Mobile - Acordeão original removido pois agora é o padrão */
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
}
