:root {
  --cream: #f5f0e8;
  --paper: #fffaf2;
  --ink: #111111;
  --muted: #67615b;
  --purple: #4b3a78;
  --lavender: #b9a6e8;
  --soft: #e8e1d7;
  --shadow: 0 28px 80px rgba(17, 17, 17, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(22px, 5vw, 72px);
  background: rgba(245, 240, 232, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -0.04em;
}
nav { display: flex; gap: clamp(16px, 3vw, 34px); }
nav a {
  text-decoration: none;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
}
nav a:hover { color: var(--purple); }

.header-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
}
.header-actions nav {
  justify-content: flex-end;
}

.section {
  min-height: 100vh;
  padding: clamp(72px, 8vw, 120px) clamp(22px, 5vw, 72px);
}
.eyebrow {
  margin: 0 0 18px;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 900;
  color: var(--purple);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  align-items: center;
  gap: clamp(34px, 8vw, 96px);
  padding-top: clamp(56px, 7vw, 88px);
}
h1, h2 {
  font-family: 'Anton', Impact, sans-serif;
  font-weight: 400;
  line-height: .88;
  letter-spacing: .005em;
  margin: 0;
}
h1 {
  font-size: clamp(5rem, 13vw, 12.8rem);
}
.title-pill {
  display: inline-flex;
  margin: 28px 0 20px;
  padding: 10px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}
.social-stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.social-stack a {
  background: transparent;
  color: var(--ink);
  justify-content: flex-start;
  gap: 14px;
  min-height: 48px;
  padding: 0;
}
.social-stack a:hover {
  background: transparent;
  color: var(--purple);
}
.social-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transition: transform .2s ease, background .2s ease;
}
.social-stack a:hover .social-icon {
  transform: translateY(-2px);
  background: var(--purple);
}
.social-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}
.social-handle {
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 900;
  letter-spacing: .01em;
}
@media (max-width: 460px) {
  .social-icon { width: 48px; height: 48px; min-width: 48px; }
  .social-icon svg { width: 23px; height: 23px; }
}
.details p {
  margin: 8px 0;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 700;
}
.details a { text-decoration-thickness: 2px; text-underline-offset: 5px; }
.statement {
  max-width: 540px;
  margin: 30px 0;
  font-size: clamp(1.22rem, 2vw, 1.8rem);
  line-height: 1.15;
  font-weight: 900;
}
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.socials a, .email-button {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 900;
  letter-spacing: .02em;
  transition: transform .2s ease, background .2s ease;
}
.socials a:hover, .email-button:hover {
  transform: translateY(-2px);
  background: var(--purple);
}
.hero-visual { position: relative; }
.photo-frame {
  overflow: hidden;
  border-radius: 44px;
  box-shadow: var(--shadow);
  background: var(--lavender);
}
.hero-frame {
  aspect-ratio: 4 / 5;
  transform: rotate(1.5deg);
}
.hero-frame img, .contact-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.accent-card {
  position: absolute;
  left: -32px;
  bottom: 34px;
  background: var(--ink);
  color: white;
  border: 5px solid var(--cream);
  border-radius: 24px;
  padding: 18px 22px;
  font-family: 'Anton', Impact, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 3.8rem);
  line-height: .88;
  transform: rotate(-5deg);
}

.brands-section {
  background: var(--paper);
  min-height: auto;
}
.centered { text-align: center; margin-bottom: 42px; }
.section-heading h2 {
  font-size: clamp(3.8rem, 8vw, 8.5rem);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  max-width: 1220px;
  margin: 0 auto;
}
.brand-logo-grid { align-items: center; }
.brand-logo-card {
  aspect-ratio: 1;
  border-radius: 999px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 8px;
  box-shadow: 0 18px 34px rgba(17,17,17,.10);
  border: 5px solid rgba(255,255,255,.92);
  transition: transform .22s ease, box-shadow .22s ease;
}
.brand-logo-card:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 0 26px 48px rgba(17,17,17,.18);
}
.brand-logo-card img {
  max-width: 96%;
  max-height: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.brand-logo-card.text-logo span {
  font-family: 'League Spartan', Arial, sans-serif;
  font-weight: 900;
  text-align: center;
  line-height: .95;
  letter-spacing: -.04em;
  font-size: clamp(.95rem, 1.6vw, 1.32rem);
}
.brand-neon { background:#00d6ef; color:#073047; }
.brand-yadea { background:#e6f5ff; color:#008fd3; }
.brand-corpele { background:#ad6a4b; color:#fff6ee; }
.brand-seven { background:#f37021; color:#fff; }
.brand-viv { background:#111; color:#fff; }
.brand-nomade { background:#efe7dd; color:#17141f; }

.videos-section {
  background: var(--cream);
  color: var(--ink);
}
.videos-section .eyebrow {
  color: var(--purple);
  font-size: clamp(1.6rem, 3.2vw, 2.9rem);
  letter-spacing: .18em;
}
.split-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 480px);
  align-items: end;
  gap: 28px;
  margin-bottom: 42px;
}
.split-heading p:last-child {
  color: var(--muted);
  font-size: clamp(1.22rem, 2.1vw, 1.58rem);
  line-height: 1.45;
  margin: 0 0 8px;
  font-weight: 800;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(130px, 1fr));
  gap: clamp(16px, 2vw, 26px);
}
.video-card {
  text-decoration: none;
  color: var(--ink);
  display: block;
}
.phone {
  position: relative;
  aspect-ratio: 9 / 16;
  padding: 9px;
  background: #09080d;
  border: 2px solid rgba(255,255,255,.14);
  border-radius: 30px;
  box-shadow: 0 24px 58px rgba(17,17,17,.22);
  transition: transform .22s ease, box-shadow .22s ease;
}
.phone::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 12px;
  background: #09080d;
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  padding-left: 3px;
  box-shadow: 0 10px 30px rgba(0,0,0,.28);
}
.video-card p {
  margin: 12px 0 0;
  text-align: center;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}
.video-card:hover .phone {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 32px 70px rgba(17,17,17,.30);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) 1fr;
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  background: var(--cream);
}
.contact-frame {
  aspect-ratio: 4 / 5;
  transform: rotate(-2deg);
}

.contact-copy .eyebrow {
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  letter-spacing: .18em;
  line-height: 1.45;
}

.contact-copy h2 {
  font-size: clamp(5rem, 12vw, 12rem);
}
.contact-copy p:not(.eyebrow) {
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.45;
  max-width: 570px;
  font-weight: 800;
  color: var(--muted);
}
.email-button {
  margin-top: 18px;
  font-size: clamp(.98rem, 2vw, 1.2rem);
}

footer {
  padding: 30px 22px;
  text-align: center;
  background: var(--ink);
  color: white;
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .brand-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .video-grid { grid-template-columns: repeat(4, minmax(130px, 1fr)); }
}

@media (max-width: 820px) {
  .site-header { position: static; }
  nav { gap: 14px; }
  nav a { font-size: .72rem; letter-spacing: .1em; }
  .hero-section, .contact-section, .split-heading {
    grid-template-columns: 1fr;
  }
  .hero-visual { order: -1; }
  .photo-frame { border-radius: 34px; }
  .hero-frame, .contact-frame { max-height: 620px; }
  .accent-card { left: 18px; bottom: -18px; }
  .brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    max-width: 440px;
  }
  .brand-logo-card {
    border-width: 3px;
    padding: 6px;
    box-shadow: 0 10px 22px rgba(17,17,17,.10);
  }
  .brand-logo-card img {
    max-width: 94%;
    max-height: 84%;
  }
  .video-grid { grid-template-columns: repeat(2, minmax(130px, 1fr)); }
  .section { min-height: auto; }
}

@media (max-width: 380px) {
  .brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 330px;
  }
}

@media (max-width: 460px) {
  .site-header { padding: 16px; }
  .logo { width: 38px; height: 38px; }
  nav a { font-size: .66rem; }
  h1 { font-size: 4.4rem; }
  .section-heading h2, 
.contact-copy .eyebrow {
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  letter-spacing: .18em;
  line-height: 1.45;
}

.contact-copy h2 { font-size: 4rem; }
  .brand-logo-card { padding: 6px; border-width: 4px; }
  .video-grid { gap: 14px; }
  .phone { border-radius: 24px; padding: 7px; }
  .phone img { border-radius: 18px; }
}


/* Brand logo fine-tuning: keep wide/tall logos fully visible inside circular badges */
.logo-yadea img,
.logo-natura img,
.logo-semparar img,
.logo-mcdonalds img,
.logo-51ice img {
  max-width: 76%;
  max-height: 76%;
}
.logo-rexona img {
  max-width: 68%;
  max-height: 68%;
}
.logo-omo img {
  max-width: 76%;
  max-height: 76%;
}
.logo-mercado img {
  max-width: 82%;
  max-height: 82%;
}

.logo-hellmanns img {
  max-width: 94%;
  max-height: 70%;
}
.logo-bozzano img {
  max-width: 82%;
  max-height: 82%;
}
.logo-fusion img {
  max-width: 86%;
  max-height: 90%;
}

/* v11 social-link fix: keep only the icons in black circles; handles remain black text outside. */
.socials.social-stack {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.socials.social-stack a {
  background: transparent;
  color: var(--ink);
  padding: 0;
  min-height: 52px;
  justify-content: flex-start;
  gap: 14px;
  border-radius: 0;
}
.socials.social-stack a:hover {
  background: transparent;
  color: var(--purple);
}
.socials.social-stack .social-icon {
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
}
.socials.social-stack a:hover .social-icon {
  background: var(--purple);
}
.socials.social-stack .social-handle {
  color: var(--ink);
}
.socials.social-stack a:hover .social-handle {
  color: var(--purple);
}

/* v12 self-hosted video modal */
body.modal-open {
  overflow: hidden;
}
.video-card {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-align: inherit;
}
.video-card:focus-visible .phone {
  outline: 3px solid var(--lavender);
  outline-offset: 5px;
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.video-modal.is-open {
  display: flex;
}
.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .82);
  backdrop-filter: blur(10px);
}
.video-modal__content {
  position: relative;
  z-index: 1;
  width: min(92vw, 440px);
  max-height: 92vh;
  display: grid;
  gap: 12px;
}
.video-modal__title {
  margin: 0;
  color: white;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  font-size: .95rem;
}
.video-modal video {
  width: 100%;
  max-height: 82vh;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  background: #000;
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0,0,0,.55);
}
.video-modal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 0;
  background: white;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(0,0,0,.28);
}
.video-modal__close:hover {
  transform: translateY(-1px);
}
@media (max-width: 520px) {
  .video-modal__close {
    top: -10px;
    right: -8px;
  }
  .video-modal video {
    border-radius: 22px;
  }
}

/* v17 mobile brand grid refinement: 25 logos as 5 x 5, with improved mobile legibility */
@media (max-width: 820px) {
  .brands-section {
    padding-left: 12px;
    padding-right: 12px;
  }
  .brand-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-width: 430px;
    gap: 7px;
  }
  .brand-logo-card {
    padding: 3px;
    border-width: 2px;
    box-shadow: 0 8px 18px rgba(17,17,17,.10);
  }
  .brand-logo-card img {
    max-width: 98%;
    max-height: 90%;
  }
  .logo-yadea img,
  .logo-natura img,
  .logo-semparar img,
  .logo-mcdonalds img,
  .logo-51ice img {
    max-width: 82%;
    max-height: 82%;
  }
  .logo-rexona img {
    max-width: 76%;
    max-height: 76%;
  }
  .logo-omo img {
    max-width: 82%;
    max-height: 82%;
  }
  .logo-mercado img {
    max-width: 90%;
    max-height: 90%;
  }
  .logo-hellmanns img {
    max-width: 96%;
    max-height: 72%;
  }
  .logo-bozzano img {
    max-width: 86%;
    max-height: 86%;
  }
  .logo-fusion img {
    max-width: 92%;
    max-height: 92%;
  }
  .brand-logo-card img[alt="Kopenhagen logo"] {
    max-width: 104%;
    max-height: 82%;
    filter: brightness(.78) saturate(1.12) contrast(1.08);
  }
  .brand-logo-card img[alt="La Roche-Posay logo"] {
    max-width: 108%;
    max-height: 76%;
  }
  .brand-logo-card img[alt="Cor & Pele logo"] {
    max-width: 110%;
    max-height: 80%;
  }
  .brand-logo-card img[alt="V.I.V. London logo"] {
    max-width: 108%;
    max-height: 82%;
  }
}

@media (max-width: 380px) {
  .brand-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-width: 360px;
    gap: 6px;
  }
  .brands-section {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* v18 tablet brand-grid refinement: iPad/tablet gets larger circles than phone while keeping 5 x 5 layout */
@media (min-width: 700px) and (max-width: 1100px) {
  .brands-section {
    padding-left: clamp(24px, 4vw, 48px);
    padding-right: clamp(24px, 4vw, 48px);
  }
  .brand-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    max-width: 920px;
    gap: clamp(14px, 2vw, 22px);
  }
  .brand-logo-card {
    padding: 7px;
    border-width: 4px;
    box-shadow: 0 14px 30px rgba(17,17,17,.10);
  }
  .brand-logo-card img {
    max-width: 96%;
    max-height: 88%;
  }
  .logo-yadea img,
  .logo-natura img,
  .logo-semparar img,
  .logo-mcdonalds img,
  .logo-51ice img {
    max-width: 78%;
    max-height: 78%;
  }
  .logo-rexona img {
    max-width: 72%;
    max-height: 72%;
  }
  .logo-omo img {
    max-width: 78%;
    max-height: 78%;
  }
  .logo-mercado img {
    max-width: 86%;
    max-height: 86%;
  }
  .logo-hellmanns img {
    max-width: 95%;
    max-height: 72%;
  }
  .logo-bozzano img {
    max-width: 84%;
    max-height: 84%;
  }
  .logo-fusion img {
    max-width: 90%;
    max-height: 90%;
  }
  .brand-logo-card img[alt="Kopenhagen logo"] {
    max-width: 104%;
    max-height: 82%;
    filter: brightness(.78) saturate(1.12) contrast(1.08);
  }
  .brand-logo-card img[alt="La Roche-Posay logo"] {
    max-width: 108%;
    max-height: 76%;
  }
  .brand-logo-card img[alt="Cor & Pele logo"] {
    max-width: 110%;
    max-height: 80%;
  }
  .brand-logo-card img[alt="V.I.V. London logo"] {
    max-width: 108%;
    max-height: 82%;
  }
}

/* v19 social icon rows + footer location nowrap */
.socials.social-icons-only {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  margin-top: 28px;
}
.socials.social-icons-only a {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(17,17,17,.16);
}
.socials.social-icons-only a:hover {
  background: var(--purple);
  color: #fff;
  transform: translateY(-2px);
}
.socials.social-icons-only svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.contact-socials {
  margin: 20px 0 2px;
}
.footer-location {
  white-space: nowrap;
}
@media (max-width: 520px) {
  footer p {
    max-width: 330px;
    margin: 0 auto;
    line-height: 1.45;
  }
  .footer-location {
    display: inline-block;
  }
}

/* v21 alignment refinement: align text blocks optically and center icon rows within the text columns */
.hero-copy,
.contact-copy {
  text-align: left;
}

/* Paulo hero: nudge supporting copy to align visually with the heavy Anton headline */
.hero-copy > .eyebrow,
.hero-copy > .title-pill,
.hero-copy > .details,
.hero-copy > .statement {
  margin-left: 0.28rem;
}

/* Center the icon-only social row within the hero text block, not against the far-left edge */
.hero-copy .socials.social-icons-only {
  width: min(440px, 100%);
  justify-content: center;
  margin-left: 0;
  margin-right: auto;
}

/* Contact page: keep headline and supporting line aligned, then center the icons within that same column */
.contact-copy > .eyebrow,
.contact-copy > h2,
.contact-copy > p:not(.eyebrow) {
  margin-left: 0;
  text-align: left;
}

.contact-copy .socials.social-icons-only,
.contact-socials {
  width: min(570px, 100%);
  justify-content: center;
  margin-left: 0;
  margin-right: auto;
}

@media (max-width: 820px) {
  .hero-copy .socials.social-icons-only,
  .contact-copy .socials.social-icons-only,
  .contact-socials {
    width: 100%;
    justify-content: center;
  }
}


/* v23 language selector: compact EN | PT-BR pill buttons positioned under the main header nav */
.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  margin: 0;
  padding: 0;
}
.lang-pill {
  appearance: none;
  border: 1.6px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: 999px;
  padding: 5px 10px;
  font-family: inherit;
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.lang-pill:hover,
.lang-pill:focus-visible {
  transform: translateY(-1px);
  border-color: var(--purple);
  color: var(--purple);
  outline: none;
}
.lang-pill.is-active {
  background: var(--ink);
  color: #fff;
}
.lang-pill.is-active:hover,
.lang-pill.is-active:focus-visible {
  background: var(--purple);
  color: #fff;
}
.lang-divider {
  font-weight: 900;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
  }
  .header-actions {
    gap: 8px;
  }
  .language-toggle {
    gap: 5px;
  }
  .lang-pill {
    padding: 5px 9px;
    font-size: .72rem;
    letter-spacing: .1em;
  }
  .lang-divider {
    font-size: .72rem;
  }
}

@media (max-width: 460px) {
  .header-actions {
    max-width: calc(100% - 52px);
  }
  .language-toggle {
    transform: none;
    transform-origin: right center;
  }
  .lang-pill {
    padding: 5px 8px;
    font-size: .66rem;
    letter-spacing: .08em;
  }
  .lang-divider {
    font-size: .66rem;
  }
}

