:root {
  --bg: #F3E6D8;
  --bg-alt: #F6DDC9;
  --accent: #E8967A;
  --accent-dark: #D97D5D;
  --text: #1A1A1A;
  --text-soft: #4A4038;
  --white: #FFFFFF;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 20px;
}

h1 { font-size: clamp(2rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }

p { margin: 0 0 16px; color: var(--text-soft); }

a { color: inherit; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { background: var(--accent-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
}
.btn-outline:hover { background: var(--text); color: var(--bg); }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text);
}
.brand-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-socials a {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.brand-socials a:hover { color: var(--accent-dark); }
.social-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-alt);
  flex-shrink: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}
.brand-socials a:hover .social-icon-wrap {
  background: var(--accent);
  transform: scale(1.08);
}
.social-icon {
  width: 10px;
  height: 10px;
  color: var(--accent-dark);
  transition: color 0.25s ease;
}
.brand-socials a:hover .social-icon { color: var(--white); }
.brand-socials-sep { font-size: 0.8rem; color: rgba(26, 26, 26, 0.25); }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}
.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 2px;
}

/* HERO */
.hero { padding: 64px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-dark);
  margin-bottom: 12px;
}
.hero-sub { font-size: 1.05rem; max-width: 46ch; }
.hero-photo {
  position: relative;
  background: var(--white);
  padding: 20px;
}
.hero-photo img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; }

/* MARCAS */
.marcas { padding: 8px 0 44px; }
.marcas-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 22px;
}
.marcas-faixa {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marcas-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 32px;
  animation: marcas-scroll 34s linear infinite;
}
.marcas-faixa:hover .marcas-track { animation-play-state: paused; }
.marca-logo {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--white);
}
.marca-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes marcas-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marcas-track { animation: none; }
}

/* STATS */
.stats { background: var(--text); padding: 40px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  font-weight: 600;
}
.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}

/* SOBRE */
.sobre { padding: 88px 0; }
.sobre-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: stretch;
}
.sobre-photo {
  position: relative;
  isolation: isolate;
}
.sobre-photo::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 16px;
  right: -16px;
  bottom: -16px;
  left: 16px;
  background: var(--accent);
}
.sobre-photo,
.porque-photo {
  background: var(--white);
  padding: 10px;
  box-shadow: 0 14px 30px rgba(26, 26, 26, 0.12);
}
.sobre-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.sobre-highlight {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
  padding: 20px 24px;
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
}
.cidades {
  list-style: none;
  padding: 0;
  margin: 24px 0 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.cidades-legenda {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
  margin: 4px 0 18px;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
}

.cidade-card {
  position: relative;
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(26, 26, 26, 0.07);
  border-radius: 6px;
  padding: 18px 18px 16px;
  cursor: default;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1),
              box-shadow 0.35s cubic-bezier(.22,1,.36,1),
              border-color 0.35s ease;
}
.cidade-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.22,1,.36,1);
}
.cidade-card:hover,
.cidade-card:focus-visible {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 16px 32px rgba(26, 26, 26, 0.14);
}
.cidade-card:hover::after,
.cidade-card:focus-visible::after {
  transform: scaleX(1);
}
.cidade-badge {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--bg-alt);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.cidade-card:hover .cidade-badge,
.cidade-card:focus-visible .cidade-badge {
  background: var(--accent);
}
.cidade-badge span {
  display: block;
  transform: rotate(-45deg);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.3s ease;
}
.cidade-card:hover .cidade-badge span,
.cidade-card:focus-visible .cidade-badge span {
  color: var(--white);
}
.cidade-nome {
  font-size: 0.85rem;
  color: var(--text-soft);
  transition: color 0.2s ease;
}
.cidade-card:hover .cidade-nome { color: var(--text); }
.cidade-pct {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}
.cidade-bar {
  display: block;
  height: 5px;
  border-radius: 3px;
  background: rgba(26, 26, 26, 0.08);
  overflow: hidden;
}
.cidade-bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.8s cubic-bezier(.22,1,.36,1);
}
.cidade-card:hover .cidade-bar-fill,
.cidade-card:focus-visible .cidade-bar-fill {
  width: var(--pct);
}

/* SECTION HEADINGS */
.section-title { text-align: center; }
.section-sub {
  text-align: center;
  max-width: 52ch;
  margin: 0 auto 48px;
}

/* PORTFOLIO */
.portfolio { padding: 88px 0; background: var(--bg-alt); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.portfolio-card {
  background: var(--white);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Portfolio cards with real screenshot (clickable, link to the reel) */
.portfolio-card-media {
  position: relative;
  padding: 0;
  gap: 0;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1),
              box-shadow 0.35s cubic-bezier(.22,1,.36,1);
}
.portfolio-card-media:hover,
.portfolio-card-media:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(26, 26, 26, 0.18);
}
.portfolio-media {
  position: relative;
  aspect-ratio: 280 / 438;
  overflow: hidden;
  background: var(--text);
}
.portfolio-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(.22,1,.36,1);
}
.portfolio-card-media:hover .portfolio-media img,
.portfolio-card-media:focus-visible .portfolio-media img {
  transform: scale(1.07);
}
.portfolio-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.35) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.portfolio-card-media:hover .portfolio-media::after,
.portfolio-card-media:focus-visible .portfolio-media::after {
  opacity: 1;
}
.portfolio-media .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}
.portfolio-card-media .portfolio-info {
  padding: 14px 18px 18px;
}
.portfolio-card-media .portfolio-views { margin: 0; }

.tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  background: var(--accent);
  color: var(--white);
}
.tag-tiktok { background: var(--text); }
.portfolio-title {
  font-size: 0.95rem;
  color: var(--text);
  margin: 0;
  min-height: 44px;
}
.portfolio-views {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  color: var(--accent-dark);
}

/* PORQUE */
.porque { padding: 88px 0; }
.porque-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: stretch;
}
.porque-photo {
  position: relative;
  isolation: isolate;
}
.porque-photo::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 16px;
  left: -16px;
  right: 16px;
  bottom: -16px;
  background: var(--accent);
}
.porque-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.porque-lista {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.porque-lista b {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.porque-lista p { margin: 0; }

/* BÔNUS */
.bonus { background: var(--accent); padding: 40px 0; }
.bonus-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.bonus-tag {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  background: var(--text);
  padding: 8px 18px;
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), 0 6px 16px rgba(26, 26, 26, 0.35);
}
.bonus-tag::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: bonus-shine 2.8s ease-in-out infinite;
}
@keyframes bonus-shine {
  0% { left: -150%; }
  55% { left: 150%; }
  100% { left: 150%; }
}
.bonus-texto {
  margin: 0;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 500;
}
.bonus-btn {
  margin-top: 4px;
  background: var(--white);
  color: var(--accent-dark);
  font-weight: 700;
  animation: bonus-pulse 1.8s ease-in-out infinite;
}
.bonus-btn:hover {
  background: var(--text);
  color: var(--white);
}
@keyframes bonus-pulse {
  0%, 100% { box-shadow: 0 8px 20px rgba(26, 26, 26, 0.22); }
  50% { box-shadow: 0 8px 26px rgba(26, 26, 26, 0.32), 0 0 0 7px rgba(255, 255, 255, 0.18); }
}
@media (prefers-reduced-motion: reduce) {
  .bonus-tag::after { animation: none; }
  .bonus-btn { animation: none; }
}

/* DEPOIMENTOS */
.depoimentos { padding: 88px 0; background: var(--bg-alt); overflow: hidden; }
.depoimentos-faixa {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.depoimentos-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 20px;
  animation: depoimentos-scroll 40s linear infinite;
}
.depoimentos-faixa:hover .depoimentos-track { animation-play-state: paused; }
.depoimento-card {
  flex: 0 0 auto;
  width: 220px;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}
.depoimento-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@keyframes depoimentos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .depoimentos-track { animation: none; }
}

/* CONTATO */
.contato { padding: 88px 0 100px; background: var(--text); color: var(--white); }
.contato h2 { color: var(--white); text-align: center; }
.contato .section-sub { color: rgba(255,255,255,0.7); }
.contato-inner { max-width: 760px; }

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.85); }
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border-radius: 2px;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255,255,255,0.4); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.field select option { color: var(--text); }
.form-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin: 4px 0 0;
}
.contato .btn-primary { justify-self: start; }

/* FOOTER */
.site-footer { background: #120F0C; color: rgba(255,255,255,0.7); padding: 48px 0; }
.footer-inner { text-align: center; }
.footer-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-tag { font-size: 0.85rem; margin-bottom: 20px; }
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-links a { text-decoration: none; font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin: 0; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero-grid,
  .sobre-grid,
  .porque-grid {
    grid-template-columns: 1fr;
  }
  .sobre-photo, .porque-photo {
    max-width: 220px;
    margin: 0 auto;
  }
  .sobre-photo img, .porque-photo img {
    height: auto;
    aspect-ratio: 1/1;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { gap: 16px; }
  .lead-form { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .header-inner { flex-wrap: wrap; row-gap: 4px; }
  .brand-block { flex-direction: column; align-items: flex-start; gap: 2px; }
  .brand-socials { font-size: 0.75rem; }
  .depoimento-card { width: 170px; }
}

@media (max-width: 520px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .nav a:not(.nav-cta) { display: none; }
}
