:root {
  --ink: #06101d;
  --navy: #101c2d;
  --navy-soft: #1b2d45;
  --navy-lift: #233951;
  --silver: #dce2e8;
  --paper: #f6f4ef;
  --muted: #a8b2bd;
  --line: rgba(220, 226, 232, 0.16);
  --accent: #c9b47d;
  --accent-soft: rgba(201, 180, 125, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --page: min(1180px, calc(100vw - 40px));
  --section-y: clamp(64px, 8vw, 104px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(201, 180, 125, 0.08), transparent 30%),
    var(--ink);
  color: var(--silver);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 10px max(20px, calc((100vw - 1180px) / 2));
  background: rgba(6, 16, 29, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 44px;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  max-width: 260px;
  line-height: 1.15;
}

.main-nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 30px);
  color: rgba(244, 241, 235, 0.78);
  font-size: 0.88rem;
  font-weight: 600;
}

.main-nav a:hover,
.brand:hover {
  color: var(--white);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(220, 226, 232, 0.32);
  color: var(--paper);
  font-size: 0.75rem;
  font-weight: 800;
}

.social-link svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link:hover {
  border-color: rgba(217, 221, 226, 0.64);
  color: var(--white);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.header-cta,
.button.primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 12px 28px rgba(201, 180, 125, 0.18);
}

.button.secondary {
  border-color: rgba(220, 226, 232, 0.32);
  color: var(--paper);
  background: rgba(220, 226, 232, 0.03);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 86svh;
  max-height: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 6vw, 88px);
  overflow: hidden;
  padding: 138px max(20px, calc((100vw - 1180px) / 2)) 76px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(6, 16, 29, 0.78), rgba(6, 16, 29, 0.42)),
    url("assets/icone_branco.png") right 9% center / min(27vw, 340px) auto no-repeat,
    linear-gradient(135deg, #06101d 0%, #101c2d 50%, #1b2d45 100%);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 16, 29, 0.98) 0%, rgba(6, 16, 29, 0.82) 48%, rgba(6, 16, 29, 0.5) 100%),
    linear-gradient(0deg, rgba(6, 16, 29, 0.82) 0%, rgba(6, 16, 29, 0) 46%);
}

.hero-panel {
  position: relative;
  z-index: 3;
  width: min(390px, 34vw);
  padding: 34px 32px 30px;
  border: 1px solid rgba(220, 226, 232, 0.18);
  background:
    linear-gradient(180deg, rgba(220, 226, 232, 0.11), rgba(220, 226, 232, 0.028)),
    linear-gradient(135deg, var(--accent-soft), transparent 45%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), var(--shadow);
}

.hero-panel-logo {
  width: 100%;
  height: 210px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 26px;
  opacity: 0.92;
}

.hero-panel span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  padding: 14px 0;
  border-top: 1px solid rgba(217, 221, 226, 0.16);
  color: var(--paper);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.1;
}

.hero-panel p {
  margin: 24px 0 0;
  color: rgba(244, 241, 235, 0.68);
  line-height: 1.55;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(720px, 62vw);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--paper);
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 5.25vw, 5.25rem);
  text-wrap: balance;
}

h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.15vw, 3.25rem);
  text-wrap: balance;
}

h3 {
  font-size: 1.32rem;
}

.hero-copy,
.profile-copy p,
.contact-section p,
.practice-item p,
.method-list p {
  color: rgba(244, 241, 235, 0.74);
  line-height: 1.68;
}

.hero-copy {
  max-width: 590px;
  margin: 22px 0 0;
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--navy);
}

.intro-band div {
  min-height: 118px;
  padding: 26px clamp(20px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.intro-band div:last-child {
  border-right: 0;
}

.intro-band strong,
.method-list strong {
  display: block;
  color: var(--white);
  font-size: 0.96rem;
  margin-bottom: 8px;
}

.intro-band span {
  color: rgba(217, 221, 226, 0.72);
  display: block;
  max-width: 330px;
  line-height: 1.55;
  font-size: 0.92rem;
}

.section,
.profile-section,
.contact-section {
  padding: var(--section-y) max(20px, calc((100vw - 1180px) / 2));
}

.services-summary {
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--navy);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: end;
  gap: 48px;
  width: var(--page);
  margin: 0 auto 44px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: var(--page);
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.practice-item {
  min-height: 238px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(220, 226, 232, 0.035), transparent),
    rgba(27, 45, 69, 0.34);
}

.practice-item span {
  display: block;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.practice-item h3 {
  margin-bottom: 12px;
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(260px, 370px) minmax(0, 650px);
  justify-content: center;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(246, 244, 239, 0.97), rgba(246, 244, 239, 0.92)),
    url("assets/icone.png") right 8% center / 360px auto no-repeat,
    var(--paper);
  color: var(--ink);
}

.profile-section h2 {
  color: var(--ink);
}

.profile-copy p {
  color: rgba(7, 16, 25, 0.72);
  font-size: 0.98rem;
}

.profile-copy p + p {
  margin-top: 18px;
}

.benefit-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.benefit-list div {
  padding-left: 18px;
  border-left: 2px solid var(--accent);
}

.benefit-list strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 6px;
}

.benefit-list p {
  margin: 0;
}

.profile-image {
  box-shadow: var(--shadow);
  background: var(--navy);
  border: 10px solid var(--white);
}

.profile-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
}

.dark-band {
  background:
    linear-gradient(135deg, rgba(16, 28, 45, 0.94), rgba(27, 45, 69, 0.96)),
    url("assets/icone_branco.png") right 10% center / min(28vw, 330px) auto no-repeat,
    var(--navy);
}

.method-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: var(--page);
  margin: 0 auto;
  gap: 1px;
  background: var(--line);
}

.method-list div {
  min-height: 190px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(220, 226, 232, 0.045), transparent),
    var(--navy-soft);
}

.method-list strong {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.28rem;
}

.faq-section {
  background: var(--ink);
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  background: rgba(29, 49, 72, 0.28);
}

.faq-list summary {
  cursor: pointer;
  padding: 19px 22px;
  color: var(--paper);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(244, 241, 235, 0.74);
  line-height: 1.7;
}

.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  background:
    linear-gradient(135deg, rgba(6, 16, 29, 0.96) 0%, rgba(16, 28, 45, 0.94) 58%, rgba(27, 45, 69, 0.9) 100%),
    url("assets/logo1_branco.png") right 9% center / min(34vw, 460px) auto no-repeat;
  border-top: 1px solid var(--line);
}

.contact-section div {
  max-width: 690px;
}

.contact-section p {
  max-width: 620px;
  margin: 20px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px max(20px, calc((100vw - 1180px) / 2));
  color: rgba(244, 241, 235, 0.56);
  border-top: 1px solid var(--line);
}

.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px 0 16px;
  border-radius: 999px;
  background: #25d366;
  color: #062013;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

@media (max-width: 1100px) {
  .hero-panel {
    display: none;
  }

  .hero-content {
    width: min(720px, 100%);
  }
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .intro-band,
  .practice-grid,
  .method-list,
  .section-heading,
  .profile-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 78svh;
    padding-top: 118px;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(6, 16, 29, 0.92), rgba(6, 16, 29, 0.72)),
      url("assets/icone_branco.png") right 6% center / 260px auto no-repeat,
      linear-gradient(135deg, #06101d 0%, #101c2d 52%, #1b2d45 100%);
  }

  h1 {
    font-size: clamp(2.55rem, 8vw, 4.6rem);
  }

  h2 {
    font-size: clamp(1.9rem, 5vw, 3rem);
  }

  .section-heading {
    gap: 14px;
    margin-bottom: 34px;
  }

  .intro-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro-band span {
    max-width: 620px;
  }

  .practice-item {
    min-height: auto;
  }

  .practice-item span {
    margin-bottom: 30px;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
    background: linear-gradient(135deg, var(--ink) 0%, var(--navy) 58%, var(--navy-soft) 100%);
  }
}

@media (max-width: 640px) {
  :root {
    --page: min(100% - 32px, 1180px);
    --section-y: 56px;
  }

  .site-header {
    min-height: 64px;
    padding: 12px 16px;
    gap: 12px;
  }

  .brand span:last-child {
    display: none;
  }

  .brand-mark {
    width: 36px;
    height: 40px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .social-link {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 76svh;
    padding: 118px 16px 48px;
  }

  .hero-media {
    background:
      linear-gradient(90deg, rgba(6, 16, 29, 0.96), rgba(6, 16, 29, 0.82)),
      url("assets/icone_branco.png") right -80px center / 240px auto no-repeat,
      linear-gradient(135deg, #06101d 0%, #101c2d 52%, #1b2d45 100%);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 16, 25, 0.96) 0%, rgba(7, 16, 25, 0.75) 70%, rgba(7, 16, 25, 0.42) 100%),
      linear-gradient(0deg, rgba(7, 16, 25, 0.95) 0%, rgba(7, 16, 25, 0) 45%);
  }

  h1 {
    font-size: 2.42rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.85rem;
  }

  h3 {
    font-size: 1.18rem;
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .intro-band div,
  .practice-item,
  .method-list div {
    padding: 22px 18px;
  }

  .profile-section {
    gap: 28px;
  }

  .profile-image {
    max-width: 300px;
    margin: 0 auto;
    border-width: 8px;
  }

  .faq-list summary {
    padding: 17px 18px;
  }

  .faq-list p {
    padding: 0 18px 18px;
  }

  .button {
    width: 100%;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    min-height: 50px;
    padding: 0 14px;
  }

  .whatsapp-float span {
    display: none;
  }

  .site-footer {
    flex-direction: column;
    padding-bottom: 84px;
  }
}
