/* ==========================================
   PATARO ADVOGADOS — LANDING PAGE DRA. LUCIANA
   ========================================== */

/* === FONTS === */
@font-face {
  font-family: 'Advercase';
  src: url('fonts/Advercase-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Brooklyn';
  src: url('fonts/Brooklyn Normal 1.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brooklyn';
  src: url('fonts/Brooklyn Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Brooklyn';
  src: url('fonts/Brooklyn SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brooklyn';
  src: url('fonts/Brooklyn SemiBoldItalic.otf') format('opentype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Brooklyn';
  src: url('fonts/Brooklyn Bold 1.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brooklyn';
  src: url('fonts/Brooklyn BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Brooklyn';
  src: url('fonts/Brooklyn Heavy 1.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Brooklyn';
  src: url('fonts/Brooklyn HeavyItalic.otf') format('opentype');
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

/* === VARIABLES === */
:root {
  --petrol:     #071F28;
  --petrol-mid: #0e3347;
  --gold:       #B88A3B;
  --gold-light: rgba(184, 138, 59, 0.12);
  --offwhite:   #F7F3EC;
  --dark-text:  #182126;
  --gray-text:  #6D7478;
  --white:      #FFFFFF;
  --border:     rgba(7, 31, 40, 0.08);

  --font-serif: 'Times New Roman', Times, serif;
  --font-display: 'Advercase', 'Times New Roman', Times, serif;
  --font-sans:  'Brooklyn', -apple-system, BlinkMacSystemFont, sans-serif;

  --container:  1200px;
  --section-py: 88px;
  --radius:     6px;
  --radius-lg:  16px;

  --shadow:     0 4px 24px rgba(7, 31, 40, 0.07);
  --shadow-md:  0 8px 48px rgba(7, 31, 40, 0.13);
  --shadow-lg:  0 16px 64px rgba(7, 31, 40, 0.18);

  --header-h:   76px;
  --transition: 0.22s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-sans); color: var(--dark-text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--petrol);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  border: 2px solid var(--gold);
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* === CONTAINER === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

/* === SECTION DEFAULTS === */
.section { padding: var(--section-py) 0; }
.section--light { background: var(--offwhite); }

.section__header { text-align: center; max-width: 680px; margin: 0 auto 64px; }

.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(35px, 3.5vw, 51px);
  font-weight: 400;
  color: var(--dark-text);
  line-height: 1.08;
  margin-bottom: 16px;
}
.section__title em { font-style: italic; color: var(--gold); }

.section__subtitle {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.75;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--light {
  background: var(--white);
  color: var(--petrol);
  border-color: var(--white);
}
.btn--light:hover { background: var(--offwhite); }

.btn--outline-light {
  background: transparent !important;
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}
.btn--outline-light:hover { border-color: var(--white) !important; background: rgba(255,255,255,0.06) !important; }

.btn--dark {
  background: var(--petrol) !important;
  color: var(--white) !important;
  border-color: var(--petrol) !important;
}
.btn--dark:hover { background: var(--petrol-mid) !important; border-color: var(--petrol-mid) !important; }

.btn--outline-dark {
  background: transparent;
  color: var(--petrol);
  border-color: rgba(7, 31, 40, 0.3);
}
.btn--outline-dark:hover { border-color: var(--petrol); }


/* Arrow CTA button (pill + dark circle) */
.btn--cta-arrow {
  background: var(--white);
  color: var(--petrol);
  border-color: var(--white);
  padding: 6px 6px 6px 26px;
  gap: 14px;
}
.btn--cta-arrow:hover {
  background: var(--offwhite);
  border-color: var(--offwhite);
}
.btn__arrow {
  width: 44px;
  height: 44px;
  background: var(--petrol);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.btn--cta-arrow:hover .btn__arrow {
  transform: translateX(3px);
  background: var(--gold);
}

.btn--ghost-glass {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn--ghost-glass:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
}

.btn--sm { padding: 10px 22px; font-size: 13px; }
.btn--full { width: 100%; }

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(7, 31, 40, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}
.header__logo-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.3px;
  line-height: 1.2;
}
.header__logo-tagline {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__link {
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78) !important;
  letter-spacing: 0.2px;
  transition: color var(--transition);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__link:hover,
.nav__link--active { color: var(--white) !important; }
.nav__link:hover::after,
.nav__link--active::after { width: 100%; }

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
  padding: 4px 2px;
  transition: color var(--transition);
  text-transform: uppercase;
}
.lang-btn.active,
.lang-btn:hover { color: var(--white); }
.lang-divider { color: rgba(255, 255, 255, 0.2); font-size: 11px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  position: relative;
  z-index: 102;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  transform-origin: center;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--petrol);
}

/* Full-bleed background photo */
.hero__bg-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--petrol);
  background-image: url('images/BG-Hero-Luciana-Pataro-Advogada-Em-Campinas.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Gradient overlay: heavy on left (text area), fades right (photo area) */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(7, 31, 40, 0.97) 0%,
    rgba(7, 31, 40, 0.88) 30%,
    rgba(7, 31, 40, 0.55) 55%,
    rgba(7, 31, 40, 0.15) 80%,
    rgba(7, 31, 40, 0.05) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 88px;
  min-height: 100vh;
}

.hero__content { max-width: 560px; }

.hero__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero__title {
  font-family: 'Advercase', var(--font-serif);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero__title em { font-style: italic; color: var(--gold); }

.hero__subtitle {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.78;
  margin-bottom: 38px;
  max-width: 500px;
}

.hero__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero__microcopy {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.3px;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-text);
}
.trust-bar__item svg { color: var(--gold); flex-shrink: 0; }
.trust-bar__divider { width: 1px; height: 22px; background: var(--border); }

/* === ABOUT === */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 88px;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transform: scale(1.2);
}

.about__overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 100px 28px 53px 53px;
  background: linear-gradient(to bottom, transparent 0%, rgba(7,31,40,0.72) 55%, rgba(7,31,40,0.88) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  display: flex;
  flex-direction: column;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 42%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 42%);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.about__overlay-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.about__overlay-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  line-height: 0.95;
}
.about__overlay-sub {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  margin-top: 8px;
}

.about__content .section__eyebrow,
.about__content .section__title { text-align: left; }
.about__content .section__title { margin-bottom: 20px; }

.about__text {
  font-size: 15.5px;
  color: var(--gray-text);
  line-height: 1.85;
  margin-bottom: 28px;
}

.about__bullets { margin-bottom: 36px; }
.about__bullets li {
  font-size: 15px;
  color: var(--dark-text);
  padding: 11px 0;
  padding-left: 22px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.about__bullets li:first-child { border-top: 1px solid var(--border); }
.about__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* === TRANSITION STRIP === */
.strip {
  background: var(--petrol);
  padding: 32px 0;
  text-align: center;
}
.strip__text {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2.2vw, 24px);
  font-style: italic;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.3px;
}
.strip__text::before,
.strip__text::after {
  content: '—';
  color: var(--gold);
  margin: 0 14px;
  font-style: normal;
}

/* === PRACTICE AREAS — CAROUSEL === */
.areas__nav-group {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: -16px;
  margin-bottom: 36px;
}

.areas__nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(7, 31, 40, 0.2);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--dark-text);
  transition: all var(--transition);
  flex-shrink: 0;
}
.areas__nav:hover:not(:disabled) {
  background: var(--petrol);
  border-color: var(--petrol);
  color: var(--white);
}
.areas__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Carousel track — extends to full viewport width */
.areas__carousel-wrap {
  overflow: hidden;
  padding: 8px 0 16px;
}

.areas__carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 8px 28px 20px;
  max-width: var(--container);
  margin: 0 auto;
  /* hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.areas__carousel::-webkit-scrollbar { display: none; }
.areas__carousel.is-dragging { cursor: grabbing; scroll-behavior: auto; }

/* Each slide card */
.area-slide {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.area-slide:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Image area (top of card) */
.area-slide__image {
  position: relative;
  height: 220px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.area-slide__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.area-slide__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7,31,40,0.55) 0%, rgba(7,31,40,0.75) 100%);
  z-index: 0;
}
.area-slide__image > * { position: relative; z-index: 1; }

.area-slide__img-icon {
  color: rgba(184, 138, 59, 0.45);
  position: relative;
  z-index: 1;
}

/* Category tag — bottom-left of image */
.area-slide__category {
  position: absolute;
  bottom: 14px;
  left: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(7, 31, 40, 0.7);
  backdrop-filter: blur(4px);
  padding: 5px 10px;
  border-radius: 100px;
  z-index: 2;
}

/* Card body (bottom) */
.area-slide__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 2px solid transparent;
  transition: border-color var(--transition);
}
.area-slide:hover .area-slide__body { border-top-color: var(--gold); }

.area-slide__title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  color: var(--dark-text);
  line-height: 1.25;
  margin-bottom: 10px;
}

.area-slide__text {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 20px;
  flex: 1;
}

.area-slide__link {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  transition: color var(--transition);
  margin-top: auto;
}
.area-slide__link:hover { color: var(--petrol); }

/* === STATS === */
.stats {
  background: var(--petrol);
  padding: 68px 0;
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__number--text {
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: 2px;
}
.stat__label {
  display: block;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* === DIFFERENTIALS === */
.differentials__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}

.differentials__content .section__eyebrow,
.differentials__content .section__title { text-align: left; }
.differentials__content .section__title { margin-bottom: 36px; }

.accordion__item { border-bottom: 1px solid var(--border); }

.accordion__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none !important;
  border: none;
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-text) !important;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.accordion__trigger:hover,
.accordion__trigger:focus,
.accordion__trigger:active {
  background: none !important;
  color: var(--gold) !important;
}

.accordion__icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--gold) !important;
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
  width: 20px;
  text-align: center;
}
.accordion__item.active .accordion__icon { transform: rotate(45deg); }

.accordion__item,
.accordion__item.active,
.accordion__item.active .accordion__trigger {
  background: none !important;
}
.accordion__item.active .accordion__trigger {
  color: var(--dark-text) !important;
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}
.accordion__item.active .accordion__body { max-height: 240px; }

.accordion__body p {
  font-size: 14.5px;
  color: var(--gray-text);
  line-height: 1.8;
  padding-bottom: 20px;
}

.differentials__visual { position: relative; }

.differentials__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius-lg);
  display: block;
}

.differentials__quote-card {
  position: absolute;
  bottom: 36px;
  left: -36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  max-width: 300px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.differentials__quote {
  font-family: var(--font-serif);
  font-size: 15px;
  font-style: italic;
  color: var(--dark-text);
  line-height: 1.65;
  margin-bottom: 16px;
}

.differentials__quote-author {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.differentials__quote-name {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--dark-text);
}
.differentials__stars { color: var(--gold); font-size: 11px; letter-spacing: 2px; }

/* === MANIFESTO === */
.manifesto {
  background: var(--petrol);
  padding: 100px 0;
  overflow: hidden;
}
.manifesto__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.manifesto__photo-placeholder {
  aspect-ratio: 3/4;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 138, 59, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
}
.manifesto__photo-placeholder svg { opacity: 0.4; }

.manifesto__quote-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 96px;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.7;
  margin-bottom: 24px;
}

.manifesto__text {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 28px;
}

.manifesto__author { display: flex; flex-direction: column; gap: 4px; font-style: normal; }
.manifesto__author-name { font-size: 15px; font-weight: 600; color: var(--gold); letter-spacing: 0.5px; }
.manifesto__author-title { font-size: 12px; color: rgba(255, 255, 255, 0.55); letter-spacing: 2px; text-transform: uppercase; }

/* === FORM SECTION === */
.form-section__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.form-section__content .section__eyebrow,
.form-section__content .section__title { text-align: left; }
.form-section__content .section__title { margin-bottom: 16px; }

.form-section__subtitle {
  font-size: 15.5px;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 28px;
}

.form-section__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.form-section__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dark-text);
}
.form-section__features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 15px;
}

.form-section__contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-section__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-text);
}
.form-section__contact-item svg { color: var(--gold); flex-shrink: 0; }
.form-section__contact-item a { color: var(--dark-text); font-weight: 500; transition: color var(--transition); }
.form-section__contact-item a:hover { color: var(--gold); }

/* FORM */
.form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form__row { margin-bottom: 16px; }
.form__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form__row--2 .form__group { margin-bottom: 16px; }

.form__group { display: flex; flex-direction: column; gap: 7px; }

.form__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--dark-text);
}

.form__input {
  padding: 12px 15px;
  border: 1.5px solid rgba(7, 31, 40, 0.13);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--dark-text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form__input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,138,59,0.1); }
.form__input::placeholder { color: rgba(109, 116, 120, 0.55); }

.phone-field {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.phone-field__country {
  flex-shrink: 0;
  width: 96px;
  padding: 0 10px;
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--dark-text);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%236D7478' d='M5 6L0 0h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 24px;
  transition: border-color var(--transition);
}
.phone-field__country:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,138,59,0.1);
}
.phone-field__number { flex: 1; }

.form__select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236D7478' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  padding-right: 36px;
}

.form__textarea {
  resize: vertical;
  min-height: 104px;
  line-height: 1.6;
}

.form__radio-group { display: flex; gap: 24px; }
.form__radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--dark-text);
  user-select: none;
}
.form__radio input[type="radio"] { accent-color: var(--gold); width: 15px; height: 15px; cursor: pointer; }

.form__disclaimer {
  font-size: 12px;
  color: var(--gray-text);
  text-align: center;
  margin-top: 16px;
  line-height: 1.55;
}

/* Form success state */
.form--success {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.form__success-msg {
  text-align: center;
  padding: 32px;
}
.form__success-msg h3 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--petrol);
  margin-bottom: 12px;
}
.form__success-msg p { font-size: 15px; color: var(--gray-text); line-height: 1.7; }

/* === FAQ === */
.faq__inner { max-width: 840px; margin: 0 auto; }
.faq__list { margin-top: 0; }
.accordion--faq .accordion__item { border-bottom: 1px solid var(--border); }
.accordion--faq .accordion__trigger { padding: 20px 0; font-size: 15.5px; }

/* === CTA FINAL === */
.cta-final {
  background: var(--petrol);
  padding: 100px 0;
  text-align: center;
}
.cta-final__inner { max-width: 640px; margin: 0 auto; }
.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.3;
}
.cta-final__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  line-height: 1.75;
}
.cta-final__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* === FOOTER === */
.footer {
  background: var(--petrol);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 64px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
}
.footer__tagline {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
}

.footer__col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col li a,
.footer__col li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.48);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer__col li a:hover { color: rgba(255, 255, 255, 0.85); }

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.5;
}
.footer__lang {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1100px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: 1 / -1; }
  .differentials__quote-card { left: -16px; max-width: 260px; }
}

@media (max-width: 960px) {
  :root { --section-py: 64px; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__content { max-width: 100%; }

  .about__inner { grid-template-columns: 1fr; gap: 56px; }
  .about__image-wrapper { max-width: 400px; margin: 0 auto; }

  .differentials__inner { grid-template-columns: 1fr; gap: 48px; }
  .differentials__visual { display: none; }

  .manifesto__inner { grid-template-columns: 1fr; gap: 0; }
  .manifesto__photo-placeholder { display: none; }

  .form-section__inner { grid-template-columns: 1fr; gap: 40px; }



  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-py: 56px; }

  /* Mobile nav */
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--petrol);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .nav.open { display: flex; }
  .nav__list { flex-direction: column; gap: 28px; text-align: center; }
  .nav__link { font-size: 24px; color: rgba(255,255,255,0.9); }
  .nav__link::after { bottom: -6px; }

  .menu-toggle { display: flex; }
  .header__actions .btn--sm { display: none; }

  .area-slide { flex: 0 0 280px; }

  .form__row--2 { grid-template-columns: 1fr; }
  .form { padding: 28px 24px; }

  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }

  .cta-final__actions { flex-direction: column; align-items: stretch; }

  .trust-bar__divider { display: none; }
  .trust-bar__inner { justify-content: flex-start; gap: 14px; }

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

  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__brand { grid-column: auto; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }

}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .form { padding: 24px 18px; }
  .area-slide { flex: 0 0 calc(100vw - 80px); }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* Mobile sticky CTA */
@media (max-width: 768px) {
  .hero__microcopy { display: none; }
}

/* === FOCUS VISIBLE === */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn:focus-visible { outline-offset: 4px; }
.nav__link:focus-visible { outline-offset: 5px; }
.accordion__trigger:focus-visible { outline-offset: 2px; border-radius: 2px; }
.lang-btn:focus-visible { outline-offset: 3px; border-radius: 2px; }

/* Phone field height alignment */
.phone-field .form__input { height: 48px; padding-top: 0; padding-bottom: 0; }

/* === PREFERS REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .about__overlay-text {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* === MODAL FORMULÁRIO === */
.form-modal[hidden] { display: none; }

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 31, 40, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: modalFadeIn 0.22s ease-out;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.form-modal__dialog {
  width: min(640px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.30);
  animation: modalSlideIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.form-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1;
}

.form-modal__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: var(--dark-text);
  line-height: 1.2;
}

.form-modal__subtitle {
  font-size: 14px;
  color: var(--gray-text);
  margin-top: 4px;
  line-height: 1.5;
}

.form-modal__close {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--offwhite);
  color: var(--dark-text);
  display: grid;
  place-items: center;
  transition: background 0.2s;
  margin-top: 2px;
}

.form-modal__close:hover { background: var(--border); }

.form-modal__body {
  padding: 24px 32px 32px;
}

@media (max-width: 480px) {
  .form-modal__header { padding: 20px 20px 16px; }
  .form-modal__body   { padding: 20px; }
}

/* === PÁGINAS DE SERVIÇO POR ÁREA (svc-*) === */
    /* Hero da página de serviço */
    .svc-hero { position: relative; background: var(--petrol); overflow: hidden; }
    .svc-hero__bg {
      position: absolute; inset: 0; z-index: 0;
      background-size: cover;
      background-position: center right;
      background-repeat: no-repeat;
    }
    .svc-hero__overlay {
      position: absolute; inset: 0; z-index: 1;
      background: linear-gradient(100deg, rgba(7,31,40,0.98) 0%, rgba(7,31,40,0.96) 40%, rgba(7,31,40,0.78) 68%, rgba(7,31,40,0.55) 100%);
    }
    .svc-hero .container { position: relative; z-index: 2; padding-top: calc(var(--header-h) + 34px); padding-bottom: 78px; }
    .svc-hero__content { max-width: 700px; }
    .svc-hero__title {
      font-family: 'Advercase', var(--font-serif);
      font-size: clamp(38px, 5vw, 62px); font-weight: 400;
      color: var(--white); line-height: 1.08; margin-bottom: 22px;
    }
    .svc-hero__subtitle {
      font-size: 17px; color: rgba(255,255,255,0.7);
      line-height: 1.75; max-width: 600px; margin-bottom: 32px;
    }

    /* Breadcrumb */
    .svc-breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 12.5px; margin-bottom: 22px; }
    .svc-breadcrumb li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.45); }
    .svc-breadcrumb a { color: rgba(255,255,255,0.55); }
    .svc-breadcrumb a:hover { color: var(--gold); }
    .svc-breadcrumb li:not(:last-child)::after { content: '/'; color: rgba(255,255,255,0.25); }
    .svc-breadcrumb li:last-child { color: var(--gold); }

    /* Intro / definição */
    .svc-intro__lead {
      font-family: var(--font-display);
      font-size: clamp(21px, 2.4vw, 27px);
      line-height: 1.5;
      color: var(--dark-text);
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }
    .svc-intro__lead strong { color: var(--gold); font-weight: 400; }
    .svc-intro__body { max-width: 760px; margin: 28px auto 0; color: var(--gray-text); font-size: 16px; line-height: 1.8; text-align: center; }

    /* Grid genérico de cards */
    .svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
    .svc-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px 26px;
      box-shadow: var(--shadow);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .svc-card__icon { color: var(--gold); margin-bottom: 16px; }
    .svc-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 20px; color: var(--dark-text); margin-bottom: 10px; line-height: 1.2; }
    .svc-card p { font-size: 14.5px; color: var(--gray-text); line-height: 1.7; }

    /* Passos */
    .svc-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; counter-reset: step; }
    .svc-step { position: relative; padding-top: 20px; }
    .svc-step__num {
      font-family: var(--font-display); font-size: 46px; color: var(--gold);
      line-height: 1; margin-bottom: 14px; opacity: 0.85;
    }
    .svc-step h3 { font-family: var(--font-display); font-weight: 400; font-size: 21px; color: var(--white); margin-bottom: 10px; }
    .svc-step p { color: rgba(255,255,255,0.66); font-size: 15px; line-height: 1.7; }
    .svc-steps-section { background: var(--petrol); }
    .svc-steps-section .section__title { color: var(--white); }
    .svc-steps-section .section__eyebrow { color: var(--gold); }

    /* Lista "quando procurar" */
    .svc-when__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 14px 40px; max-width: 940px; margin: 0 auto; }
    .svc-when__item { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
    .svc-when__check { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
    .svc-when__item p { font-size: 15.5px; color: var(--dark-text); line-height: 1.6; }

    /* Bloco de credibilidade */
    .svc-cred { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
    .svc-cred__img img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; }
    .svc-cred__body .section__title { text-align: left; }
    .svc-cred__list { margin: 24px 0 30px; display: grid; gap: 12px; }
    .svc-cred__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: var(--dark-text); }
    .svc-cred__list svg { flex-shrink: 0; color: var(--gold); margin-top: 3px; }

    @media (max-width: 860px) {
      .svc-cred { grid-template-columns: 1fr; gap: 32px; }
    }

/* ==========================================
   BLINDAGEM CONTRA O ELEMENTOR KIT GLOBAL
   (.elementor-kit-6 a { color: ... } tem mais
   especificidade que .nav__link/.btn sozinhos.
   Usamos o mesmo prefixo para vencer com folga.)
   ========================================== */
.elementor-kit-6 a.nav__link { color: rgba(255, 255, 255, 0.78) !important; }
.elementor-kit-6 a.nav__link:hover,
.elementor-kit-6 a.nav__link.nav__link--active { color: var(--white) !important; }

.elementor-kit-6 a.btn--ghost-glass { color: var(--white) !important; }
.elementor-kit-6 a.btn--outline-light { color: var(--white) !important; }
.elementor-kit-6 a.btn--dark { color: var(--white) !important; }
.elementor-kit-6 a.btn--light { color: var(--petrol) !important; }
.elementor-kit-6 a.btn--cta-arrow { color: var(--petrol) !important; }
.elementor-kit-6 a.area-slide__link { color: var(--gold) !important; }

.elementor-kit-6 button.accordion__trigger,
.elementor-kit-6 .accordion__item.active button.accordion__trigger {
  background: none !important;
  color: var(--dark-text) !important;
}
.elementor-kit-6 button.accordion__trigger:hover,
.elementor-kit-6 button.accordion__trigger:focus {
  color: var(--gold) !important;
}
