/* ═══════════════════════════════════════════════════
   KÊNIA RORIZ — style.css v3.0
   Mobile-first · Internacional · Sem conflitos
═══════════════════════════════════════════════════ */

:root {
  --gold:        #b8964c;
  --gold-light:  #d4b06a;
  --gold-pale:   #f0e8d6;
  --off-white:   #f7f5f1;
  --white:       #ffffff;
  --text-dark:   #3a3530;
  --text-mid:    #6b6259;
  --text-light:  #9e9690;
  --border:      rgba(184,150,76,0.18);
  --max-width:   1160px;
  --transition:  0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-mid);
  background: var(--off-white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; padding: 0; }

h1, h2, h3 {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 200 !important;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(48px, 7vw, 88px); }
h2 { font-size: clamp(32px, 4vw, 52px); }
h3 { font-size: clamp(20px, 2.2vw, 28px); font-weight: 300 !important; letter-spacing: -0.01em; }
p { max-width: 54ch; }

.label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section { padding: clamp(64px, 8vw, 110px) 0; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split.reverse .split-image { order: -1; }
.split-text h2 { margin-bottom: 20px; }
.split-text p + p { margin-top: 14px; }
.split-text .btn { margin-top: 32px; }
.split-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.section-header.centered {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.btn {
  display: inline-block;
  font-family: 'Outfit', Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: 2px;
  transition: var(--transition);
  text-decoration: none !important;
}
.btn-primary { background: var(--gold); color: var(--white) !important; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost { border: 1px solid rgba(184,150,76,0.8); color: var(--gold-light) !important; }
.btn-ghost:hover { background: rgba(184,150,76,0.15); border-color: var(--gold-light); }

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 60px);
  background: transparent;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background: rgba(247,245,241,0.96);
  padding-top: 12px;
  padding-bottom: 12px;
  box-shadow: 0 1px 20px rgba(58,53,48,0.07);
  backdrop-filter: blur(8px);
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo {
  height: 48px !important;
  width: auto !important;
  max-width: 200px !important;
  max-height: 48px !important;
  object-fit: contain;
  display: block;
}
.nav { display: flex; align-items: center; gap: 24px; flex-shrink: 0; }
.nav a {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold) !important;
  text-decoration: none !important;
  font-weight: 500;
  transition: color var(--transition);
}
.nav a:hover { color: var(--gold-light) !important; }
.lang-switcher { display: flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: 0.1em; margin-left: 8px; }
.lang-switcher span { color: rgba(184,150,76,0.3); }
.lang { color: rgba(184,150,76,0.6) !important; transition: color var(--transition); text-decoration: none !important; }
.lang.active { color: var(--gold) !important; font-weight: 500; }
.lang:hover { color: var(--gold) !important; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; z-index: 200; }
.menu-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--gold); transition: var(--transition); transform-origin: center;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  background: url('images/hero.png') center center / cover no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(20px, 6vw, 80px) clamp(60px, 8vw, 100px);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(20,15,10,0.82) 0%,
    rgba(20,15,10,0.20) 28%,
    rgba(20,15,10,0.55) 68%,
    rgba(20,15,10,0.88) 100%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 680px; }
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 14px; max-width: none; font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,0.55);
}
.hero-name {
  font-family: 'Outfit', 'Helvetica Neue', Arial, sans-serif !important;
  font-weight: 300 !important;
  font-style: normal !important;
  font-size: clamp(44px, 6.5vw, 80px) !important;
  letter-spacing: -0.02em;
  color: var(--white) !important;
  line-height: 1;
  margin-bottom: 20px;
}
.hero-tagline {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
  max-width: none;
  line-height: 1.6;
}
.hero-tagline span { color: rgba(255,255,255,0.45); font-size: 0.9em; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-scroll-hint { display: none; }

.section-sobre { background: var(--white); }
.section-metodo { background: var(--off-white); }
.section-atuacao { background: var(--white); }
.section-galeria { background: var(--off-white); }
.section-mentoria { background: var(--off-white); }
.section-depoimentos { background: var(--white); }

/* PILLARS */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
.pillar-img { aspect-ratio: 3/4; overflow: hidden; margin-bottom: 18px; border-radius: 2px; }
.pillar-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.pillar:hover .pillar-img img { transform: scale(1.03); }
.pillar h3 { margin-bottom: 8px; color: var(--text-dark); }
.pillar p { font-size: 14px; color: var(--text-light); line-height: 1.6; max-width: 30ch; }

/* CARROSSEL */
.carousel-wrapper {
  position: relative; display: flex; align-items: center;
  padding: 0 clamp(12px, 3vw, 48px);
}
.carousel-viewport { flex: 1; overflow: hidden; padding: 4px 0 8px; }
.carousel-track {
  display: flex; gap: 16px;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.section-galeria .carousel-slide {
  flex: 0 0 calc((100% - 32px) / 3);
  aspect-ratio: 3/4; overflow: hidden; border-radius: 2px;
}
.section-galeria .carousel-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.section-galeria .carousel-slide:hover img { transform: scale(1.04); }
.testimonial-slide { flex: 0 0 100%; }

blockquote { text-align: center; padding: clamp(32px,4vw,60px) clamp(20px,8vw,120px); }
blockquote p {
  font-family: 'Cormorant Garamond', Georgia, serif !important;
  font-size: clamp(22px, 2.8vw, 36px) !important;
  font-weight: 400 !important;
  font-style: italic !important;
  letter-spacing: 0;
  color: var(--text-dark) !important;
  line-height: 1.5;
  margin: 0 auto 20px; max-width: 60ch;
}
blockquote cite { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-style: normal; }

.carousel-btn {
  flex-shrink: 0; width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--gold);
  border: 1px solid var(--border) !important;
  border-radius: 50%; background: var(--white);
  transition: var(--transition); z-index: 2; cursor: pointer;
}
.carousel-btn:hover { background: var(--gold); color: var(--white); border-color: var(--gold) !important; }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-pale); border: 1px solid var(--gold);
  transition: var(--transition); padding: 0; cursor: pointer;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* CONTATO */
.section-contato { background: var(--text-dark) !important; padding: clamp(64px,8vw,110px) 0; }
.section-contato .label { color: var(--gold-light) !important; }
.section-contato h2 { color: var(--white) !important; }

.social-links {
  display: flex; justify-content: center;
  gap: clamp(32px, 5vw, 72px); margin-top: 48px; flex-wrap: wrap;
}
.social-item { display: flex; flex-direction: column; align-items: center; gap: 10px; transition: var(--transition); text-decoration: none !important; }
.icon-svg {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(184,150,76,0.35);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); flex-shrink: 0;
}
.icon-svg svg { width: 18px; height: 18px; display: block; }
.social-item span { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); transition: color var(--transition); font-weight: 300; }
.social-item:hover .icon-svg { background: rgba(184,150,76,0.12); border-color: var(--gold); }
.social-item:hover span { color: var(--gold-light); }

/* FOOTER */
.footer { text-align: center; padding: 36px 20px; background: var(--text-dark); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-logo { height: 28px; width: auto; object-fit: contain; margin: 0 auto 14px; display: block; }
.footer-copy { font-size: 12px; color: var(--text-light); letter-spacing: 0.08em; max-width: none; }
.footer-credit { font-size: 11px; color: rgba(158,150,144,0.5); margin-top: 6px; max-width: none; }
.footer-credit a { color: var(--gold); }
.footer-credit a:hover { text-decoration: underline; }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse .split-image { order: 0; }
  .split-image { max-width: 460px; margin: 0 auto; width: 100%; }
  .split-image img { aspect-ratio: auto; max-height: none; width: 100%; height: auto; object-fit: contain; }
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .pillar p { max-width: 100%; }
  .nav { display: none; }
  .menu-toggle { display: flex; }
}

@media (max-width: 640px) {

  .pillars { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .section-galeria .carousel-slide { flex: 0 0 calc(100% - 8px); }
  blockquote { padding: 28px 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .social-links { gap: 28px; }
}

@media (max-width: 900px) {
  .nav {
    position: fixed; inset: 0;
    background: rgba(247,245,241,0.98);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 28px; z-index: 150; opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease; backdrop-filter: blur(10px);
    display: none;
  }
  .nav.open { display: flex; opacity: 1; pointer-events: all; }
  .nav a { font-size: 15px !important; letter-spacing: 0.15em; }
  .lang-switcher { margin-left: 0; margin-top: 12px; font-size: 13px; gap: 10px; }
}

.logo-dark { display: none !important; }
.logo-light { display: block !important; }
.header.scrolled .logo-light { display: none !important; }
.header.scrolled .logo-dark { display: block !important; }
