:root {
  --brand-primary: #5f4466;
  --brand-secondary: #b18f7a;
  --brand-accent: #e7d0b4;
  --bg: #f8f5f2;
  --text: #2f2a2d;
  --muted: #6b6268;
  --card: #ffffff;
  --radius: 24px;
  --shadow: 0 14px 40px rgba(50, 30, 40, 0.1);
  --shadow-strong: 0 28px 60px rgba(50, 30, 40, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

video {
  width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(248, 245, 242, 0.9);
  border-bottom: 1px solid rgba(95, 68, 102, 0.12);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  height: 100px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid rgba(95, 68, 102, 0.28);
  color: var(--brand-primary);
}

.hero {
  padding: 68px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  font-weight: 700;
  margin-bottom: 14px;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  line-height: 1.1;
}

h1 span {
  color: var(--brand-primary);
}

.hero-copy {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 60ch;
  margin: 16px 0 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-list span {
  background: #fff;
  border: 1px solid rgba(95, 68, 102, 0.18);
  color: var(--brand-primary);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 8px 12px;
}

.hero-media {
  position: relative;
  min-height: 560px;
}

.hero-media-main {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-strong);
}

.hero-media-main img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 560px;
  object-fit: cover;
  width: 100%;
}

.hero-floating-card {
  position: absolute;
  right: -12px;
  bottom: 28px;
  width: min(250px, 52%);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(95, 68, 102, 0.12);
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  backdrop-filter: blur(10px);
  animation: floatCard 5s ease-in-out infinite;
}

.hero-floating-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.hero-floating-card div {
  padding: 14px 16px 16px;
}

.hero-floating-card strong,
.showcase-copy strong {
  display: block;
  margin-bottom: 4px;
}

.hero-floating-card span,
.showcase-copy span {
  color: var(--muted);
  font-size: 0.92rem;
}

.highlight-strip {
  padding: 18px 0 40px;
}

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

.strip-grid article,
.service-card,
.catalog-card,
.showcase-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(95, 68, 102, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.strip-grid article::before,
.service-card::before,
.catalog-card::before,
.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(231, 208, 180, 0.18), transparent 45%, rgba(95, 68, 102, 0.07));
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.strip-grid article:hover,
.service-card:hover,
.catalog-card:hover,
.showcase-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: var(--shadow-strong);
  border-color: rgba(95, 68, 102, 0.22);
}

.strip-grid article:hover::before,
.service-card:hover::before,
.catalog-card:hover::before,
.showcase-card:hover::before {
  opacity: 1;
}

.highlight-card {
  padding: 0 0 22px;
}

.highlight-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  margin-bottom: 18px;
}

.highlight-card-media img,
.service-card-media img,
.team-visual img,
.showcase-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.35s ease;
}

.highlight-card:hover .highlight-card-media img,
.service-card:hover .service-card-media img,
.team-visual:hover img,
.showcase-card:hover video {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.strip-grid h3 {
  margin: 0 22px 8px;
  font-size: 1rem;
}

.strip-grid p {
  margin: 0 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.strip-grid strong {
  display: block;
  margin: 12px 22px 0;
  color: var(--brand-primary);
}

.showcase-section {
  padding: 12px 0 28px;
}

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

.showcase-card video {
  aspect-ratio: 16 / 10;
}

.showcase-card-wide {
  grid-column: 1 / -1;
}

.showcase-card-wide video {
  aspect-ratio: 21 / 9;
}

.showcase-card {
  position: relative;
}

.showcase-card video {
  display: block;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: rgba(95, 68, 102, 0.62);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  border-radius: var(--radius);
  backdrop-filter: blur(2px);
}

.showcase-card:hover .showcase-overlay {
  opacity: 1;
}

.showcase-overlay-content {
  text-align: center;
  color: #fff;
  padding: 24px;
  max-width: 90%;
}

.showcase-overlay-content h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
}

.showcase-overlay-content p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}

.showcase-copy {
  padding: 18px 20px 20px;
}

.services,
.team,
.catalog,
.cta-final {
  padding: 72px 0;
}

h2 {
  margin: 0 0 22px;
  font-size: clamp(1.7rem, 3.1vw, 2.6rem);
  line-height: 1.16;
}

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

.service-card {
  padding: 24px;
}

.service-card-media {
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
}

.service-card h3 {
  margin: 0 0 8px;
}

.service-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
  color: #433d42;
}

.team {
  background: linear-gradient(180deg, #f8f5f2, #f2e9df);
}

.team-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: center;
}

.team-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-visual {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.team p {
  color: var(--muted);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill-list span {
  border-radius: 999px;
  background: #fff;
  color: var(--brand-primary);
  border: 1px solid rgba(95, 68, 102, 0.18);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 12px;
}

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

.catalog-grid article {
  padding: 22px;
}

.catalog-card {
  min-height: 182px;
}

.catalog-card h3,
.service-card h3,
.highlight-card h3 {
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
}

.catalog-card p,
.service-card p,
.highlight-card p,
.service-card li {
  position: relative;
  transition: transform 0.35s ease;
}

.catalog-card:hover h3,
.service-card:hover h3,
.highlight-card:hover h3 {
  color: var(--brand-primary);
  transform: translateX(4px);
}

.catalog-card:hover p,
.service-card:hover p,
.service-card:hover li,
.highlight-card:hover p {
  transform: translateX(3px);
}

.catalog-grid h3 {
  margin: 0 0 8px;
}

.catalog-grid p {
  margin: 0;
  color: var(--muted);
}

.cta-box {
  background: var(--brand-primary);
  color: #fff;
  text-align: center;
  border-radius: 28px;
  padding: 48px 20px;
  box-shadow: var(--shadow-strong);
}

.cta-box p {
  max-width: 66ch;
  margin: 0 auto 22px;
  color: #f7edf9;
}

.cta-logo {
  width: 220px;
  margin: 0 auto 20px;
}

.cta-box .btn-primary {
  background: var(--brand-accent);
  color: #382b30;
  box-shadow: none;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid rgba(95, 68, 102, 0.12);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 44px;
  width: auto;
}

.site-footer p,
.site-footer a {
  margin: 0;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 980px) {
  .hero-grid,
  .team-grid,
  .card-grid,
  .catalog-grid,
  .strip-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-card-wide {
    grid-column: auto;
  }

  .hero-media {
    min-height: auto;
  }

  .hero-media-main img {
    min-height: 360px;
  }

  .hero-floating-card {
    position: static;
    width: 100%;
    margin-top: 14px;
    animation: none;
  }

  .nav {
    gap: 12px;
  }

  .nav a:not(.btn) {
    display: none;
  }

  .services,
  .team,
  .catalog,
  .cta-final {
    padding: 56px 0;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ---- Reveal on scroll ---- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Foto da equipe ---- */
.team-full-photo {
  margin-top: 48px;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}

.team-full-photo img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 62%;
  display: block;
  filter: saturate(1.08) sepia(0.12) hue-rotate(-8deg) brightness(0.97);
  transition: transform 0.8s ease, filter 0.5s ease;
}

.team-full-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(120, 82, 54, 0.26) 0%,
    rgba(58, 38, 34, 0.34) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.team-full-photo:hover img {
  transform: scale(1.03);
  filter: saturate(1.14) sepia(0.14) hue-rotate(-10deg) brightness(0.98);
}

.team-full-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 32px;
  background: linear-gradient(to top, rgba(47, 42, 45, 0.82) 0%, transparent 100%);
  color: #fff;
  z-index: 2;
}

.team-full-label .eyebrow {
  color: var(--brand-accent);
  margin-bottom: 6px;
}

.team-full-label p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 72ch;
}

