/* ==========================================================================
   Futuro Embriões — Sistema visual premium biotech
   Direção: azul midnight + dourado/cobre (brass), Fraunces + Inter
   ========================================================================== */

/* --- 1. Tokens ---------------------------------------------------------- */

:root {
  /* Cores */
  --midnight: #0a1f3d;
  --ink: #102a5c;
  --signal: #1f4ed8;
  --brass: #b8893a;
  --brass-deep: #97712f;
  --sand: #e8d4a8;
  --bone: #f7f4ed;
  --paper: #ffffff;
  --slate: #3c4858;
  --mist: #8896a8;
  --edge: #e6e2d8;
  --whatsapp: #25d366;
  --whatsapp-deep: #1fad55;

  /* Tipografia */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* Espaçamento */
  --container: 1200px;
  --space-section: clamp(64px, 8vw, 128px);

  /* Transições */
  --t-fast: 180ms ease-out;
  --t-base: 300ms ease-out;
  --t-slow: 500ms ease-out;

  /* Sombras */
  --shadow-card: 0 12px 32px rgba(10, 31, 61, 0.08);
  --shadow-btn: 0 4px 16px rgba(10, 31, 61, 0.12);
  --shadow-header: 0 1px 0 rgba(0, 0, 0, 0.04);
}

/* --- 2. Base ------------------------------------------------------------ */

body {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
  color: var(--slate);
  background: var(--bone);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--midnight);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h3 {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

p {
  color: var(--slate);
}

a {
  color: var(--midnight);
  transition: color var(--t-fast);
}

a:hover {
  color: var(--brass);
}

em, .italic {
  font-style: italic;
  color: var(--brass);
}

::selection {
  background: var(--brass);
  color: var(--paper);
}

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

/* --- 3. Container e utilitários ----------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

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

.section--bone { background: var(--bone); }
.section--paper { background: var(--paper); }
.section--midnight {
  background: var(--midnight);
  color: rgba(255, 255, 255, 0.85);
}
.section--midnight h1,
.section--midnight h2,
.section--midnight h3 { color: var(--paper); }
.section--midnight p { color: rgba(255, 255, 255, 0.75); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--brass);
  vertical-align: middle;
  margin-right: 12px;
}

.heading-xl {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.05;
}

.heading-lg {
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
}

.heading-md {
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.2;
}

.lead {
  font-size: clamp(17px, 1.3vw, 20px);
  color: var(--slate);
  max-width: 600px;
  line-height: 1.6;
}

/* --- 4. Botões ---------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-btn);
}

.btn--primary {
  background: var(--midnight);
  color: var(--paper);
}

.btn--primary:hover {
  background: var(--brass);
  color: var(--midnight);
}

.btn--outline {
  background: transparent;
  color: var(--midnight);
  border-color: var(--brass);
}

.btn--outline:hover {
  background: var(--brass);
  color: var(--midnight);
}

.btn--outline-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
  background: var(--paper);
  color: var(--midnight);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--paper);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-deep);
  color: var(--paper);
}

.btn .icon {
  width: 18px;
  height: 18px;
  transition: transform var(--t-base);
}

.btn:hover .icon-arrow {
  transform: translateX(4px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--midnight);
  font-weight: 500;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
  transition: gap var(--t-base);
}

.link-arrow:hover {
  gap: 14px;
  color: var(--brass);
}

/* --- 5. Header ---------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 237, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--edge);
  transition: box-shadow var(--t-base), background var(--t-base);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-header);
  background: rgba(247, 244, 237, 0.95);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--midnight);
  letter-spacing: -0.02em;
}

.site-header__brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.site-header__nav {
  display: none;
  gap: 36px;
  align-items: center;
}

.site-header__nav a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  padding: 8px 0;
  letter-spacing: 0.01em;
}

.site-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--brass);
  transition: width var(--t-base);
}

.site-header__nav a:hover::after,
.site-header__nav a.is-active::after {
  width: 100%;
}

.site-header__nav a.is-active {
  color: var(--midnight);
}

.site-header__cta {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin: -10px;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--midnight);
  transition: transform var(--t-base), opacity var(--t-base);
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--paper); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--paper); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--midnight);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 105;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base);
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 56px);
  color: var(--paper);
  margin: 16px 0;
  font-weight: 400;
}

.mobile-nav a.is-active {
  color: var(--brass);
  font-style: italic;
}

@media (min-width: 900px) {
  .site-header__nav { display: flex; }
  .site-header__cta { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* --- 6. Hero ------------------------------------------------------------ */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 31, 61, 0.85), rgba(10, 31, 61, 0.55));
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-left: 24px;
  border-left: 1px solid var(--brass);
}

.hero__eyebrow {
  color: var(--sand);
}

.hero__eyebrow::before {
  background: var(--brass);
}

.hero h1 {
  color: var(--paper);
  margin-bottom: 28px;
}

.hero h1 em {
  color: var(--sand);
  font-style: italic;
  font-weight: 400;
}

.hero__lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  font-size: clamp(17px, 1.3vw, 20px);
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Page hero (compacto, usado em sobre, servicos, equipe, contato) */
.page-hero {
  background: var(--midnight);
  color: var(--paper);
  padding: clamp(96px, 14vw, 160px) 0 clamp(64px, 8vw, 96px);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(184, 137, 58, 0.15), transparent 60%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  border-left: 1px solid var(--brass);
  padding-left: 24px;
}

.page-hero h1 {
  color: var(--paper);
  margin-bottom: 24px;
}

.page-hero h1 em {
  color: var(--sand);
  font-style: italic;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.3vw, 20px);
  max-width: 600px;
}

/* --- 7. Stats ----------------------------------------------------------- */

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 24px;
}

@media (min-width: 768px) {
  .stats { grid-template-columns: repeat(4, 1fr); gap: 48px; }
}

.stat {
  padding-left: 20px;
  border-left: 1px solid var(--brass);
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 1;
  color: var(--brass);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0.02em;
}

/* --- 8. Section heading ------------------------------------------------- */

.section-heading {
  max-width: 720px;
  margin-bottom: 64px;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 16px;
}

.section-heading p {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--slate);
}

/* --- 9. Quem somos (split) --------------------------------------------- */

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

@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: 80px; }
  .split--reverse > :first-child { order: 2; }
}

.split__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--edge);
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__content h2 {
  margin-bottom: 20px;
}

.split__content > p {
  margin-bottom: 28px;
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}

.pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 500;
  color: var(--midnight);
}

.pillar-list svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  stroke: var(--brass);
}

/* --- 10. Service cards (grid) ----------------------------------------- */

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 700px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--edge);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: var(--brass);
  box-shadow: var(--shadow-card);
}

.service-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--edge);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.service-card:hover .service-card__media img {
  transform: scale(1.04);
}

.service-card__body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--midnight);
}

.service-card p {
  font-size: 15px;
  color: var(--slate);
  margin-bottom: 24px;
  flex: 1;
}

.service-card .link-arrow {
  align-self: flex-start;
  font-size: 14px;
}

/* --- 11. Diferenciais (4 blocos) -------------------------------------- */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 600px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .feature-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; }
}

.feature {
  padding-top: 24px;
  border-top: 1px solid var(--edge);
}

.feature__icon {
  width: 36px;
  height: 36px;
  stroke: var(--brass);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 24px;
}

.feature h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--midnight);
}

.feature p {
  font-size: 15px;
  color: var(--slate);
}

/* --- 12. Carousel de depoimentos -------------------------------------- */

.testimonial {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 0 16px;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4;
  color: var(--midnight);
  margin-bottom: 32px;
  position: relative;
}

.testimonial__quote::before {
  content: "“";
  display: block;
  font-size: clamp(64px, 8vw, 112px);
  color: var(--brass);
  line-height: 0.5;
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-style: normal;
}

.testimonial__author {
  font-size: 14px;
  font-weight: 600;
  color: var(--midnight);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial__property {
  font-size: 14px;
  color: var(--mist);
  margin-top: 4px;
}

.carousel {
  position: relative;
}

.carousel__track {
  position: relative;
  min-height: 280px;
}

.carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--t-slow);
  pointer-events: none;
}

.carousel__slide.is-active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}

.carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--edge);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
  cursor: pointer;
}

.carousel__btn:hover {
  border-color: var(--brass);
  color: var(--brass);
}

.carousel__btn svg {
  width: 16px;
  height: 16px;
}

.carousel__dots {
  display: flex;
  gap: 10px;
}

.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--edge);
  border: 0;
  cursor: pointer;
  transition: background var(--t-fast);
  padding: 0;
}

.carousel__dot.is-active { background: var(--brass); }

/* --- 13. Galeria mason -------------------------------------------------- */

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

@media (min-width: 700px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 20px;
  }
}

.gallery__item {
  overflow: hidden;
  background: var(--edge);
  cursor: zoom-in;
  position: relative;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow), filter var(--t-base);
}

.gallery__item:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

@media (min-width: 700px) {
  .gallery__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .gallery__item:nth-child(4) { grid-column: span 2; }
  .gallery__item:nth-child(6) { grid-row: span 2; }
}

.gallery__item {
  aspect-ratio: 1;
}

@media (min-width: 700px) {
  .gallery__item { aspect-ratio: auto; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 31, 61, 0.95);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

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

.lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--paper);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast);
}

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: var(--brass);
  border-color: var(--brass);
}

.lightbox__close { top: 24px; right: 24px; }
.lightbox__prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 24px; top: 50%; transform: translateY(-50%); }

/* --- 14. CTA final ------------------------------------------------------ */

.cta-final {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-final h2 {
  margin-bottom: 20px;
}

.cta-final p {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.3vw, 20px);
  margin-bottom: 40px;
}

.cta-final__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* --- 15. Footer --------------------------------------------------------- */

.site-footer {
  background: var(--midnight);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
}

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

@media (min-width: 800px) {
  .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

.site-footer h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--paper);
}

.site-footer__brand img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.site-footer__about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  max-width: 320px;
  line-height: 1.6;
}

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

.site-footer__list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color var(--t-fast);
}

.site-footer__list a:hover {
  color: var(--brass);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 700px) {
  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}

.social-links a:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--midnight);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

/* --- 16. WhatsApp float ------------------------------------------------- */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--t-base);
  color: var(--paper);
}

.wa-float:hover {
  transform: scale(1.08);
  background: var(--whatsapp-deep);
  color: var(--paper);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

/* --- 17. Page: Sobre --------------------------------------------------- */

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

@media (min-width: 900px) {
  .about-text { grid-template-columns: 1fr 1fr; gap: 80px; }
}

.about-text__col p {
  margin-bottom: 24px;
}

.pull-quote {
  border-left: 2px solid var(--brass);
  padding-left: 32px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 28px);
  color: var(--midnight);
  line-height: 1.4;
  margin: 32px 0;
}

.mvv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 800px) {
  .mvv-grid { grid-template-columns: repeat(3, 1fr); }
}

.mvv-card {
  background: var(--paper);
  border: 1px solid var(--edge);
  padding: 40px;
  transition: all var(--t-base);
}

.mvv-card:hover {
  border-color: var(--brass);
  transform: translateY(-2px);
}

.mvv-card__icon {
  width: 36px;
  height: 36px;
  stroke: var(--brass);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 24px;
}

.mvv-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 16px;
  color: var(--midnight);
}

.mvv-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mvv-card ul li {
  font-size: 14px;
  color: var(--slate);
  padding-left: 16px;
  position: relative;
}

.mvv-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 1px;
  background: var(--brass);
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

@media (min-width: 800px) {
  .timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .timeline::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--edge);
  }
}

.timeline__item {
  position: relative;
  padding-top: 56px;
}

.timeline__item::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brass);
}

.timeline__year {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--brass);
  margin-bottom: 8px;
}

.timeline__title {
  font-weight: 600;
  color: var(--midnight);
  margin-bottom: 8px;
  font-size: 17px;
}

.timeline__desc {
  font-size: 14px;
  color: var(--slate);
}

/* --- 18. Page: Serviços (lista editorial) ----------------------------- */

.service-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  padding: var(--space-section) 0;
  border-bottom: 1px solid var(--edge);
}

.service-feature:last-child { border-bottom: 0; }

@media (min-width: 900px) {
  .service-feature { grid-template-columns: 1fr 1fr; gap: 80px; }
  .service-feature--reverse > :first-child { order: 2; }
}

.service-feature__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--edge);
}

.service-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-feature__num {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--brass);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}

.service-feature h2 {
  margin-bottom: 24px;
}

.service-feature__desc {
  font-size: 17px;
  margin-bottom: 28px;
}

.service-feature__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 0;
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  margin-bottom: 28px;
}

.service-feature__list li {
  display: flex;
  gap: 14px;
  font-size: 15px;
  color: var(--slate);
}

.service-feature__list li::before {
  content: "→";
  color: var(--brass);
  font-weight: 600;
}

.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 700px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .process { grid-template-columns: repeat(5, 1fr); gap: 24px; } }

.process__step {
  padding-top: 24px;
  border-top: 2px solid var(--brass);
}

.process__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 16px;
}

.process__step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--midnight);
}

.process__step p {
  font-size: 14px;
  color: var(--slate);
}

/* --- 19. Page: Equipe -------------------------------------------------- */

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

@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }

.team-card {
  display: flex;
  flex-direction: column;
}

.team-card__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--edge);
  margin-bottom: 20px;
}

.team-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter var(--t-slow), transform var(--t-slow);
}

.team-card:hover .team-card__media img {
  filter: grayscale(0);
  transform: scale(1.04);
}

.team-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--midnight);
  margin-bottom: 6px;
}

.team-card__role {
  font-style: italic;
  color: var(--brass);
  font-size: 14px;
  margin-bottom: 12px;
}

.team-card__bio {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

.philosophy {
  background: var(--paper);
  border: 1px solid var(--edge);
  padding: clamp(40px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

@media (min-width: 800px) { .philosophy { grid-template-columns: 1fr 2fr; gap: 56px; } }

.philosophy h2 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 0;
}

.philosophy p {
  margin-bottom: 16px;
}

/* --- 20. Page: Contato ------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 800px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

.contact-card {
  background: var(--paper);
  border: 1px solid var(--edge);
  padding: 40px;
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}

.contact-card:hover {
  border-color: var(--brass);
  transform: translateY(-2px);
}

.contact-card__icon {
  width: 36px;
  height: 36px;
  stroke: var(--brass);
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 24px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  color: var(--midnight);
  margin-bottom: 8px;
}

.contact-card__sub {
  color: var(--slate);
  font-size: 14px;
  margin-bottom: 20px;
}

.contact-card__value {
  font-size: 17px;
  color: var(--midnight);
  font-weight: 500;
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
  display: inline-block;
}

.contact-card__value:hover {
  color: var(--brass);
}

.map-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--edge);
  overflow: hidden;
  background: var(--edge);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.hours-block {
  background: var(--paper);
  border: 1px solid var(--edge);
  padding: 40px;
  text-align: center;
}

.hours-block h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--midnight);
}

.hours-block p {
  color: var(--slate);
  font-size: 17px;
}

/* --- 21. Animações: scroll reveal -------------------------------------- */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease-out, transform 800ms ease-out;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- 22. Helpers acessibilidade --------------------------------------- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

body.no-scroll { overflow: hidden; }
