/* ============================================================
   INSTITUTO BEEYOND — DESIGN SYSTEM
   Brand Manual Compliant
   ============================================================ */

/* ---- IMPORT FONTS ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap');

/* ---- CSS VARIABLES — BRAND PALETTE ---- */
:root {
  /* Colors */
  --off-white:    #E3E2E0;
  --beige:        #E6C4AB;
  --copper:       #CF9773;
  --gold:         #AD8146;
  --dark-green:   #223527;
  --green-mid:    #2d4533;
  --green-light:  #3a5c43;
  --white:        #FFFFFF;
  --black:        #0a0a0a;
  --text-dark:    #1a1a1a;
  --text-mid:     #4a4a4a;
  --text-light:   #7a7a7a;
  --overlay:      rgba(34,53,39,0.82);

  /* Typography */
  --font-primary:   'Montserrat', sans-serif;
  --font-display:   'Cormorant Garamond', serif;

  /* Spacing */
  --section-py:     100px;
  --section-py-sm:  60px;
  --container:      1240px;
  --container-sm:   900px;

  /* Border radius */
  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  48px;

  /* Transitions */
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.13);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 24px rgba(173,129,70,0.25);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-weight: 300;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container--sm {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */

.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
}

.heading-lg {
  font-family: var(--font-primary);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.heading-md {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.heading-sm {
  font-family: var(--font-primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.body-lg {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 300;
  line-height: 1.75;
}

.body-md {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.7;
}

.body-sm {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.65;
}

/* Color modifiers */
.text-gold    { color: var(--gold); }
.text-copper  { color: var(--copper); }
.text-green   { color: var(--dark-green); }
.text-white   { color: var(--white); }
.text-beige   { color: var(--beige); }
.text-offwhite{ color: var(--off-white); }
.text-mid     { color: var(--text-mid); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: var(--radius-xl);
  font-family: var(--font-primary);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  background: #c5963e;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(173,129,70,0.38);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--dark-green);
  color: var(--gold);
  border: 1.5px solid var(--gold);
}

.btn--dark:hover {
  background: var(--gold);
  color: var(--dark-green);
  transform: translateY(-2px);
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

/* Quando o menu mobile está aberto, eleva o z-index do nav inteiro */
.nav.nav--menu-open {
  z-index: 9998;
}

.nav--scrolled {
  background: rgba(34,53,39,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

/* Logo PNG no nav */
.nav__logo-img {
  height: 96px;
  width: auto;
  display: block;
  opacity: 0;
  position: absolute;
  transition: opacity var(--transition);
}

.nav__logo-img--light {
  opacity: 1;
  position: relative;
}

.nav:not(.nav--scrolled) .nav__logo-img--light {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.nav:not(.nav--scrolled) .nav__logo-img--dark {
  opacity: 1;
  position: relative;
}

.nav--scrolled .nav__logo-img--dark {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

.nav--scrolled .nav__logo-img--light {
  opacity: 1;
  position: relative;
}

/* Logo abelha — só aparece no mobile, sempre oculta no desktop */
.nav__logo-img--mobile {
  display: none;
  opacity: 0;
  position: absolute;
  pointer-events: none;
}

/* Logo header — única logo usada no desktop e mobile */
.nav__logo-img--header {
  height: 60px;
  width: auto;
  display: block;
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

/* Wrapper para empilhar as versões */
.nav__logo-imgs {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
}

/* Mantém compatibilidade com o SVG inline (fallback) */
.nav__logo-icon {
  width: 44px;
  height: 44px;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.nav__logo-sub {
  font-family: var(--font-primary);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--off-white);
  opacity: 0.75;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
  padding: 6px 10px;
  border-radius: 100px;
  opacity: 0.8;
  transition: var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  opacity: 1;
  color: var(--gold);
  background: rgba(173,129,70,0.1);
}

.nav__cta {
  flex-shrink: 0;
}

/* Itens exclusivos do menu mobile — ocultos no desktop */
.nav__menu-logo,
.nav__menu-cta {
  display: none;
}

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

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--off-white);
  transition: var(--transition);
  transform-origin: center;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark-green);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(34,53,39,0.50) 0%,
    rgba(34,53,39,0.50) 50%,
    rgba(34,53,39,0.50) 100%
  );
  z-index: 1;
}

/* Hexagon pattern overlay */
.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'%3E%3Cpolygon points='40,2 78,22 78,62 40,82 2,62 2,22' fill='none' stroke='rgba(173,129,70,0.07)' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 32px 80px;
  max-width: 900px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 28px;
  text-shadow: 0 0 16px rgba(34,53,39,1), 0 0 40px rgba(34,53,39,0.9), 0 0 60px rgba(34,53,39,0.7);
}

.hero__label::before,
.hero__label::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(34,53,39,1), 0 4px 50px rgba(34,53,39,1), 0 0 80px rgba(34,53,39,0.9), 0 0 120px rgba(34,53,39,0.6);
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
  text-shadow: 0 2px 20px rgba(34,53,39,1), 0 4px 50px rgba(34,53,39,1), 0 0 80px rgba(34,53,39,0.9);
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(227,226,224,0.95);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.75;
  text-shadow: 0 1px 14px rgba(34,53,39,1), 0 2px 40px rgba(34,53,39,0.9), 0 0 60px rgba(34,53,39,0.7);
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(227,226,224,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ============================================================
   CREDIBILITY BAR
   ============================================================ */

.cred-bar {
  background: var(--dark-green);
  border-top: 1px solid rgba(173,129,70,0.2);
  border-bottom: 1px solid rgba(173,129,70,0.2);
  padding: 28px 0;
}

.cred-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 160px;
}

.cred-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(173,129,70,0.12);
  border: 1px solid rgba(173,129,70,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cred-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
}

.cred-item__number {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.cred-item__text {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(227,226,224,0.7);
}

.cred-bar__divider {
  width: 1px;
  height: 40px;
  background: rgba(173,129,70,0.2);
  flex-shrink: 0;
}

/* ============================================================
   SECTION STRUCTURE
   ============================================================ */

.section {
  padding: var(--section-py) 0;
}

.section--dark {
  background: var(--dark-green);
}

.section--green-mid {
  background: var(--green-mid);
}

.section--light {
  background: var(--off-white);
}

.section--beige {
  background: #f0ebe5;
}

.section__header {
  margin-bottom: 64px;
}

.section__eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section__eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section__subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  font-weight: 300;
  line-height: 1.75;
  max-width: 560px;
  opacity: 0.8;
}

.text-center .section__subtitle {
  margin: 0 auto;
}

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

/* ============================================================
   PILLAR CARDS
   ============================================================ */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 52px;
}

.pillar-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(173,129,70,0.12);
  padding: 48px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--copper));
  transform: scaleX(0);
  transition: var(--transition);
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-card:hover {
  background: rgba(173,129,70,0.06);
}

.pillar-card__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(173,129,70,0.15);
  line-height: 1;
  margin-bottom: 20px;
}

.pillar-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(173,129,70,0.1);
  border-radius: 12px;
}

.pillar-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
}

.pillar-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--off-white);
  margin-bottom: 14px;
}

.pillar-card__text {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(227,226,224,0.65);
  line-height: 1.7;
}

/* ============================================================
   PROCEDURE GRID
   ============================================================ */

.procedure-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(173,129,70,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.procedure-card {
  background: var(--off-white);
  padding: 36px 28px;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.procedure-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark-green);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}

.procedure-card:hover::after {
  opacity: 1;
}

.procedure-card > * {
  position: relative;
  z-index: 1;
}

.procedure-card__hex {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.procedure-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--dark-green);
  margin-bottom: 10px;
  transition: var(--transition);
}

.procedure-card:hover .procedure-card__title {
  color: var(--gold);
}

.procedure-card__desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
  transition: var(--transition);
}

.procedure-card:hover .procedure-card__desc {
  color: rgba(227,226,224,0.7);
}

.procedure-card__tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.procedure-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.procedure-card:hover .procedure-card__img {
  transform: scale(1.04);
  filter: brightness(0.85);
}

/* --- Proc card full image (estetica page) --- */
.proc-card-full__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.proc-card-full:hover .proc-card-full__img {
  transform: scale(1.03);
  filter: brightness(0.9);
}

/* ============================================================
   BISA SERVICES
   ============================================================ */

.bisa-section {
  position: relative;
  overflow: hidden;
}

.bisa-section__bg-text {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 18vw;
  font-weight: 400;
  color: rgba(173,129,70,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.bisa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.bisa-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bisa-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: default;
  border: 1px solid transparent;
}

.bisa-item:hover {
  background: rgba(173,129,70,0.06);
  border-color: rgba(173,129,70,0.15);
}

.bisa-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(173,129,70,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bisa-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
}

.bisa-item__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--off-white);
  margin-bottom: 6px;
}

.bisa-item__text {
  font-size: 0.88rem;
  color: rgba(227,226,224,0.6);
  line-height: 1.65;
}

/* ============================================================
   EXPERIENCE GALLERY
   ============================================================ */

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

.exp-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--green-mid);
}

.exp-card--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.exp-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.exp-card:hover .exp-card__img {
  transform: scale(1.04);
}

.exp-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(34,53,39,0.9) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.exp-card:hover .exp-card__overlay {
  opacity: 1;
}

.exp-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

.exp-card:hover .exp-card__label {
  opacity: 1;
  transform: translateY(0);
}

.exp-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 4px;
}

.exp-card__sub {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Placeholder for exp cards without images */
.exp-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-mid), var(--dark-green));
}

.exp-card__placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.25;
  stroke: var(--gold);
  fill: none;
}

/* ============================================================
   TEAM SECTION
   ============================================================ */

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

.team-card {
  text-align: center;
}

.team-card__photo {
  position: relative;
  margin-bottom: 20px;
}

.team-card__img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--green-mid);
  position: relative;
}

.team-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-card:hover .team-card__img-wrap img {
  transform: scale(1.05);
}

.team-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--green-mid) 0%, var(--dark-green) 100%);
}

.team-card__img-placeholder svg {
  width: 56px;
  height: 56px;
  stroke: rgba(173,129,70,0.35);
  fill: none;
}

.team-card__badge {
  position: absolute;
  bottom: -10px;
  right: 10px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 500;
}

.team-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark-green);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(173,129,70,0.1);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 16px;
  left: 24px;
  line-height: 1;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-card__stars svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.testimonial-card__text {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--beige);
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-green);
}

.testimonial-card__source {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.08em;
}

/* ============================================================
   CTA FINAL SECTION
   ============================================================ */

.cta-final {
  background: var(--dark-green);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'%3E%3Cpolygon points='40,2 78,22 78,62 40,82 2,62 2,22' fill='none' stroke='rgba(173,129,70,0.06)' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.cta-final__content {
  position: relative;
  z-index: 1;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-final__title em {
  font-style: italic;
  color: var(--gold);
}

.cta-final__sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(227,226,224,0.7);
  max-width: 480px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: #131e15;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(173,129,70,0.15);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer__brand {
  max-width: 280px;
}

.footer__logo {
  margin-bottom: 20px;
}

.footer__logo img {
  height: 100px;
  width: auto;
  display: block;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(227,226,224,0.5);
  line-height: 1.7;
  margin-bottom: 28px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social-btn {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(173,129,70,0.1);
  border: 1px solid rgba(173,129,70,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer__social-btn svg {
  width: 16px;
  height: 16px;
  stroke: var(--copper);
  fill: none;
  transition: var(--transition);
}

.footer__social-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer__social-btn:hover svg {
  stroke: var(--white);
}

.footer__col-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 0.85rem;
  color: rgba(227,226,224,0.55);
  transition: var(--transition);
  font-weight: 300;
}

.footer__link:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-text {
  font-size: 0.83rem;
  color: rgba(227,226,224,0.55);
  line-height: 1.5;
}

.footer__bottom {
  border-top: 1px solid rgba(173,129,70,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 0.75rem;
  color: rgba(227,226,224,0.35);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-link {
  font-size: 0.75rem;
  color: rgba(227,226,224,0.35);
  transition: var(--transition);
}

.footer__bottom-link:hover {
  color: var(--gold);
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */

.whatsapp-float {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
}

.whatsapp-float__btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
}

.whatsapp-float__btn svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.whatsapp-float__label {
  background: var(--dark-green);
  color: var(--off-white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float__label {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(-24px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(24px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.d-flex           { display: flex; }
.align-center     { align-items: center; }
.justify-between  { justify-content: space-between; }
.justify-center   { justify-content: center; }
.gap-8            { gap: 8px; }
.gap-16           { gap: 16px; }
.gap-24           { gap: 24px; }
.gap-32           { gap: 32px; }
.gap-48           { gap: 48px; }
.mt-8             { margin-top: 8px; }
.mt-16            { margin-top: 16px; }
.mt-24            { margin-top: 24px; }
.mt-32            { margin-top: 32px; }
.mt-48            { margin-top: 48px; }
.mt-64            { margin-top: 64px; }
.mb-8             { margin-bottom: 8px; }
.mb-16            { margin-bottom: 16px; }
.mb-24            { margin-bottom: 24px; }
.mb-32            { margin-bottom: 32px; }
.mb-48            { margin-bottom: 48px; }
.mb-64            { margin-bottom: 64px; }

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
}

.divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* Hexagon SVG icon helper */
.hex-icon {
  display: inline-flex;
}

/* Page header (inner pages) */
.page-hero {
  padding: 160px 0 80px;
  background: var(--dark-green);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92' viewBox='0 0 80 92'%3E%3Cpolygon points='40,2 78,22 78,62 40,82 2,62 2,22' fill='none' stroke='rgba(173,129,70,0.07)' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero__title em {
  font-style: italic;
  color: var(--gold);
}

.page-hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(227,226,224,0.72);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(227,226,224,0.45);
  margin-bottom: 28px;
  justify-content: center;
}

.breadcrumb a {
  color: rgba(227,226,224,0.45);
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb__sep {
  opacity: 0.4;
}

/* Highlighted feature box */
.feature-box {
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  background: rgba(173,129,70,0.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 32px 0;
}

.feature-box p {
  font-size: 1rem;
  font-style: italic;
  color: var(--off-white);
  line-height: 1.7;
}

/* Step list */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(173,129,70,0.1);
  position: relative;
}

.step-item:last-child {
  border-bottom: none;
}

.step-item__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: rgba(173,129,70,0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}

.step-item__content { flex: 1; }

.step-item__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--off-white);
  margin-bottom: 8px;
}

.step-item__text {
  font-size: 0.9rem;
  color: rgba(227,226,224,0.6);
  line-height: 1.7;
}

/* Tag chips */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  background: rgba(173,129,70,0.12);
  color: var(--gold);
  border: 1px solid rgba(173,129,70,0.2);
}

/* Info list */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-list__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(227,226,224,0.7);
}

.info-list__item::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* ============================================================
   INNER PAGE GRIDS — bisa, metodo, experiencia, equipe
   ============================================================ */

/* bisa.html */
.bisa-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.bisa-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.bisa-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* metodo.html */
.metodo-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.metodo-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

/* experiencia.html */
.exp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

/* equipe.html */
.equipe-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */

@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

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

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

@media (max-width: 900px) {
  .exp-grid {
    grid-template-columns: 1fr 1fr;
  }

  .exp-card--wide {
    grid-column: span 2;
  }

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

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

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

  .container, .container--sm {
    padding: 0 20px;
  }

  /* NAV MOBILE */
  .nav__logo-img--dark,
  .nav__logo-img--light {
    display: none !important;
  }

  .nav__logo-img--mobile {
    display: none !important;
  }

  .nav__logo-img--header {
    height: 48px;
  }

  .nav__logo-imgs {
    height: 48px;
  }

  .nav__menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background: #223527 !important;
    background-color: #223527 !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 9999;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 70px 20px 40px;
    box-sizing: border-box;
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__menu-logo {
    display: block;
    margin-bottom: 4px;
    flex-shrink: 0;
  }

  .nav__menu-logo img {
    height: 80px !important;
    width: auto;
  }

  .nav__menu-cta {
    display: block;
    margin-top: 12px;
    flex-shrink: 0;
  }

  .nav__menu-cta .btn {
    font-size: 0.82rem;
    padding: 12px 28px;
  }

  .nav__link {
    font-size: 0.95rem;
    padding: 10px 28px;
    letter-spacing: 0.18em;
  }

  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
    position: relative;
    z-index: 10000;
  }

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

  .nav__toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

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

  /* HERO */
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .btn {
    justify-content: center;
  }

  /* CRED BAR */
  .cred-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .cred-bar__divider {
    display: none;
  }

  /* PILLARS */
  .pillars {
    grid-template-columns: 1fr;
  }

  /* PROCEDURE GRID */
  .procedure-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* TEAM GRID */
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* EXP GRID */
  .exp-grid {
    grid-template-columns: 1fr;
  }

  .exp-card--wide {
    grid-column: span 1;
  }

  /* TESTIMONIALS */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* FOOTER */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__brand {
    max-width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  /* WHATSAPP */
  .whatsapp-float {
    bottom: 24px;
    right: 20px;
  }

  .whatsapp-float__label {
    display: none;
  }

  /* INNER PAGE GRIDS — mobile */
  .bisa-split-grid,
  .metodo-split-grid,
  .exp-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* HOME — Seção O Método: reduz espaço no mobile */
  .metodo-home-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  #metodo.section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .bisa-cards-grid,
  .metodo-cards-grid,
  .equipe-values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bisa-icon-grid,
  .metodo-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

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

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

  .hero__title {
    font-size: 2.4rem;
  }

  /* INNER PAGE GRIDS — extra small */
  .bisa-icon-grid,
  .metodo-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}

/* Menu mobile — telas curtas (ex: iPhone SE, landscape) */
@media (max-width: 768px) and (max-height: 700px) {
  .nav__menu {
    justify-content: flex-start;
    padding-top: 60px;
  }

  .nav__menu-logo img {
    height: 56px !important;
  }

  .nav__link {
    font-size: 0.85rem;
    padding: 8px 24px;
  }

  .nav__menu-logo {
    margin-bottom: 0;
  }

  .nav__menu-cta {
    margin-top: 8px;
  }
}

/* ============================================================
   PERFORMANCE OPTIMIZATIONS
   ============================================================ */

/* content-visibility for below-fold sections — skips rendering until near viewport */
#metodo,
#estetica,
#bisa,
#experiencia,
#equipe,
#resultados,
.cta-final,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

/* Optimize image rendering — removed content-visibility:auto from img
   (causes blank/invisible images on mobile due to containment) */

/* Reduce paint for fixed/absolute elements */
.nav {
  will-change: transform;
}

.whatsapp-float__btn {
  will-change: transform;
}
