/* ═══════════════════════════════════════════
   KAMILA LARA — CSS
   Layout idêntico ao kamilalara.com.br
   Fontes: Lato · Montserrat · DM Sans
   Paleta: Marrom #4A342A / Bege #D8C2A8 / Off-white #F5F1EC
═══════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --brown-deep:   #4A342A;
  --brown-coffee: #5A4632;
  --beige-warm:   #D8C2A8;
  --off-white:    #F5F1EC;
  --white:        #FFFFFF;
  --gray-text:    #6B6B6B;
  --gray-light:   #F0EEEB;

  --font-body:  'DM Sans', sans-serif;
  --font-main:  'Lato', sans-serif;
  --font-btn:   'Montserrat', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: var(--site-header-h, 152px);
}
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: #1d1e20;
  background: var(--white);
  overflow-x: hidden;
  padding-top: var(--site-header-h, 152px);
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── Utility ── */
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.body       { font-family: var(--font-main); font-size: 18px; font-weight: 400; line-height: 1.7; }
.body-small { font-family: var(--font-main); font-size: 14px; font-weight: 500; line-height: 1.6; }

/* ── Button ── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-btn);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  background: rgba(74, 52, 42, 0.83);
  padding: 14px 32px;
  border-radius: 100px;
  transition: background .2s, transform .2s;
  cursor: pointer;
}
.btn-primary:hover  { background: var(--brown-deep); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary--full  { width: 100%; text-align: center; }

.hero .btn-primary {
  background: #D8C2A8;
  color: var(--brown-deep);
}
.hero .btn-primary:hover {
  background: #c8ae94;
  color: var(--brown-deep);
}

/* ═══════════════════════════════════════════
   HEADER
═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 0 0;
  border-bottom: 1px solid transparent;
  transition: transform .35s ease, border-color .3s, box-shadow .3s;
}

.site-header.header--hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(74,52,42,.1);
  border-color: rgba(74,52,42,.08);
}

.site-header__logo {
  display: block;
  margin-bottom: 8px;
}

.site-header__logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}

.site-header__nav ul {
  display: flex;
  gap: 40px;
  padding: 10px 0;
}

.site-header__nav a {
  font-family: var(--font-btn);
  font-size: 16px;
  font-weight: 700;
  color: var(--brown-deep);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}

.site-header__nav a:hover,
.site-header__nav a.active {
  border-bottom-color: var(--brown-deep);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  background: #1f1510;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 24, 18, 0.72);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 80px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero__content h1 {
  font-family: var(--font-main);
  font-size: 54px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.5px;
}

.hero__content .body {
  color: #b8c0cc;
  font-size: 18px;
}

/* ═══════════════════════════════════════════
   MEUS SERVIÇOS
═══════════════════════════════════════════ */
.services {
  padding: 80px 0;
  background: var(--white);
}

.services__header {
  text-align: center;
  margin-bottom: 72px;
}

.services__header h2 {
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 12px;
}

.services__header .body {
  color: var(--gray-text);
  font-size: 18px;
}

/* Service Row */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(74,52,42,.08);
}

.service-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.service-row__text h3 {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 600;
  color: var(--brown-deep);
  margin-bottom: 20px;
}

.service-row__text .body {
  color: var(--gray-text);
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

.service-row__bullets {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-row__bullets li {
  font-family: var(--font-main);
  font-size: 15px;
  color: #555;
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.service-row__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brown-deep);
}

.service-row__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.service-row__media .btn-primary {
  width: 100%;
  text-align: center;
}

/* Service image placeholders */
.service-row__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.service-row__img--psico {
  background-image: url('images/imagem-1.png');
}

.service-row__img--palestras {
  background-image: url('images/imagem-2.jpg');
}

.service-row__img--nr1 {
  background-image: url('images/imagem-3.jpg');
}

/* ═══════════════════════════════════════════
   BANNER — TRANSFORMANDO CARREIRAS
═══════════════════════════════════════════ */
.banner-transformando {
  background: var(--off-white);
  padding: 80px 0;
  text-align: center;
}

.banner-transformando h2 {
  font-family: var(--font-btn);
  font-size: 48px;
  font-weight: 700;
  color: var(--brown-deep);
  line-height: 1.2;
  margin-bottom: 16px;
}

.banner-transformando__divider {
  width: 56px;
  height: 3px;
  background: var(--brown-deep);
  margin: 0 auto 28px;
}

.banner-transformando .body {
  color: var(--brown-coffee);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════
   QUOTE SECTION + WAVE
═══════════════════════════════════════════ */
.quote-section {
  position: relative;
  background: var(--off-white);
  padding: 80px 0 160px;
  text-align: center;
  overflow: hidden;
}

.quote-section__text {
  position: relative;
  z-index: 2;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(32px, 4vw, 52px);
  color: var(--brown-deep);
  font-weight: 400;
  line-height: 1.3;
}

.wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: hidden;
  z-index: 1;
}

.wave-container .wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-repeat: repeat-x;
  background-size: 50% 100%;
  background-position: 0 bottom;
}

.wave-container .wave:nth-child(1) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%234A342A' fill-opacity='0.15' d='M0,60 C240,120 480,0 720,60 C960,120 1200,0 1440,60 L1440,120 L0,120 Z'/%3E%3C/svg%3E");
  animation: waveMove 8s linear infinite;
}

.wave-container .wave:nth-child(2) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%234A342A' fill-opacity='0.10' d='M0,80 C240,20 480,100 720,40 C960,0 1200,80 1440,40 L1440,120 L0,120 Z'/%3E%3C/svg%3E");
  animation: waveMove 12s linear infinite reverse;
}

.wave-container .wave:nth-child(3) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120'%3E%3Cpath fill='%234A342A' fill-opacity='0.08' d='M0,40 C360,100 720,20 1080,80 C1260,100 1380,60 1440,50 L1440,120 L0,120 Z'/%3E%3C/svg%3E");
  animation: waveMove 16s linear infinite;
}

@keyframes waveMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════
   SOBRE
═══════════════════════════════════════════ */
.about {
  background: var(--gray-light);
  padding: 80px 0;
}

.about__header {
  margin-bottom: 48px;
}

.about__title {
  font-family: var(--font-btn);
  font-size: 36px;
  font-weight: 700;
  color: var(--brown-deep);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__content .body {
  color: var(--gray-text);
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
}

.about__cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
  max-width: 520px;
}

.about__card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 2px 10px rgba(74,52,42,.06);
}

.about__card-title {
  font-family: var(--font-btn);
  font-size: 15px;
  font-weight: 700;
  color: var(--brown-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about__card .body {
  font-size: 15px;
  margin-bottom: 0;
}

.about__card .body + .body {
  margin-top: 10px;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.highlight {
  color: var(--brown-deep);
  font-weight: 500;
}

/* Photo — no desktop, desce visualmente alinhando ao bloco de texto+cards */
.about__photo-wrap {
  position: relative;
}

/* Desktop: leve deslocamento para baixo em relação ao topo da coluna */
@media (min-width: 901px) {
  .about__photo-wrap {
    align-self: start;
    margin-top: 70px;
  }
}

.about__photo-blob {
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
  max-width: 420px;
  aspect-ratio: 3/4;
}

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

.about__credential {
  position: absolute;
  bottom: 20px;
  left: 0;
  background: var(--brown-deep);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  font-family: var(--font-main);
  line-height: 1.5;
}

.about__credential strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.about__credential span {
  font-size: 14px;
  opacity: .85;
}

/* ═══════════════════════════════════════════
   FEEDBACKS
═══════════════════════════════════════════ */
.feedbacks {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.feedbacks h2 {
  font-family: var(--font-btn);
  font-size: 40px;
  font-weight: 700;
  color: var(--brown-deep);
  margin-bottom: 10px;
}

.feedbacks__divider {
  width: 48px;
  height: 3px;
  background: var(--brown-deep);
  margin: 0 auto 20px;
}

.feedbacks .body {
  color: var(--gray-text);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 48px;
}

.feedbacks__carousel {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: min(94vw, 580px);
  margin: 0 auto;
}

.feedbacks__track-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.2s ease;
  touch-action: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  overscroll-behavior-x: contain;
}

.feedbacks__track-wrap:active {
  cursor: grabbing;
}

.feedbacks__track-wrap--ready {
  opacity: 1;
}

.feedbacks__track {
  display: flex;
  transition: transform .4s ease;
}

.feedback-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feedback-slide img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: auto;
}

.feedbacks__arrow {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1.5px solid var(--beige-warm);
  font-size: 22px;
  color: var(--brown-deep);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s;
}

.feedbacks__arrow:hover { background: var(--beige-warm); }

.feedbacks__hint {
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--gray-text);
  text-align: center;
  margin: 16px auto 0;
  max-width: 320px;
  line-height: 1.5;
  opacity: 0.9;
}

.feedbacks__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--beige-warm);
  cursor: pointer;
  transition: background .2s;
}

.dot.active { background: var(--brown-deep); }

.feedbacks__count {
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--gray-text);
  margin-top: 12px;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  background: var(--brown-deep);
  padding: 80px 0;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__info h3 {
  font-family: var(--font-main);
  font-size: 48px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}

.contact__info .body {
  color: rgba(255,255,255,.75);
  font-size: 16px;
  margin-bottom: 28px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__details li a {
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--beige-warm);
  transition: opacity .2s;
}

.contact__details li a:hover { opacity: .75; }

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field input {
  width: 100%;
  height: 52px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(216,194,168,.3);
  border-radius: 8px;
  padding: 0 16px;
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color .2s, background .2s;
}

.form-field input::placeholder { color: rgba(255,255,255,.45); }

.form-field input:focus {
  border-color: var(--beige-warm);
  background: rgba(255,255,255,.12);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--brown-coffee);
  padding: 48px 0;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

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

.site-footer__brand .body-small {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
}

.site-footer__brand .body-small a {
  color: var(--white);
  display: flex;
  align-items: center;
}

.site-footer__brand .body {
  color: rgba(255,255,255,.8);
  font-size: 14px;
}

.site-footer__brand p:last-child {
  font-family: var(--font-main);
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__col-title {
  color: rgba(255,255,255,.55) !important;
  font-size: 12px !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.site-footer__col .body {
  font-size: 14px;
  color: rgba(255,255,255,.85);
}

.site-footer__col .body a {
  color: rgba(255,255,255,.85);
  transition: opacity .2s;
}

.site-footer__col .body a:hover { opacity: .6; }

/* ═══════════════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════════════ */
.whats-app-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: block;
  line-height: 0;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
  overflow: hidden;
}

.whats-app-bubble:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .about__photo-wrap { order: -1; }
  .about__photo-blob { max-width: 320px; }

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

  .site-footer__inner {
    flex-direction: column;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .hero__content h1 { font-size: 36px; }
  .services__header h2 { font-size: 36px; }
  .banner-transformando h2 { font-size: 30px; }
  .about__title { font-size: 28px; }
  .contact__info h3 { font-size: 32px; }
  .feedbacks h2 { font-size: 30px; }
  .quote-section__text { font-size: 28px; }

  .site-header__nav ul { gap: 20px; }
  .site-header__nav a { font-size: 14px; }

  .feedback-slide img {
    max-width: 100%;
  }
}
