html,
body {
  font-family: 'Manjari', sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  background-color: #050505; /* Fallback global contra fundo branco nas transições SPA */
}

/* --- SPA Cinematic Page Transitions (Sliding Panel Wipe) --- */
body.page-transitioning-in::after,
body.page-transitioning-out::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0d0d0d;
  z-index: 999999;
  pointer-events: none;
}

body.page-transitioning-out::after {
  transform: translateY(-100%);
  border-bottom: 3px solid var(--color-brand-yellow);
  animation: curtainDrop 0.65s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

body.page-transitioning-in::after {
  transform: translateY(0%);
  border-top: 3px solid var(--color-brand-yellow);
  animation: curtainLeave 0.65s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@keyframes curtainDrop {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0%); }
}

@keyframes curtainLeave {
  0% { transform: translateY(0%); }
  100% { transform: translateY(100%); }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Belleza', sans-serif;
  letter-spacing: -0.01em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
}

/* --- Cores de Texto --- */
.text-brand-yellow {
  color: var(--color-brand-yellow);
}

:root {
  --color-brand-yellow: #ffe00d;
  --color-brand-yellow-gradient: linear-gradient(#ffe00d, #ffcf00);
  --color-brand-gray-light: rgba(255, 255, 255, 0.1);
  --color-brand-gray-medium: rgba(255, 255, 255, 0.4);
  --color-brand-gray-dark: rgba(255, 255, 255, 0.7);
  --color-bg-dark-base: #1a1a1a;
  --color-bg-dark-deep: #0d0d0d;
  --section-title-size: 3.5rem;
}

/* --- Utilitários de Layout --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.max-w-7xl {
  max-width: 80rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-3xl {
  max-width: 48rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}

body {
  background: linear-gradient(180deg, var(--color-bg-dark-base) 0%, var(--color-bg-dark-deep) 100%) fixed;
  color: var(--color-brand-gray-dark);
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* --- Novo Cabeçalho Fixo --- */
.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  background-color: transparent;
}

.fixed-header.scrolled {
  background-color: rgba(26, 26, 26, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.header-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

.scrolled .header-logo {
  height: 40px;
}

.desktop-nav .nav-list {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.desktop-nav .nav-list a {
  color: #ffffff;
  text-decoration: none;
  font-family: 'Manjari', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.desktop-nav .nav-list a:hover {
  color: var(--color-brand-yellow);
}

/* --- Menu Mobile --- */
.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(15px);
  z-index: 999;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav.open {
  height: 100vh;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-nav-list li {
  margin: 25px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-nav.open .mobile-nav-list li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-list a {
  color: #fff;
  text-decoration: none;
  font-family: 'Manjari', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hidden {
  display: none;
}

/* --- Nova Seção Hero --- */
.hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url('./header.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.hero-container-new {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content-new {
  width: 100%;
}

.hero-title-main {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.title-transformando {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 400;
  line-height: 0.9;
  color: #fff;
  text-align: left;
}

.title-mdf-arte {
  align-self: flex-end;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 1;
  margin-top: -20px;
}

.text-yellow {
  color: var(--color-brand-yellow);
  font-weight: 700;
}

.text-white {
  color: #fff;
  font-style: italic;
  font-weight: 300;
}

.hero-footer-new {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 40px;
  gap: 30px;
  max-width: 100%;
}

.hero-description-new {
  font-family: 'Manjari', sans-serif;
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  text-align: right;
  border-right: 3px solid var(--color-brand-yellow);
  padding-right: 25px;
}

.hero-cta-group-new {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
/* 
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 1.15rem 2rem 0.85rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Manjari', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
} */

.btn.btn-brand {
  background-color: var(--color-brand-yellow);
  color: #000;
}

.scroll-explore {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: 'Manjari', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.6);
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translate(-50%, 0);
  }
  40% {
    transform: translate(-50%, -10px);
  }
  60% {
    transform: translate(-50%, -5px);
  }
}

.scroll-icon {
  width: 20px;
  height: 20px;
}

/* Responsividade Adicional */
@media (max-width: 1024px) {
  .hero-description-new {
    text-align: center;
    border-right: none;
    border-top: 2px solid var(--color-brand-yellow);
    padding-right: 0;
    padding-top: 20px;
    margin: 0 auto;
  }

  .hero-footer-new {
    align-items: center;
  }

  .title-mdf-arte {
    align-self: center;
    margin-top: 10px;
  }

  .title-transformando {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

/* --- Footer Utilities --- */
.bg-foreground {
  background-color: #1a1a1a;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: 1rem;
}

.h-8 {
  height: 2rem;
}

.w-auto {
  width: auto;
}

.brightness-0 {
  filter: brightness(0);
}

.invert {
  filter: invert(1);
}

.font-body {
  font-family: 'Manjari', sans-serif;
}

.text-xs {
  font-size: 0.75rem;
}

.text-primary-foreground\/50 {
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 640px) {
  .sm\:flex-row {
    flex-direction: row;
  }
}

.btn {
  font-family: inherit;
  font-weight: 700;
  line-height: normal;
  padding: 1.15rem 1.8rem 0.85rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 1.1rem;

  .arrow {
    font-weight: normal;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    transform: translateY(-1px);
  }

  &.btn-dark {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;

    &:hover {
      background: rgba(255, 255, 255, 0.2);
    }
  }

  &.btn-text {
    background-color: transparent;
    color: #ffffff;
    padding: 1.15rem 0 0.85rem;

    .arrow {
      font-size: 1.3rem;
      transform: translateY(-1px);
    }

    &:hover {
      transform: translateX(4px);
    }
  }

  &.btn-small {
    padding: 0.85rem 1.5rem 0.65rem;
    font-size: 1rem;
  }
}

.hero-bottom {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.feature-cards {
  display: flex;
  gap: 24px;
  flex: 1;
}

.feature-card-group {
  display: flex;
  gap: 40px;
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 32px 40px;
  align-items: flex-start;
}

.card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;

  img {
    width: 36px;
    height: 36px;
    opacity: 0.9;
  }

  h3 {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 700;
  }

  p {
    font-size: 0.95rem;
    color: var(--color-brand-gray-dark);
    line-height: 1.5;
  }
}

.hero-action-box {
  background: var(--color-brand-yellow-gradient);
  border-radius: 30px;
  width: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;

  .large-arrow {
    color: #1a1a1a;
    font-size: 3.5rem;
    font-weight: 300;
  }

  &:hover {
    transform: scale(1.02);
    filter: brightness(1.1);
  }
}

/* .btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
} */

/* --- Efeito Tchan (Background Glow) --- */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 224, 13, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 224, 13, 0.03) 0%, transparent 40%);
  pointer-events: none;
  z-index: -1;
}

/* --- Seções Principais Base --- */
.container-section {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
}

.background-gray {
  background-color: transparent;
}

.background-dark {
  background-color: transparent;
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;

  h1 {
    font-size: var(--section-title-size);
    color: inherit;
    margin: 0 0 16px 0;
  }

  p {
    font-size: 1.125rem;
    color: var(--color-brand-gray-dark);
    max-width: 600px;
    margin: 0 auto;
  }
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.diferencial-item {
  h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin: 0 0 12px 0;
    position: relative;
    padding-left: 20px;
    font-weight: 700;

    &::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 8px;
      height: 8px;
      background-color: var(--color-brand-yellow);
      border-radius: 50%;
    }
  }

  p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-brand-gray-dark);
    margin: 0;
  }
}

/* --- Seção Light (Convertida) --- */

@media (min-width: 768px) {
  .section-light {
    padding: 8rem 0;
  }
}

.section-light .section-title {
  color: #ffffff;
  margin-bottom: 1rem;
}

.section-light .section-divider {
  margin-bottom: 2.5rem;
}

.section-light .section-description {
  color: var(--color-brand-gray-dark);
  margin-bottom: 4rem;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

.service-architectural-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4rem;
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .service-architectural-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .service-architectural-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 4rem;
    row-gap: 5rem;
  }
}

.service-arch-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  padding: 1rem 0;
  transition: all 0.4s ease;
}

.service-arch-content {
  display: flex;
  flex-direction: column;
}

.service-arch-header {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.service-arch-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-brand-yellow);
  filter: drop-shadow(0 0 8px rgba(255, 224, 13, 0.3));
  opacity: 0.9;
  flex-shrink: 0;
}

.service-arch-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: #ffffff;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.service-arch-description {
  font-family: 'Manjari', sans-serif;
  font-size: 1rem;
  color: var(--color-brand-gray-medium);
  line-height: 1.8;
  margin: 0 0 3rem 0;
  min-height: 4.5em; /* Helps align the dividers */
  opacity: 0.9;
}

.service-arch-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-arch-card:hover .service-arch-divider {
  background: var(--color-brand-yellow);
  box-shadow: 0 0 15px rgba(255, 224, 13, 0.2);
}

.service-arch-card:hover {
  transform: translateY(-8px);
}

/* --- Diferenciais / Seção Header --- */
.section-header {
  text-align: center;
  margin-bottom: 60px;

  h1 {
    font-size: var(--section-title-size);
    color: #ffffff;
    margin: 0 0 16px 0;
  }

  p {
    font-size: 1.125rem;
    color: var(--color-brand-gray-dark);
    max-width: 600px;
    margin: 0 auto;
  }
}

/* --- Portfólio (Masonry Grid) --- */
.portfolio {
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .portfolio {
    padding: 6rem 0;
  }
}

.portfolio-label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.portfolio-label {
  font-family: 'Manjari', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-brand-yellow);
}

.label-line {
  display: none;
  width: 12rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .label-line {
    display: block;
  }
}

/* Removido overrides de alinhamento para seguir padrão centralizado global */

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 280px;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 320px;
  }
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background-color: #1a1a1a;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

/* Spans */
@media (min-width: 640px) {
  .col-span-2 {
    grid-column: span 2;
  }
  .row-span-2 {
    grid-row: span 2;
  }
}

/* Item Overlay */
.item-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 26, 26, 0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: all 0.5s ease;
}

.portfolio-item:hover .item-overlay {
  background-color: rgba(26, 26, 26, 0.6);
  opacity: 1;
}

.item-category {
  font-family: 'Manjari', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-brand-yellow);
  margin-bottom: 0.25rem;
}

.item-title {
  font-family: 'Belleza', sans-serif;
  font-size: 1.25rem;
  color: #ffffff;
  margin: 0;
}

@media (min-width: 1024px) {
  .item-title {
    font-size: 1.5rem;
  }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition:
    opacity 1s cubic-bezier(0.4, 0, 0.2, 1),
    transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --- Lightbox Modal (<dialog>) - Atualizado --- */
.lightbox-modal {
  border: none;
  background-color: transparent;
  padding: 0;
  max-width: 100vw;
  max-height: 100vh;
  margin: auto;
  overflow: visible;
}

.lightbox-modal::backdrop {
  background-color: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
}

.lightbox-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lightbox-content {
  max-width: 80rem;
  width: 100%;
}

.lightbox-img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
  margin-bottom: 1.5rem;
}

.lightbox-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
}

.info-divider {
  color: rgba(255, 255, 255, 0.2);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: var(--color-brand-yellow);
}

/* --- Generic Dark Section Styles --- */
section {
  padding-block: 6rem 3rem;
  background-color: transparent;
  color: #ffffff;
}

@media (min-width: 768px) {
  section {
    padding-block: 3rem;
  }
}

.section-inner {
  margin: 0 auto;
  text-align: center;
}

.max-w-3xl {
  max-width: 48rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.section-title {
  font-family: 'Belleza', sans-serif;
  font-size: 1.875rem;
  margin-bottom: 2rem;
  color: #ffffff;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-divider {
  width: 5rem;
  height: 1px;
  background-color: var(--color-brand-yellow);
  margin: 0 auto 2.5rem;
  opacity: 0.8;
}

/* --- - Section (Quem Somos) --- */
.about-section {
  padding-block: 6rem 3rem;
  overflow: hidden;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .about-container {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 5rem;
  }
}

.about-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: 4px;
  overflow: visible;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.image-accent {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-brand-yellow);
  z-index: -1;
  pointer-events: none;
  border-radius: 4px;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-title {
  margin-bottom: 2.5rem;
  line-height: 1.1;
}

.about-title .title-light {
  font-family: 'Belleza', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: #ffffff;
}

.about-title .title-bold {
  font-family: 'Belleza', serif;
  font-size: 3.5rem;
}

.about-text {
  margin-bottom: 3rem;
}

.about-text p {
  font-family: 'Manjari', sans-serif;
  font-size: 1.1rem;
  color: var(--color-brand-gray-dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.about-trajectory {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  padding: 1.5rem 0.5rem;
  position: relative;
}

/* Linha vertical de conexão (Timeline) */
.about-trajectory::before {
  content: '';
  position: absolute;
  top: 3.5rem;
  left: 2.1rem; /* Alinhado ao centro do ícone */
  bottom: 3.5rem;
  width: 1px;
  background: linear-gradient(to bottom, rgba(255, 224, 13, 0.4), rgba(255, 224, 13, 0.05));
  z-index: 0;
}

.trajectory-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.trajectory-icon {
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111111; /* Cor de fundo sólida para "cortar" a linha */
  border: 1px solid rgba(255, 224, 13, 0.15);
  color: var(--color-brand-yellow);
  border-radius: 4px;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.trajectory-item:hover .trajectory-icon {
  background: var(--color-brand-yellow);
  color: #1a1a1a;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 224, 13, 0.2);
  border-color: var(--color-brand-yellow);
}

.trajectory-text h3 {
  font-family: 'Belleza', serif;
  font-size: 1.25rem;
  color: #ffffff;
  margin: 0.2rem 0 0.75rem 0;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.trajectory-text p {
  font-family: 'Manjari', sans-serif !important;
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
  color: var(--color-brand-gray-dark) !important;
  margin: 0 !important;
  max-width: 90%;
}

.about-stats-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (min-width: 480px) {
  .about-stats-compact {
    gap: 3rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
}

.stat-label {
  font-family: 'Manjari', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--color-brand-gray-medium);
  font-weight: 700;
}

.about-divider {
  display: none;
}

.section-description {
  font-family: 'Manjari', sans-serif;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.125rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .section-description {
    font-size: 1.25rem;
  }
}

.leading-relaxed {
  line-height: 1.625;
}

/* --- Specific Styles --- */
.contato-whatsapp-btn {
  display: inline-flex !important;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 4rem;
  letter-spacing: normal;
}

#contato {
  padding-bottom: 6rem;
}

.contato-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 640px) {
  .contato-footer {
    flex-direction: row;
  }
}

.contato-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contato-info a {
  color: inherit;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contato-info a:hover {
  color: #ffffff;
}

.contato-info span {
  font-size: 0.875rem;
}

.icon-accent {
  color: var(--color-brand-yellow);
  width: 1rem;
  height: 1rem;
}

.icon-btn {
  width: 1.25rem;
  height: 1.25rem;
}

.portfolio-actions {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.btn-outline {
  display: inline-block;
  padding: 1.15rem 2.5rem 0.85rem;
  border: 1px solid var(--color-brand-yellow);
  color: var(--color-brand-yellow);
  text-decoration: none;
  font-family: 'Manjari', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--color-brand-yellow);
  color: #000;
  transform: translateY(-3px);
}

/* --- Links e Estados --- */
a {
  color: inherit;
  text-decoration: none;
}

/* --- Responsividade (Media Queries) --- */
@media (max-width: 1024px) {
  .hero-top,
  .sobre-nos,
  .contato-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .diferenciais-grid {
    text-align: left;
  }

  /* Removido referências obsoletas de carrossel no mobile */

  .hero-bottom {
    flex-direction: column;
  }

  .feature-card-group {
    flex-direction: column;
  }

  header {
    flex-direction: column;
    gap: 20px;
  }
}
