:root {
  --salon-purple: #9b87f5;
  --salon-dark-purple: #7e69ab;
  --salon-light: #f9f8ff;
  --salon-neutral: #68627d;
  --salon-deep: #2f2b43;
  --salon-border: #e4e1f6;
  --salon-shadow: 0 24px 60px rgba(80, 64, 136, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.guide-body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--salon-deep);
  background: var(--salon-light);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--salon-dark-purple);
}

.guide-container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.guide-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--salon-border);
  box-shadow: 0 20px 30px rgba(54, 35, 105, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
}

.brand {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--salon-dark-purple);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(155, 135, 245, 0.35);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav-toggle:hover {
  border-color: var(--salon-purple);
  box-shadow: 0 12px 20px rgba(155, 135, 245, 0.2);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--salon-dark-purple);
  border-radius: 999px;
}

.guide-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--salon-neutral);
  font-size: 0.95rem;
}

.guide-nav a {
  padding: 0.35rem 0.2rem;
  position: relative;
  transition: color 0.3s ease;
}

.guide-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  background: var(--salon-purple);
}

.guide-nav a:hover::after,
.guide-nav a:focus-visible::after {
  transform: scaleX(1);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  background: var(--salon-purple);
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  box-shadow: 0 16px 32px rgba(155, 135, 245, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(126, 105, 171, 0.28);
  color: #fff;
}

.cta-button--whatsapp {
  background: #25d366;
  box-shadow: 0 18px 32px rgba(37, 211, 102, 0.32);
}

.cta-button--whatsapp:hover {
  background: #128c7e;
  box-shadow: 0 20px 40px rgba(18, 140, 126, 0.32);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.25rem;
  background: linear-gradient(135deg, rgba(155, 135, 245, 0.15), rgba(229, 222, 255, 0.65));
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(155, 135, 245, 0.25), transparent 55%),
              radial-gradient(circle at 80% 30%, rgba(126, 105, 171, 0.18), transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--salon-dark-purple);
  margin-bottom: 1.2rem;
}

.hero-eyebrow::before {
  content: '';
  width: 36px;
  height: 2px;
  background: var(--salon-purple);
  border-radius: 999px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.35rem, 5vw, 3.35rem);
  color: #221943;
  line-height: 1.08;
  margin-bottom: 1.2rem;
}

.hero-lead {
  font-size: 1.12rem;
  color: #4f4871;
  max-width: 720px;
  margin-bottom: 1.8rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--salon-neutral);
  font-size: 0.95rem;
}

.hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(155, 135, 245, 0.25);
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(130, 112, 189, 0.12);
}

.guide-article {
  position: relative;
  z-index: 2;
  margin-top: -2.8rem;
  background: #fff;
  border-radius: 26px;
  padding: 3.2rem clamp(1.6rem, 3.5vw, 3.5rem);
  box-shadow: var(--salon-shadow);
}

.guide-article p {
  margin-bottom: 1.1rem;
  color: #3c355e;
}

.guide-article strong {
  color: var(--salon-dark-purple);
}

.guide-section + .guide-section {
  margin-top: 2.6rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--salon-border);
}

.guide-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: #2b2355;
  margin-bottom: 1.1rem;
}

.guide-section ul {
  margin: 1.25rem 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.guide-section ul li {
  position: relative;
  padding-left: 1.8rem;
  color: #3c355e;
}

.guide-section ul li::before {
  content: '\2022';
  position: absolute;
  left: 0.6rem;
  color: var(--salon-purple);
  font-size: 1.4rem;
  line-height: 1;
  top: -0.05rem;
}

.guide-highlight {
  background: linear-gradient(135deg, rgba(155, 135, 245, 0.12), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(155, 135, 245, 0.28);
  border-radius: 20px;
  padding: 1.75rem 1.6rem;
  display: grid;
  gap: 0.8rem;
}

.guide-highlight h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--salon-dark-purple);
}

.guide-highlight p {
  margin: 0;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.testimonial-grid blockquote {
  margin: 0;
  background: rgba(229, 222, 255, 0.55);
  border-left: 4px solid var(--salon-purple);
  padding: 1.4rem 1.6rem;
  border-radius: 18px;
  font-style: italic;
  color: #3f3864;
  box-shadow: 0 12px 28px rgba(129, 111, 193, 0.12);
}

.testimonial-grid blockquote span {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-weight: 600;
  color: var(--salon-dark-purple);
}

.guide-faq {
  margin-top: 1.5rem;
  display: grid;
  gap: 1.4rem;
}

.guide-faq dt {
  font-weight: 600;
  color: var(--salon-dark-purple);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.guide-faq dd {
  margin: 0;
  color: #3c355e;
  line-height: 1.7;
}

.cta-section {
  padding: 3.2rem 0 4rem;
}

.cta-card {
  background: linear-gradient(135deg, rgba(155, 135, 245, 1), rgba(126, 105, 171, 1));
  border-radius: 26px;
  padding: 2.6rem clamp(1.6rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: #fff;
  box-shadow: 0 28px 60px rgba(94, 72, 155, 0.38);
}

.cta-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin: 0 0 0.75rem;
  color: #fff;
}

.cta-card p {
  margin: 0;
  max-width: 520px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

.cta-button.cta-button--light {
  background: #fff;
  color: var(--salon-purple);
  box-shadow: none;
}

.cta-button.cta-button--light:hover {
  color: var(--salon-dark-purple);
  transform: translateY(-1px);
}

.guide-footer {
  background: #fff;
  border-top: 1px solid var(--salon-border);
  padding: 2.5rem 0;
  color: var(--salon-neutral);
  font-size: 0.92rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--salon-neutral);
}

.footer-nav a:hover {
  color: var(--salon-dark-purple);
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .guide-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--salon-border);
    gap: 0.85rem;
  }

  .guide-nav.is-open {
    display: flex;
  }

  .guide-nav a {
    width: 100%;
    padding: 0.35rem 0;
  }

  .cta-button {
    order: 3;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 3.5rem 0 2.8rem;
  }

  .hero-meta li {
    width: 100%;
    justify-content: center;
  }

  .guide-article {
    margin-top: -2rem;
    padding: 2.4rem 1.6rem;
  }

  .guide-section h2 {
    font-size: 1.6rem;
  }

  .guide-highlight {
    padding: 1.4rem 1.2rem;
  }

  .cta-card {
    padding: 2.4rem 1.8rem;
    text-align: center;
  }

  .cta-card p {
    max-width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
