*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.hamburger {
  display: none;
}

:root {
  --purple:       #7C3AED;
  --purple-hover: #6D28D9;
  --purple-light: #C4B5FD;
  --bg:           #F7F5F9;
  --text:         #1A1A1A;
  --muted:        #6B7280;
  --white:        #FFFFFF;
  --border:       #E5E0EF;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* ─── HEADER ─── */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 64px;
  height: 68px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: 'Inter', sans-serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.04em;
}

.logo .dot {
  color: var(--purple);
}

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

nav a.active {
  color: var(--white);
  background: var(--purple);
  padding: 6px 14px;
  border-radius: 6px;
}

nav a:hover {
  color: var(--purple);
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-whatsapp:hover {
  background: var(--purple-hover);
}

.btn-whatsapp svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ─── HERO ─── */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 64px;
  min-height: calc(100vh - 68px);
  gap: 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  background: radial-gradient(ellipse at center, #EDE9FF 0%, #F3F0FF 55%, transparent 72%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-left {
  flex: 1;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--purple);
  font-style: italic;
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
  max-width: 380px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: var(--purple-hover);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.btn-ghost:hover {
  color: var(--purple);
}

.hero-right {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 580px;
}

.hero-right img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ─── MARCAS ─── */
.brands {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 32px 64px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.brands-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.brands-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.brands-track-wrapper {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 64px;
  width: max-content;
  animation: marquee 22s linear infinite;
  will-change: transform;
}

.brands-track:hover {
  animation-play-state: paused;
}

.brands-track img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.3s, opacity 0.3s;
  flex-shrink: 0;
}

.brands-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.333%); }
}

/* ─── PORTFÓLIO ─── */
.portfolio {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 64px;
  background: var(--bg);
}

.portfolio-left {
  max-width: 300px;
  flex-shrink: 0;
}

.section-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}

.portfolio-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 18px;
}

.portfolio-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
}

/* ── Grid de fotos ── */
.portfolio-grid {
  display: flex;
  gap: 8px;
  flex: 1;
  height: 420px;
  overflow: hidden;
  border-radius: 12px;
}

.pg-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}

.pg-col--tall {
  flex: 1.1;
}

.pg-col--mid {
  flex: 1;
}

.pg-col img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  transition: transform 0.4s ease;
}

.pg-col--tall img {
  height: 100%;
}

.pg-col--mid img {
  height: calc(50% - 4px);
}

.pg-col img:hover {
  transform: scale(1.03);
}

/* ─── SERVIÇOS ─── */
.services {
  padding: 80px 64px;
  background: var(--white);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.services-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 12px;
}

.services-title .highlight {
  color: var(--purple);
  font-style: italic;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.08);
  transform: translateY(-3px);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: #EDE9FF;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 4px;
}

.service-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
  flex: 1;
}

.service-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  transition: gap 0.2s, opacity 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.service-link:hover {
  opacity: 0.75;
}

/* ─── SÓCIAS ─── */
.partners {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 64px;
  background: var(--bg);
}

.partners-left {
  max-width: 280px;
  flex-shrink: 0;
}

.partners-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-top: 12px;
  margin-bottom: 16px;
}

.partners-title .highlight {
  color: var(--purple);
  font-style: italic;
}

.partners-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
}

.partners-profiles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  flex: 1;
  align-items: start;
}

.partner-card--photo {
  border-radius: 12px;
  overflow: hidden;
  height: 320px;
}

.partner-card--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.partner-card--info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
}

.partner-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.partner-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
}

.partner-bio {
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
}

.partner-socials {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}

.social-icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  padding: 6px;
}

.social-icon svg {
  width: 100%;
  height: 100%;
}

.social-icon:hover {
  border-color: var(--purple);
  color: var(--purple);
}

/* ─── CTA ─── */
.cta {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 64px;
  background: var(--purple);
  position: relative;
  overflow: hidden;
}

.cta-left {
  flex: 0 0 420px;
  max-width: 420px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
}

.cta-divider {
  width: 1px;
  height: 80px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.cta-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  flex: 0 0 auto;
}

.btn-whatsapp-cta {
  background: var(--white);
  color: var(--purple);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 8px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-whatsapp-cta svg {
  width: 17px;
  height: 17px;
}

.btn-whatsapp-cta:hover {
  background: #F0EBFF;
}

.cta-email {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.cta-email:hover {
  color: var(--white);
}

.cta-watermark {
  font-family: 'Playfair Display', serif;
  font-size: 14rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.07);
  position: absolute;
  right: 48px;
  bottom: 0px;
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 4px;
}

.cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 8px;
}

.cta-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.cta-stat:first-child {
  padding-left: 0;
}

.cta-stat:last-child {
  border-right: none;
}

.cta-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}

.cta-stat strong span {
  font-size: 1.3rem;
  color: var(--purple-light);
}

.cta-stat p {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}


.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  background: var(--white);
  border-top: 1px solid var(--border);
  gap: 40px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-contact a,
.footer-contact span {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--purple);
}

.footer-bottom-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-dev {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--muted);
}

.footer-dev a {
  color: var(--purple);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.footer-dev a:hover {
  opacity: 0.75;
}

.footer-contact strong {
  font-weight: 600;
  color: var(--text);
}



/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 16px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.85);
  transition: transform 0.25s ease;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

#lightbox-img {
  max-width: 420px;
  max-height: 240px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: var(--text);
}

.brands-track img {
  cursor: zoom-in;
}

/* ─── LOGO ─── */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}


/* ─────────────────────────────────────
   RESPONSIVO
───────────────────────────────────── */

/* ─── TABLET (até 1024px) ─── */
@media (max-width: 1024px) {
  header {
    padding: 0 32px;
  }

  nav {
    gap: 24px;
  }

  .hero {
    padding: 60px 32px;
    gap: 40px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .brands {
    padding: 28px 32px;
  }

  .portfolio {
    padding: 60px 32px;
    gap: 40px;
  }

  .portfolio-title {
    font-size: 1.8rem;
  }

  .services {
    padding: 60px 32px;
  }

  .services-title {
    font-size: 1.8rem;
  }

  .partners {
    padding: 60px 32px;
    gap: 32px;
  }

  .partners-title {
    font-size: 1.7rem;
  }

  .cta {
    padding: 48px 32px;
    gap: 40px;
  }

  .cta-title {
    font-size: 1.7rem;
  }

  .footer {
    padding: 28px 32px;
  }
}

/* ─── MOBILE (até 768px) ─── */
@media (max-width: 768px) {

  /* Header */
  header {
    padding: 0 24px;
    height: auto;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
  }

  header .logo-link {
    padding: 16px 0;
  }

  nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    border-top: 1px solid var(--border);
    padding: 8px 0 16px;
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 10px 0;
    font-size: 0.95rem;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .btn-whatsapp {
    display: none;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 16px 0;
    background: none;
    border: none;
  }

  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    padding: 48px 24px;
    gap: 40px;
    min-height: auto;
    text-align: left;
  }

  .hero::after {
    display: none;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-right {
    width: 100%;
    max-width: 100%;
  }

  /* Brands */
  .brands {
    padding: 24px;
    gap: 16px;
  }

  .brands-label {
    display: none;
  }

  .brands-divider {
    display: none;
  }

  /* Portfolio */
  .portfolio {
    flex-direction: column;
    padding: 48px 24px;
    gap: 40px;
  }

  .portfolio-left {
    max-width: 100%;
  }

  .portfolio-grid {
    height: auto;
    flex-direction: column;
  }

  .pg-col {
    flex-direction: row;
    height: 200px;
  }

  .pg-col--tall {
    height: 260px;
  }

  .pg-col--mid img {
    height: 100%;
    width: calc(50% - 4px);
  }

  /* Serviços */
  .services {
    padding: 48px 24px;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
  }

  .services-title {
    font-size: 1.8rem;
  }

  .services-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Sócias */
  .partners {
    flex-direction: column;
    padding: 48px 24px;
    gap: 40px;
  }

  .partners-left {
    max-width: 100%;
  }

  .partners-profiles {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .partner-card--photo {
    height: 240px;
  }

  /* CTA */
  .cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 48px 24px;
    gap: 32px;
    text-align: left;
  }

  .cta-divider {
    display: none;
  }

  .cta-right {
    align-items: flex-start;
    width: 100%;
  }

  .cta-actions .btn-whatsapp-cta {
    width: 100%;
    justify-content: center;
  }

  .cta-watermark {
    font-size: 7rem;
    right: 16px;
    bottom: -10px;
  }

  /* Footer */
  .footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }

  .footer-contact span {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    line-height: 2;
  }

  .footer-bottom-right {
    align-items: center;
  }
}



/* ─── MOBILE PEQUENO (até 480px) ─── */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .partners-profiles {
    grid-template-columns: 1fr;
  }

  .partner-card--photo {
    height: 300px;
  }

  .portfolio-grid {
    gap: 6px;
  }

  .pg-col {
    height: 160px;
  }
}