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

:root {
  --gold: #B9A277;
  --gold-soft: #d8c49d;
  --gold-deep: #8e7754;
  --dark: #1a1a1a;
  --dark-2: #111111;
  --dark-3: #202020;
  --light: #E8E8E8;
  --white: #ffffff;
  --gray: #B5B5B5;
  --gray-2: #8d8d8d;
  --font: 'Alexandria', sans-serif;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.16);
  --shadow-strong: 0 32px 80px rgba(0, 0, 0, 0.24);
  --radius-lg: 28px;
  --radius-md: 20px;
  --header-height: 82px;
  --header-clearance: 118px;
}

html, body {
  height: 100%;
  overflow: hidden;
  font-family: var(--font);
  color: var(--dark);
  background: var(--dark);
}

@supports (height: 100dvh) {
  html, body {
    height: 100dvh;
  }
}

body {
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(185, 162, 119, 0.10), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.05), transparent 22%),
    radial-gradient(circle at 70% 80%, rgba(185, 162, 119, 0.06), transparent 24%);
  z-index: 0;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ================================
   HEADER
   ================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(12, 12, 12, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(185, 162, 119, 0.12);
  transition: background 0.3s, border-color 0.3s;
}

.header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  height: 20px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.28), transparent);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 30px;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 45px;
  width: auto;
}

.nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.nav a {
  font-size: 14px;
  font-weight: 400;
  color: var(--light);
  letter-spacing: 0.5px;
  padding: 8px 2px;
  position: relative;
  transition: color 0.3s;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav a:hover,
.nav a.active {
  color: var(--gold);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--light);
  transition: 0.3s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================
   SLIDER
   ================================ */
.slider-viewport {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

@supports (height: 100dvh) {
  .slider-viewport {
    height: 100dvh;
  }
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.slide {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100vh;
  min-height: 100vh;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
  scroll-padding-top: var(--header-clearance);
}

@supports (height: 100dvh) {
  .slide {
    height: 100dvh;
    min-height: 100dvh;
  }
}

/* Scrollbar styling */
.slide::-webkit-scrollbar {
  width: 4px;
}
.slide::-webkit-scrollbar-track {
  background: transparent;
}
.slide::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 2px;
}

/* Background layers */
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 1.2s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.55);
}

.top-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.top-progress span {
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  box-shadow: 0 0 18px rgba(185, 162, 119, 0.6);
  transition: width 0.7s cubic-bezier(0.65, 0, 0.35, 1);
}

.slide-meta {
  position: fixed;
  top: 92px;
  right: 28px;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
  transition: opacity 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

#slideIndex {
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.slide-meta-divider {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

#slideLabel {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.4px;
}

/* ================================
   SLIDE DOTS (indicator)
   ================================ */
.slide-dots {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: opacity 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

body.nav-idle .slide-meta {
  opacity: 0.18;
  background: rgba(12, 12, 12, 0.04);
  border-color: rgba(255, 255, 255, 0.03);
  box-shadow: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

body.nav-idle .slide-dots {
  opacity: 0.16;
  background: rgba(12, 12, 12, 0.03);
  border-color: rgba(255, 255, 255, 0.03);
  box-shadow: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

body.nav-idle .slide-meta:hover,
body.nav-idle .slide-meta:focus-within,
body.nav-idle .slide-dots:hover,
body.nav-idle .slide-dots:focus-within {
  opacity: 1;
  background: rgba(12, 12, 12, 0.36);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: 0.3s;
  padding: 0;
}

.dot:hover {
  transform: scale(1.1);
}

.dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

/* ================================
   NAVIGATION ARROWS
   ================================ */
.arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background: rgba(8, 8, 8, 0.36);
  border: 1px solid rgba(185, 162, 119, 0.55);
  color: var(--gold);
  font-size: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.arrow:hover {
  background: var(--gold);
  color: var(--dark);
}

.arrow-left { left: 20px; }
.arrow-right { right: 20px; }

/* ================================
   ANIMATIONS
   ================================ */
.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up { transform: translateY(40px); }
.fade-left { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }

.slide.active .fade-up { opacity: 1; transform: translateY(0); }
.slide.active .fade-left { opacity: 1; transform: translateX(0); }
.slide.active .fade-right { opacity: 1; transform: translateX(0); transition-delay: 0.2s; }

/* ================================
   SLIDE 1 — HOME
   ================================ */
.slide-home .slide-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 28px 40px 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.hero-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(185, 162, 119, 0.9);
}

.slide-home h1 {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 600;
  color: var(--light);
  line-height: 1.05;
  margin-bottom: 22px;
  max-width: 9ch;
}

.slide-home .lead {
  font-size: 18px;
  font-weight: 300;
  color: rgba(232, 232, 232, 0.9);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn-outline {
  display: inline-block;
  padding: 12px 26px;
  border: 1px solid var(--gold);
  color: var(--light);
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  letter-spacing: 0.5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-ghost {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  transition: 0.3s;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  background: rgba(185, 162, 119, 0.1);
}

.btn-ghost-light {
  color: var(--light);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.hero-card strong {
  display: block;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.hero-card span {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(232, 232, 232, 0.76);
}

.drag-hint {
  position: absolute;
  bottom: 86px;
  right: 40px;
  z-index: 2;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  letter-spacing: 0.4px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ================================
   SLIDE 2 — O ESCRITÓRIO
   ================================ */
.slide-escritorio {
  background:
    radial-gradient(circle at top left, rgba(185, 162, 119, 0.12), transparent 32%),
    linear-gradient(180deg, #f7f2e9 0%, #ece5d8 100%);
}

.slide-content-split {
  display: flex;
  width: 100%;
  height: 100%;
  padding-top: var(--header-clearance);
}

.split-text {
  flex: 1;
  padding: 60px 40px 60px 60px;
  overflow-y: auto;
}

.split-text::-webkit-scrollbar { width: 4px; }
.split-text::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.split-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.image-frame {
  position: relative;
  width: min(100%, 560px);
  padding: 18px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(185, 162, 119, 0.24);
  box-shadow: var(--shadow-strong);
}

.split-image img {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  border-radius: 22px;
}

.image-badge {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.82);
  color: var(--light);
  font-size: 13px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.image-badge-top {
  top: 34px;
  left: -16px;
}

.image-badge-bottom {
  right: -18px;
  bottom: 34px;
}

.tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.split-text h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--dark);
}

.split-text h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 8px;
  color: var(--dark);
}

.split-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: #333;
}

.section-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.section-chip-light {
  background: rgba(185, 162, 119, 0.10);
  border-color: rgba(185, 162, 119, 0.18);
  color: var(--gold-deep);
}

.valores-list {
  margin-top: 8px;
  padding-left: 0;
}

.valores-list li {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: #333;
  margin-bottom: 6px;
  padding-left: 16px;
  position: relative;
}

.valores-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ================================
   SLIDE 3 — ÁREAS DE ATUAÇÃO
   ================================ */
.slide-areas {
  color: var(--light);
}

.slide-areas .slide-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  padding: var(--header-clearance) 40px 80px;
  text-align: center;
}

.slide-areas h2 {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  margin-bottom: 12px;
}

.areas-intro {
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.area-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(185, 162, 119, 0.16);
  border-radius: 24px;
  padding: 30px 18px 24px;
  transition: 0.3s;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.area-card:hover {
  background: linear-gradient(180deg, rgba(185, 162, 119, 0.18), rgba(255, 255, 255, 0.08));
  border-color: var(--gold);
  transform: translateY(-8px);
}

.area-icon {
  margin-bottom: 16px;
  width: 78px;
  height: 78px;
  margin-inline: auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.area-icon img {
  height: 50px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

.area-card h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1.3;
}

.area-card p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #d4d4d4;
}

/* ================================
   SLIDE 4 — EQUIPE
   ================================ */
.slide-equipe {
  background:
    radial-gradient(circle at top center, rgba(185, 162, 119, 0.12), transparent 25%),
    linear-gradient(180deg, #f4efe6 0%, #ebe3d5 100%);
}

.slide-equipe .slide-content {
  max-width: 980px;
  padding: var(--header-clearance) 40px 80px;
  text-align: center;
}

.slide-equipe h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 16px;
}

.equipe-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.equipe-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.highlight-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(185, 162, 119, 0.18);
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.highlight-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--dark);
}

.highlight-card span {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 40px auto;
}

.equipe-why {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: #333;
  margin-top: 10px;
}

/* ================================
   SLIDE 5 — CONTATO
   ================================ */
.slide-contato {
  background:
    radial-gradient(circle at left top, rgba(185, 162, 119, 0.16), transparent 28%),
    linear-gradient(135deg, #0f0f0f 0%, #1b1b1b 55%, #252525 100%);
  color: var(--light);
}

.contato-split {
  padding-top: 70px;
}

.contato-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-panel,
.form-panel {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-strong);
}

.contact-panel {
  padding: 34px;
}

.contato-logo {
  width: 180px;
  margin-bottom: 24px;
}

.contato-info p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray);
}

.contato-dados {
  margin-top: 24px;
}

.contato-dados li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--light);
}

.contato-dados svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.contato-dados a {
  color: var(--gold);
  transition: 0.3s;
}

.contato-dados a:hover {
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* Formulário */
.split-form {
  flex: 1;
  padding: 60px 60px 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-panel {
  padding: 34px;
}

.split-form h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--light);
}

.form-intro {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 18px;
}

.split-form label {
  font-size: 13px;
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 6px;
  display: block;
}

.split-form input,
.split-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(185, 162, 119, 0.3);
  border-radius: 14px;
  color: var(--light);
  font-family: var(--font);
  font-size: 14px;
  transition: 0.3s;
}

.split-form input:focus,
.split-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
}

.split-form textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--dark);
  border: none;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 999px;
  letter-spacing: 0.5px;
  box-shadow: 0 16px 30px rgba(185, 162, 119, 0.18);
}

.btn-submit:hover {
  transform: translateY(-1px);
}

/* ================================
   WHATSAPP BUTTON
   ================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-btn svg {
  width: 28px;
  height: 28px;
  background: #25D366;
  border-radius: 50%;
  padding: 8px;
  box-sizing: content-box;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: transform 0.2s;
}

.whatsapp-btn:hover svg {
  transform: scale(1.08);
}

.whatsapp-text {
  background: var(--white);
  color: var(--dark);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  white-space: nowrap;
}

/* ================================
   RESPONSIVO
   ================================ */
@media (max-width: 1024px) {
  .hero-highlights,
  .equipe-highlights {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 768px) {
  :root {
    --header-height: 74px;
    --header-clearance: 106px;
  }

  .header {
    background: rgba(10, 10, 10, 0.96);
  }

  .slider-viewport {
    height: 100svh;
  }

  .slide {
    height: 100svh;
    min-height: 100svh;
    align-items: stretch;
    justify-content: flex-start;
    scroll-padding-top: 88px;
    scroll-padding-bottom: 110px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 26, 26, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 1000;
  }

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

  .nav ul {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .nav a {
    font-size: 20px;
  }

  /* Slides */
  .slide-home h1 { font-size: 30px; }
  .slide-home .lead { font-size: 16px; }
  .slide-home .slide-content {
    max-width: 100%;
    width: 100%;
    padding: calc(var(--header-clearance) + 4px) 24px 178px;
  }

  .slide-home .slide-bg {
    background-position: 72% center;
  }

  .slide-meta {
    top: auto;
    right: 20px;
    bottom: 76px;
    max-width: calc(100vw - 40px);
  }

  body.nav-idle .slide-meta {
    opacity: 0.12;
  }

  body.nav-idle .slide-dots {
    opacity: 0.12;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-highlights,
  .equipe-highlights {
    grid-template-columns: 1fr;
  }

  .drag-hint {
    display: none;
  }

  /* Split layouts go vertical */
  .slide-content-split {
    flex-direction: column;
    overflow-y: auto;
    min-height: 100%;
    padding-top: var(--header-clearance);
    padding-bottom: 116px;
  }

  .split-text {
    flex: unset;
    padding: 28px 24px 18px;
    overflow: visible;
  }

  .split-image {
    flex: unset;
    padding: 0 24px 28px;
    align-items: flex-start;
  }

  .image-frame {
    padding: 12px;
    width: 100%;
    border-radius: 24px;
  }

  .split-image img {
    max-height: 38svh;
    width: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .image-badge {
    position: static;
    margin-top: 12px;
    display: inline-block;
  }

  .split-form {
    padding: 30px 24px;
    flex: unset;
  }

  .contact-panel,
  .form-panel {
    padding: 24px;
    border-radius: 22px;
  }

  /* Areas */
  .areas-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .slide-areas .slide-content {
    width: 100%;
    padding: calc(var(--header-clearance) + 4px) 20px 182px;
  }

  .slide-equipe .slide-content {
    width: 100%;
    max-width: 100%;
    padding: calc(var(--header-clearance) + 4px) 24px 182px;
  }

  .contato-split {
    padding-top: 0;
  }

  /* Arrows */
  .arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
    top: auto;
    bottom: 22px;
    transform: none;
  }

  .arrow-left { left: 12px; }
  .arrow-right { right: 12px; }

  /* WhatsApp */
  .whatsapp-text { display: none; }
  .whatsapp-btn { bottom: 72px; right: 16px; }
  .whatsapp-btn svg {
    width: 22px;
    height: 22px;
    padding: 10px;
  }

  /* Dots */
  .slide-dots {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100vw - 104px);
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 68px;
    --header-clearance: 98px;
  }

  .header-inner {
    padding-inline: 18px;
  }

  .logo img {
    height: 38px;
  }

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

  .slide-equipe .slide-content {
    padding: 80px 24px;
  }

  .slide-meta {
    left: 18px;
    right: 18px;
    justify-content: center;
  }

  .slide-home .slide-content,
  .slide-areas .slide-content,
  .slide-equipe .slide-content {
    padding-top: calc(var(--header-clearance) + 6px);
    padding-bottom: 194px;
  }

  .slide-home .slide-bg {
    background-position: 78% center;
  }

  .split-text,
  .split-form {
    padding-left: 18px;
    padding-right: 18px;
  }

  .split-image {
    padding-left: 18px;
    padding-right: 18px;
    padding-bottom: 22px;
  }

  .split-image img {
    max-height: 30svh;
  }

  .contact-panel,
  .form-panel {
    padding: 20px;
  }

  .areas-intro,
  .equipe-intro,
  .equipe-why,
  .split-text p,
  .valores-list li,
  .contato-info p {
    font-size: 15px;
    line-height: 1.65;
  }
}
