/* ============================================
   DR. DAVID MOGNATO — LANDING PAGE
   Luxury Medical Aesthetic
   ============================================ */

/* --- CSS VARIABLES --- */
:root {
  --primary: #232944;
  --primary-light: #2e3554;
  --primary-dark: #1a1f35;
  --accent: #993544;
  --accent-light: #b04558;
  --cta: #995744;
  --cta-hover: #a8654f;
  --cta-light: #b0765e;
  --text: #333333;
  --text-secondary: #697280;
  --bg: #FFFFFF;
  --bg-muted: #EEEAEA;
  --bg-warm: #f7f4f2;

  --font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-sm: 0 1px 3px rgba(35, 41, 68, 0.06);
  --shadow-md: 0 4px 16px rgba(35, 41, 68, 0.08);
  --shadow-lg: 0 8px 32px rgba(35, 41, 68, 0.1);
  --shadow-xl: 0 16px 48px rgba(35, 41, 68, 0.12);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color-scheme: light;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
}

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

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

address {
  font-style: normal;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- SECTION OVERLINE --- */
.section-overline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--primary);
  margin-bottom: 52px;
  text-align: left;
  position: relative;
  line-height: 1.3;
}

.section-overline::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 20px 0 0;
}

.section-overline--light {
  color: rgba(255, 255, 255, 0.9);
}

.section-overline--light::after {
  background: var(--cta-light);
}

.section-cta {
  text-align: left;
  margin-top: 52px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  text-align: left;
  max-width: 620px;
  margin: -28px 0 52px;
  line-height: 1.75;
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(35, 41, 68, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.header--scrolled {
  background: rgba(26, 31, 53, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: height var(--transition);
}

.header--scrolled .header__inner {
  height: 64px;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-img {
  height: 44px;
  width: auto;
  transition: height var(--transition);
}

.header--scrolled .header__logo-img {
  height: 36px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.header__link:hover {
  color: #fff;
}

.header__link:hover::after {
  width: 100%;
}

.header__cta-btn {
  font-size: 0.82rem;
  font-weight: 500;
  color: #fff;
  background: var(--cta);
  padding: 10px 24px;
  border-radius: var(--radius-md);
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition);
}

.header__cta-btn:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
}

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  transform-origin: center;
}

.header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ============================================
   HERO — Side-by-side layout
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  overflow: hidden;
  margin-top: -76px;
  padding: calc(76px + 180px) clamp(24px, 5vw, 80px) 70px;
}

.hero__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  width: 100%;
}

.hero__content {
  text-align: left;
  animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__label {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cta-light);
  margin-bottom: 32px;
  animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero__label-line {
  display: block;
  width: 40px;
  height: 1.5px;
  background: var(--cta-light);
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 24px;
  animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero__title em {
  font-style: italic;
  color: #d4713a;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.3vw, 1.15rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
  animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.hero .btn {
  animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero__image-col {
  display: flex;
  justify-content: center;
  animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero__image-frame {
  width: 100%;
  max-width: 680px;
  max-height: 580px;
  overflow: hidden;
  border-radius: 16px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 10%, black 25%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.3) 10%, black 25%);
}

.hero__photo {
  width: 100%;
  height: auto;
  display: block;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.15); }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 16px 38px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-transform: uppercase;
}

.btn--primary {
  background: var(--cta);
  color: #fff;
}

.btn--primary:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(153, 87, 68, 0.25);
}

.btn--cta-light {
  background: #fff;
  color: var(--primary);
  font-weight: 600;
}

.btn--cta-light:hover {
  background: var(--bg-muted);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--whatsapp {
  background: var(--cta);
  color: #fff;
  width: 100%;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.btn--whatsapp:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(153, 87, 68, 0.25);
}

.btn--whatsapp svg {
  flex-shrink: 0;
}

/* ============================================
   PRINCIPIOS
   ============================================ */
.principios {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg);
}

.principios__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.principio-card {
  background: var(--bg);
  border: 1px solid rgba(35, 41, 68, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 42px);
  transition: all var(--transition);
}

.principio-card:hover {
  border-color: rgba(153, 53, 68, 0.15);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.principio-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--bg-muted);
  color: var(--accent);
  margin-bottom: 22px;
}

.principio-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.35;
}

.principio-card__text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ============================================
   SOBRE
   ============================================ */
.sobre {
  background: var(--primary);
  padding: clamp(80px, 10vw, 130px) 0;
  position: relative;
  overflow: hidden;
}

.sobre::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(153, 53, 68, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.sobre__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.sobre__name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 28px;
  line-height: 1.25;
}

.sobre__crm {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
  margin-left: 12px;
}

.sobre__bio {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
  margin-bottom: 20px;
}

.sobre__badges {
  display: flex;
  gap: 20px;
  margin-top: 36px;
}

.sobre__badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 14px 22px;
  text-align: center;
}

.sobre__badge-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
}

.sobre__badge-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cta-light);
}

.sobre__image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.03);
}

.sobre__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ============================================
   PROCEDIMENTOS — Accordion horizontal
   ============================================ */
.procedimentos {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg-warm);
}

.proc-accordion {
  display: flex;
  gap: 6px;
  height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.proc-panel {
  position: relative;
  flex: 0 0 72px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--panel-bg, var(--primary));
}

.proc-panel--active {
  flex: 1 1 0;
  cursor: default;
}

/* Collapsed state */
.proc-panel__collapsed {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.proc-panel--active .proc-panel__collapsed {
  opacity: 0;
  pointer-events: none;
}

.proc-panel__collapsed-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  white-space: nowrap;
  text-transform: uppercase;
}

.proc-panel:not(.proc-panel--active):hover .proc-panel__collapsed-title {
  color: #fff;
}

/* +/x icon */
.proc-panel__icon {
  display: none;
}

/* Expanded state */
.proc-panel__expanded {
  position: absolute;
  inset: 0;
  padding: clamp(32px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.4s ease 0.15s;
}

.proc-panel--active .proc-panel__expanded {
  opacity: 1;
}

.proc-panel__overline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cta-light);
  margin-bottom: 10px;
}

.proc-panel__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.25;
}

.proc-panel__list {
  list-style: none;
  columns: 2;
  column-gap: 32px;
  margin-bottom: 32px;
}

.proc-panel__list li {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
  break-inside: avoid;
  margin-bottom: 4px;
}

.proc-panel__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cta-light);
}

.proc-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--cta);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  align-self: flex-start;
}

.proc-panel__cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(153, 87, 68, 0.3);
}

/* ============================================
   JORNADA
   ============================================ */
.jornada {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--primary);
  position: relative;
}

.jornada__timeline {
  max-width: 720px;
  margin: 0;
  position: relative;
}

.jornada__timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.1) 10%,
    rgba(255, 255, 255, 0.1) 90%,
    transparent
  );
}

.jornada__step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 0;
}

.jornada__number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(153, 87, 68, 0.12);
  border: 1px solid rgba(153, 87, 68, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cta-light);
  position: relative;
  z-index: 2;
}

.jornada__step-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.jornada__step-text {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg);
}

.depoimentos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.depoimento-card {
  background: var(--bg);
  border: 1px solid rgba(35, 41, 68, 0.08);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.depoimento-card:hover {
  border-color: rgba(153, 53, 68, 0.12);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.depoimento-card--featured {
  grid-column: span 2;
  background: var(--primary);
  border-color: rgba(255, 255, 255, 0.06);
}

.depoimento-card--featured:hover {
  border-color: rgba(153, 87, 68, 0.2);
}

.depoimento-card--featured .depoimento-card__stars {
  color: var(--cta-light);
}

.depoimento-card--featured .depoimento-card__quote {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
}

.depoimento-card--featured .depoimento-card__name {
  color: #fff;
}

.depoimento-card--featured .depoimento-card__proc {
  color: rgba(255, 255, 255, 0.35);
}

.depoimento-card__stars {
  display: flex;
  gap: 2px;
  color: var(--cta);
  margin-bottom: 18px;
}

.depoimento-card__quote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 20px;
}

.depoimento-card__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid rgba(35, 41, 68, 0.06);
  padding-top: 16px;
}

.depoimento-card--featured .depoimento-card__author {
  border-top-color: rgba(255, 255, 255, 0.06);
}

.depoimento-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.depoimento-card__proc {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section .section-overline {
  text-align: center;
}

.cta-section .section-overline::after {
  margin: 20px auto 0;
}

.cta-section__bg-accent {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 50% 50%, rgba(153, 87, 68, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-section__content {
  position: relative;
  z-index: 2;
}

.cta-section__title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  line-height: 1.7;
}

.cta-section__text {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
  max-width: 540px;
  margin: 40px auto 0;
  text-align: left;
}

.contact-form__group {
  margin-bottom: 22px;
}

.contact-form__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.contact-form__input {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.contact-form__input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.contact-form__input:focus {
  border-color: var(--cta-light);
  background: rgba(255, 255, 255, 0.1);
}

.contact-form__checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.contact-form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition);
}

.contact-form__checkbox-label:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.contact-form__checkbox-label input[type="checkbox"] {
  display: none;
}

.contact-form__checkbox-custom {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  position: relative;
  transition: all var(--transition);
}

.contact-form__checkbox-label input[type="checkbox"]:checked ~ .contact-form__checkbox-custom {
  background: var(--cta);
  border-color: var(--cta);
}

.contact-form__checkbox-label input[type="checkbox"]:checked ~ .contact-form__checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.contact-form__submit {
  width: 100%;
  margin-top: 12px;
  justify-content: center;
  font-size: 0.95rem;
  padding: 18px 38px;
}

@media (max-width: 480px) {
  .contact-form__checkboxes {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   LOCALIZAÇÃO — Card style
   ============================================ */
.localizacao {
  padding: clamp(80px, 10vw, 130px) 0;
  background: var(--bg-warm);
}

.localizacao__card {
  max-width: 520px;
  margin: 0;
  background: var(--bg);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(35, 41, 68, 0.06);
}

.localizacao__map-wrap {
  width: 100%;
  height: 280px;
}

.localizacao__map-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.localizacao__info {
  padding: 32px 36px 36px;
}

.localizacao__name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.localizacao__address {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.localizacao__phone-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.localizacao__phone {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition);
}

.localizacao__phone:hover {
  color: var(--accent);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  padding: 40px 0 28px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 60px);
}

.footer__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

.footer__credentials {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.03em;
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition);
}

.footer__social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(153, 53, 68, 0.08);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer__oren {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer__oren:hover {
  color: var(--accent);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .depoimentos__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .depoimento-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .hero {
    align-items: flex-start;
    padding-top: calc(76px + 100px);
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: left;
  }

  .hero__content {
    text-align: left;
    order: 1;
  }

  .hero__image-col {
    order: 0;
  }

  .hero__image-frame {
    max-width: 380px;
    border-radius: 14px;
    -webkit-mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 65%, transparent 100%);
  }

  .hero__label {
    color: #b0765e;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .section-overline {
    text-align: left;
  }

  .section-overline::after {
    margin: 20px 0 0;
  }

  .sobre__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sobre__image-col {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 36px 36px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .header__link {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
  }

  .header__cta-btn {
    margin-top: 12px;
  }

  .header__hamburger {
    display: flex;
  }

  .principios__grid {
    grid-template-columns: 1fr;
  }

  .proc-accordion {
    flex-direction: column;
    height: auto;
    gap: 8px;
  }

  .proc-panel {
    flex: 0 0 auto;
    border-radius: var(--radius-md);
    position: relative;
  }

  .proc-panel__collapsed {
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    opacity: 1;
  }

  .proc-panel--active .proc-panel__collapsed {
    opacity: 1;
    pointer-events: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .proc-panel__collapsed-title {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }

  .proc-panel--active .proc-panel__collapsed-title {
    color: #fff;
  }

  .proc-panel__icon {
    display: block;
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }

  .proc-panel__icon::before,
  .proc-panel__icon::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease;
  }

  .proc-panel__icon::before {
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1.5px;
    transform: translate(-50%, -50%);
  }

  .proc-panel__icon::after {
    top: 50%;
    left: 50%;
    width: 1.5px;
    height: 16px;
    transform: translate(-50%, -50%);
  }

  .proc-panel--active .proc-panel__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .proc-panel__expanded {
    position: relative;
    padding: 20px 24px 28px;
  }

  .proc-panel:not(.proc-panel--active) .proc-panel__expanded {
    display: none;
  }

  .proc-panel--active .proc-panel__expanded {
    opacity: 1;
    display: flex;
  }

  .proc-panel__overline {
    display: none;
  }

  .proc-panel__title {
    display: none;
  }

  .proc-panel__list {
    columns: 1;
    margin-bottom: 24px;
  }

  .proc-panel__list li {
    padding-left: 20px;
    font-size: 0.9rem;
  }

  .proc-panel__list li::before {
    content: '>';
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
    font-size: 0.75rem;
    color: var(--cta-light);
    top: 2px;
  }

  .proc-panel__cta {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
    border-radius: var(--radius-md);
  }

  .depoimentos__grid {
    grid-template-columns: 1fr;
  }

  .depoimento-card--featured {
    grid-column: span 1;
  }

  .hero__title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .jornada__timeline::before {
    display: none;
  }

  .footer__main {
    flex-direction: column;
    gap: 16px;
    text-align: left;
    align-items: flex-start;
  }

  .footer__brand {
    align-items: flex-start;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: left;
    align-items: flex-start;
  }

  .localizacao__card {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .sobre__badges {
    flex-direction: column;
    gap: 12px;
  }

  .sobre__badge {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
  }

  .jornada__step {
    flex-direction: column;
    gap: 16px;
  }

  .jornada__number {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
  }

  .localizacao__info {
    padding: 24px 24px 28px;
  }
}

/* --- MOBILE NAV OVERLAY --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: all;
}
