﻿:root {
  --primary: #005151;
  --primary-strong: #003d3d;
  --primary-soft: #0e6a6a;
  --secondary: #dee6e6;
  --bg: #f7fafa;
  --surface: #ffffff;
  --text: #112424;
  --muted: #4d6666;
  --line: rgba(0, 81, 81, 0.12);
  --radius: 18px;
  --shadow: 0 16px 40px rgba(0, 81, 81, 0.1);
}

* {
  box-sizing: border-box;
}

body.salony-lp {
  margin: 0;
  padding: 0;
  font-family: "Lexend Deca", sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 420px at 50% -20%, #e6f2f1 0%, transparent 70%),
    var(--bg);
  line-height: 1.62;
  overflow-x: hidden;
}

.salony-lp h1,
.salony-lp h2,
.salony-lp h3,
.salony-lp p {
  margin: 0;
}

.salony-lp h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.17;
  margin-top: 0.6rem;
  letter-spacing: -0.02em;
}

.salony-lp h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.28;
  margin-bottom: 1.1rem;
}

.salony-lp h3 {
  font-size: 1.1rem;
  line-height: 1.3;
}

.salony-lp p {
  color: var(--muted);
  line-height: 1.72;
}

.salony-lp main h2 + p {
  margin-top: 0.4rem;
}

.salony-lp .sl-container > p + p {
  margin-top: 0.85rem;
}

.salony-lp main .sl-container > .sl-btn {
  margin-top: 1.2rem;
}

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

.sl-narrow {
  width: min(760px, 92%);
}

.sl-section {
  padding: 4rem 0;
  position: relative;
}

.sl-section + .sl-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1040px, 88%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(0, 81, 81, 0.15), transparent);
}

.sl-section-soft {
  background: linear-gradient(180deg, rgba(222, 230, 230, 0.58), rgba(222, 230, 230, 0.2));
}

.top-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(0, 81, 81, 0.12);
  z-index: 1200;
}

.top-progress-bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), #0b7b7b);
  transition: width 0.15s linear;
}

.top-progress-text {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  padding: 0.45rem 1rem 0.3rem;
  color: var(--primary);
  background: rgba(222, 230, 230, 0.38);
  border-bottom: 1px solid rgba(0, 81, 81, 0.08);
}

.accent-word {
  color: var(--primary);
}

.brand-logo {
  width: clamp(120px, 24vw, 170px);
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

.brand-logo-cta {
  margin: 0 auto 1rem;
  opacity: 0.95;
}

.trust-note {
  margin-top: 0.75rem;
  color: var(--primary);
  font-size: 0.93rem;
  font-weight: 500;
}

.eyebrow {
  display: inline-block;
  font-size: 0.88rem;
  color: var(--primary);
  background: rgba(0, 81, 81, 0.08);
  border: 1px solid rgba(0, 81, 81, 0.15);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
}

.hero {
  padding-top: 3.8rem;
  padding-bottom: 4.2rem;
}

.hero-grid {
  display: grid;
  gap: 2.4rem;
  align-items: center;
}

.hero-copy {
  display: grid;
  justify-items: start;
  text-align: left;
}

.hero-copy .brand-logo {
  margin-left: 0;
  margin-right: 0;
}

.lead {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  max-width: 40ch;
}

.sl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.9rem 1.4rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.sl-btn-primary {
  margin-top: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 28px rgba(0, 81, 81, 0.32);
  position: relative;
  overflow: hidden;
}

.sl-btn-primary::after {
  content: "Sem mensalidade • Sem cartão";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100%;
  padding: 0.35rem 0.8rem;
  font-size: 0.72rem;
  background: rgba(0, 0, 0, 0.16);
  color: rgba(255, 255, 255, 0.95);
  transition: bottom 0.25s ease;
}

.sl-btn-primary:hover {
  background: var(--primary-strong);
  transform: translateY(-2px);
}

.sl-btn-primary:hover::after {
  bottom: 0;
}

.sl-btn-secondary {
  margin-top: 1.2rem;
  background: var(--secondary);
  color: var(--primary-strong);
  border: 1px solid rgba(0, 81, 81, 0.2);
}

.sl-btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 81, 81, 0.15);
}

.sl-btn-lg {
  font-size: 1.05rem;
  padding: 1rem 1.8rem;
}

.microcopy {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
  color: var(--text);
  font-size: 0.86rem;
}

.microcopy li {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(0, 81, 81, 0.14);
  background: #f4f9f9;
  border-radius: 999px;
  padding: 0.26rem 0.62rem;
  color: var(--primary);
}

.microcopy li::before {
  content: "✔";
  margin-right: 0.38rem;
  font-weight: 700;
}

.hero-mockup {
  display: grid;
  gap: 0.8rem;
  width: 100%;
  justify-items: stretch;
}

.hero-main-visual {
  margin: 0;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 81, 81, 0.14);
  box-shadow: 0 20px 34px rgba(0, 81, 81, 0.14);
}

.hero-main-visual img {
  width: 100%;
  height: clamp(230px, 58vw, 330px);
  object-fit: cover;
  display: block;
}

.hero-proof {
  display: grid;
  gap: 0.35rem;
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(0, 81, 81, 0.12);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 12px;
}

.hero-proof p {
  font-size: 0.9rem;
  color: var(--primary-strong);
  margin: 0;
  text-align: left;
}

.hero-copy .sl-btn-primary {
  width: 100%;
  max-width: 360px;
  margin-top: 1.2rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 1rem;
}

.media-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}

.media-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 81, 81, 0.08);
}

.media-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.media-card p {
  padding: 0.8rem 0.9rem;
  margin: 0;
}

.video-preview {
  margin-top: 1rem;
  display: block;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 26px rgba(0, 81, 81, 0.14);
}

.video-preview img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  filter: brightness(0.78);
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 81, 81, 0.9);
  color: #fff;
  font-weight: 600;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.highlight {
  margin-top: 1.1rem;
  color: var(--primary);
  font-weight: 600;
}

.steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 8px 18px rgba(0, 81, 81, 0.06);
}

.step h3 {
  margin-bottom: 0.45rem;
}

.step-number {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(0, 81, 81, 0.12);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.helper {
  margin-top: 1rem;
}

.compare-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.compare-card {
  border-radius: var(--radius);
  padding: 1.1rem;
  border: 1px solid var(--line);
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.compare-card h3 {
  margin-bottom: 0.45rem;
}

.compare-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  margin-bottom: 0.6rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.compare-before h3 {
  color: #6a3f3f;
}

.compare-before {
  background: linear-gradient(180deg, #fff8f8, #fff);
}

.compare-before .compare-icon {
  color: #6a3f3f;
  background: #fdeeee;
}

.compare-after h3 {
  color: var(--primary);
}

.compare-after {
  background: linear-gradient(180deg, #f3fbfb, #fff);
}

.compare-after .compare-icon {
  color: var(--primary);
  background: #e7f4f3;
}

.benefits {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.benefit {
  background: var(--surface);
  border-left: 4px solid var(--primary);
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 0.95rem 1rem;
  box-shadow: 0 8px 16px rgba(0, 81, 81, 0.05);
}

.benefit::before {
  content: "✔ ";
  color: var(--primary);
  font-weight: 700;
}

.faq {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.7rem;
}

.faq details {
  background: var(--surface);
  border: 1px solid rgba(0, 81, 81, 0.18);
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding-right: 1.3rem;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before,
.faq summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 11px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transform: translateY(-50%);
  transition: transform 0.2s ease;
}

.faq summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.faq details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.faq p {
  margin-top: 0.55rem;
}

.sl-section-cta {
  padding-top: 5.2rem;
  padding-bottom: 7.4rem;
}

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

.subtext {
  margin-top: 0.8rem;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.mobile-fixed-cta {
  position: fixed;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 999;
  background: var(--primary);
  color: #fff;
  text-align: center;
  text-decoration: none;
  padding: 0.95rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 81, 81, 0.35);
}

.site-footer {
  background: #eef4f4;
  border-top: 1px solid rgba(0, 81, 81, 0.12);
  padding: 3rem 0 6rem;
}

.footer-content {
  text-align: center;
}

.footer-text {
  max-width: 62ch;
  margin: 0 auto;
}

.footer-links {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
}

.footer-links a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  border-bottom-color: var(--primary);
}

.footer-copy {
  margin-top: 0.9rem;
  font-size: 0.84rem;
}

.sl-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.sl-reveal.sl-is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .sl-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sl-btn,
  .top-progress-bar {
    transition: none;
  }
}

@media (min-width: 768px) {
  .sl-section {
    padding: 5rem 0;
  }

  .hero-grid {
    grid-template-columns: 1fr 1.02fr;
    gap: 3.2rem;
  }

  .hero-copy {
    justify-items: start;
    text-align: left;
  }

  .hero-copy .brand-logo {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-copy .sl-btn-primary {
    width: auto;
    max-width: none;
    margin-top: 1.25rem;
  }

  .microcopy {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .hero-mockup {
    align-self: stretch;
    justify-items: stretch;
  }

  .hero-main-visual img {
    height: 100%;
    min-height: 460px;
  }

  .lead {
    max-width: 52ch;
  }

  .hero-proof p {
    text-align: left;
  }

  .brand-logo {
    margin-bottom: 1.1rem;
  }

  .steps,
  .benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .step {
    min-height: 165px;
  }

  .compare-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .media-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .media-card img {
    height: 200px;
  }

  .video-preview img {
    height: 320px;
  }

  .mobile-fixed-cta {
    display: none;
  }

  .sl-section-cta {
    padding-top: 5.8rem;
    padding-bottom: 5.8rem;
  }

  .site-footer {
    padding-top: 3.1rem;
    padding-bottom: 2.8rem;
  }
}

