@font-face {
  font-family: 'Avegreat';
  src: url('fonts/avegreat.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NickySans';
  src: url('fonts/NickySans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'NickySans';
  src: url('fonts/NickySans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #f1ebe6;
  --bg-light: #faf4ef;
  --navy:     #041f2e;
  --red:      #6f0002;
  --tan:      #c0a98f;
  --tan-bg:   rgba(192,169,143,0.2);
  --tan-solid:#c5a88b;
  --text:     #041f2e;
  --text-mid: rgba(4,31,46,0.7);
}

html { scroll-behavior: smooth; }
body { font-family: 'NickySans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

/* ============================================================
   BUTTONS — pill shaped like Figma
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  padding: 6px 6px 6px 24px;
  border-radius: 100px;
  white-space: nowrap;
  transition: opacity .2s;
}
.btn:hover { opacity: .85; }

.btn-red            { background: var(--red); color: #fff; }
.btn-outline-dark   { background: transparent; color: var(--navy); border: 1px solid var(--navy); }
.btn-cream          { background: var(--bg); color: var(--red); }

.btn-icon-circle {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.red-circle   { background: rgba(255,255,255,0.18); }
.dark-circle  { background: rgba(4,31,46,0.1); }
.cream-circle { background: rgba(101,11,9,0.12); }
.btn-icon-circle img { width: 20px; height: 20px; }

/* ============================================================
   SHARED
============================================================ */
.sec-wrap { max-width: 1440px; margin: 0 auto; padding: 0 120px; }
.sec-wrap.center, .center { text-align: center; }
.sec-header { margin-bottom: 64px; }
.sec-sub { font-size: 16px; line-height: 1.6; color: var(--text-mid); margin-top: 10px; }
.sec-cta { display: flex; justify-content: center; margin-top: 50px; }

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  height: 810px;
  overflow: hidden;
  background: var(--bg);
}

/* photo covers left portion */
.hero-photo {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 68%;
  z-index: 0;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* gradient fades photo into cream on the right */
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(131.22deg, rgba(242,236,231,0) 25.7%, rgb(242,236,231) 82.4%);
}

/* large decorative F — bottom-right corner, bleeds off the edge (clipped by overflow:hidden on .hero) */
.hero-deco-f {
  position: absolute;
  left: 70.5%;
  top: 270px;
  width: 558px;
  height: 745px;
  z-index: 1;
  pointer-events: none;
}
.hero-deco-f img { width: 100%; height: 100%; opacity: 0.015; filter: saturate(0) brightness(1.2); }

/* content wrapper — text on the RIGHT */
.hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 1440px;
  margin: 0 auto;
  left: 0; right: 0;
  padding: 0 120px;
}

.hero-content {
  width: 639px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-f-logo {
  width: 46px;
  height: auto;
}

.hero-text h1 {
  font-family: 'Avegreat', serif;
  font-size: clamp(40px, 5.6vw, 80px);
  font-weight: 400;
  color: var(--navy);
  line-height: 0.94;
  margin-bottom: 16px;
}
.hero-text p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
}

.hero-btns {
  display: flex;
  gap: 24px;
}

/* ============================================================
   STATS BAR  — ticker / marquee
============================================================ */
.stats-bar {
  background: var(--bg);
  border-top: 1px solid var(--navy);
  border-bottom: 1px solid var(--navy);
  overflow: hidden;
  height: 44px;
}
.stats-ticker {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
}
.stats-track {
  display: flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
  will-change: transform;
}
.stats-track span {
  font-size: 13px;
  font-weight: 400;
  color: var(--navy);
  flex-shrink: 0;
}
.stats-dot {
  color: var(--tan) !important;
  font-size: 18px !important;
  line-height: 1;
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}

/* ============================================================
   RESULTADOS
============================================================ */
.resultados {
  background: var(--bg-light);
  padding: 80px 0;
}
.resultados h2 {
  font-family: 'Avegreat', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}

.dep-outer {
  max-width: 1440px;
  margin: 50px auto 0;
  padding: 0 120px;
}
.dep-viewport {
  overflow: hidden;
}
.dep-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.dep-card {
  flex: 0 0 calc(33.333% - 14px);
  aspect-ratio: 9 / 16;
  border-radius: 4px;
  overflow: hidden;
}
.dep-card-text {
  background: var(--bg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.dep-quote {
  font-family: 'NickySans', sans-serif;
  font-size: 14px;
  line-height: 1.65;
  color: var(--navy);
  flex: 1;
}
.dep-author {
  font-family: 'NickySans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--tan-solid);
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(192,169,143,0.35);
  display: block;
}
.dep-card-video {
  position: relative;
  background: #000;
  cursor: pointer;
}
.dep-card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dep-video-cover {
  position: absolute;
  inset: 0;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity .35s;
  z-index: 2;
}
.dep-cover-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s;
}
.dep-card-video:hover .dep-cover-play {
  transform: scale(1.08);
}
.dep-cover-text {
  font-family: 'Avegreat', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  text-align: center;
  padding: 0 24px;
  line-height: 1.4;
}
.dep-card-video:hover .dep-video-cover {
  opacity: 0;
  pointer-events: none;
}
.dep-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4,31,46,0.25);
  transition: opacity .3s;
  z-index: 1;
  opacity: 0;
}
.dep-video-overlay span {
  font-size: 28px;
  color: #fff;
}
.dep-card-video:hover .dep-video-overlay {
  opacity: 1;
}

/* ============================================================
   CAMINHOS — light background, dark text
============================================================ */
.caminhos {
  background: var(--bg);
  padding: 100px 0;
}
.caminhos h2 {
  font-family: 'Avegreat', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}

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

.cam-card {
  background: var(--bg-light);
  padding: 20px 16px 73px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* icon row: line stretches left, icon sits on right */
.cam-top-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cam-hr {
  flex: 1;
  height: 1px;
  background: rgba(192,169,143,0.5);
}
.cam-ico {
  width: 42px; height: 42px;
  flex-shrink: 0;
}

.cam-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cam-body h3 {
  font-family: 'NickySans', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
}
.cam-sub-text {
  font-size: 14px;
  color: var(--tan);
  line-height: 1.6;
  font-style: italic;
}
.cam-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-mid);
  text-align: justify;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
.tags span {
  font-size: 12px;
  background: var(--tan-bg);
  color: var(--navy);
  padding: 5px 10px;
}

/* ============================================================
   CUIDAMOS
============================================================ */
.cuidamos {
  background: var(--bg-light);
  padding: 100px 0;
}
.cuidamos-title {
  font-family: 'Avegreat', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--navy);
  text-align: center;
  margin-bottom: 50px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.svc-card {
  position: relative;
  background: var(--bg-light);
  border: 1px solid var(--navy);
  display: flex;
  flex-direction: column;
  padding: 40px 16px;
  gap: 24px;
}
.card-num {
  font-size: 16px;
  color: var(--navy);
  line-height: 1.6;
  font-family: 'NickySans', sans-serif;
}
.card-img {
  width: 100%;
  height: 198px;
  overflow: hidden;
  flex-shrink: 0;
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.svc-card:hover .card-img img { transform: scale(1.04); }
.card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.card-body h3 {
  font-family: 'NickySans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.6;
}
.card-body p {
  font-size: 16px;
  line-height: 1.6;
  color: #4e5f68;
  flex: 1;
}
.card-sig {
  width: 46px;
  height: auto;
  opacity: 0.35;
}

/* ============================================================
   SOBRE
============================================================ */
.sobre {
  background: var(--bg);
  padding: 100px 0;
}
.sobre-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: grid;
  grid-template-columns: 558px 1fr;
  gap: 80px;
  align-items: start;
}

.sobre-content {
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: flex-start;
}
.sobre-linha-top {
  width: 153px;
  height: 1px;
  background: var(--navy);
}
.sobre-nome {
  font-family: 'Avegreat', serif;
  font-size: clamp(28px, 2.5vw, 33px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.3;
}
.sobre-bio {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: justify;
}
.sobre-bio p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-mid);
}
.sobre-divider {
  width: 100%;
  height: 1px;
  background: rgba(4,31,46,0.15);
}
.sobre-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sobre-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sobre-list li img {
  width: 32px; height: 32px;
  flex-shrink: 0;
}
.sobre-list li p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--navy);
}
.sobre-list li strong { font-weight: 600; }

.sobre-foto-wrap {
  position: relative;
  align-self: center;
}
.sobre-tan-bg {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 75%;
  height: 75%;
  background: var(--tan-solid);
  opacity: 0.3;
  z-index: 0;
}
.sobre-foto {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
}
.sobre-deco {
  position: absolute;
  bottom: 20px;
  left: -50px;
  width: 165px;
  height: auto;
  opacity: 0.12;
  z-index: 2;
  pointer-events: none;
}

/* ============================================================
   FAQ — light bg, dark text, title RIGHT-aligned
============================================================ */
.faq {
  background: var(--bg-light);
  padding: 100px 0;
}
.faq-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.faq-title {
  font-family: 'Avegreat', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--navy);
  text-align: center;
  line-height: 0.94;
  width: 893px;
  max-width: 100%;
}
.faq-list {
  width: 893px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid rgba(192,169,143,0.4);
}
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  text-align: left;
}
.faq-btn span {
  font-family: 'NickySans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--navy);
}
.faq-btn:hover span { color: var(--tan); }
.faq-chevron {
  width: 32px; height: 32px;
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-ans { max-height: 400px; padding-bottom: 20px; }
.faq-ans p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-mid);
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  position: relative;
  min-height: 434px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.footer-bg {
  position: absolute;
  inset: 0;
}
.footer-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.footer-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(4,31,46,0.2);
}
.footer-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 120px;
}
.footer-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 704px;
  margin: 0 auto;
}
.footer-cta h2 {
  font-family: 'Avegreat', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--bg-light);
  line-height: 0.94;
}
.footer-cta p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--bg-light);
}

/* ============================================================
   COPYRIGHT
============================================================ */
.copyright {
  background: var(--bg-light);
  padding: 24px 0;
  text-align: center;
}
.copyright p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
============================================================ */
.float-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.float-wa-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--red);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(111,0,2,0.35);
  animation: wa-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.float-wa-btn img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(111,0,2,0.35), 0 0 0 0 rgba(111,0,2,0.4); }
  50%       { box-shadow: 0 4px 20px rgba(111,0,2,0.35), 0 0 0 10px rgba(111,0,2,0); }
}
.float-wa-panel {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(4,31,46,0.18);
  width: 300px;
  overflow: hidden;
  display: none;
  flex-direction: column;
}
.float-wa-panel.open {
  display: flex;
}
.float-wa-header {
  background: var(--red);
  padding: 16px 20px;
}
.float-wa-header p {
  font-family: 'NickySans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}
.float-wa-header strong {
  font-family: 'NickySans', sans-serif;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
}
.float-wa-questions {
  padding: 8px 0;
}
.float-wa-questions a {
  display: block;
  padding: 11px 20px;
  font-family: 'NickySans', sans-serif;
  font-size: 13px;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid rgba(4,31,46,0.06);
  transition: background .15s;
  line-height: 1.4;
}
.float-wa-questions a:last-child { border-bottom: none; }
.float-wa-questions a:hover { background: var(--bg); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .sec-wrap, .stats-inner, .dep-outer, .sobre-inner, .hero-inner, .footer-inner, .faq-wrap { padding-left: 48px; padding-right: 48px; }
  .sobre-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .faq-title, .faq-list { width: 100%; }
  .hero-content { width: 460px; }
}

@media (max-width: 860px) {
  .caminhos-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-foto-wrap { order: -1; }
  .dep-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { height: auto; min-height: 600px; }
  .hero-photo { width: 100%; opacity: 0.35; }
  .hero-gradient { background: rgba(242,236,231,0.6); }
  .hero-inner { position: relative; justify-content: center; padding: 80px 40px; }
  .hero-content { width: 100%; }
}

@media (max-width: 600px) {
  .sec-wrap, .stats-inner, .dep-outer, .sobre-inner, .hero-inner, .footer-inner, .faq-wrap { padding-left: 20px; padding-right: 20px; }
  .cards-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .stats-inner { flex-direction: column; height: auto; padding: 16px 20px; gap: 12px; }
  .stats-sep { width: 40px; height: 1px; }
  .dep-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-wrap { align-items: flex-start; }
  .faq-title { text-align: left; }
}
