*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:  #ffffff;
  --black:  #111111;
  --text:   #1a1a1a;
  --muted:  #999999;
  --border: #e4e4e4;
  --font:   'Josefin Sans', sans-serif;
  --serif:  'Cormorant Garamond', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  background: var(--white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ─── HEADER ─────────────────────────────── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 52px 60px 36px;
  text-align: center;
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  transition: padding 0.35s ease;
}

.header-brand {
  display: block;
  font-family: 'Tenor Sans', sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #000;
  text-decoration: none;
  margin-bottom: 52px;
  max-height: 90px;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.35s ease, margin-bottom 0.35s ease;
}

/* Ao rolar: o nome/logo some, sobra só a navegação (vale desktop e mobile) */
header.scrolled {
  padding-top: 18px;
  padding-bottom: 18px;
}

header.scrolled .header-brand {
  opacity: 0;
  max-height: 0;
  margin-bottom: 0;
  pointer-events: none;
}

.header-sub {
  display: block;
  font-family: 'Tenor Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #000;
  margin-top: 6px;
}

@media (max-width: 768px) {
  .header-sub { font-size: 11px; }
}

nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.nav-link {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  padding-bottom: 3px;
  transition: color 0.2s;
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover { color: #000; }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
.nav-link.active { color: #000; }

/* ─── PORTFOLIO DROPDOWN ─────────────────── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 28px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown-item {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  padding: 15px 24px;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: color 0.2s;
}

.nav-dropdown-item:last-child {
  border-bottom: none;
}

.nav-dropdown-item:hover {
  color: #000;
  background: rgba(0, 0, 0, 0.03);
}

/* ─── MAIN ───────────────────────────────── */
main {
  padding-top: 220px;
  min-height: 100vh;
}

/* ─── GOOEY TEXT HERO ───────────────────── */
.gooey-section {
  height: auto;
  padding: 40px 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.gooey-svg {
  position: absolute;
  height: 0;
  width: 0;
}

.gooey-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 140px;
}

.gooey-text {
  position: absolute;
  display: inline-block;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  color: #111;
  letter-spacing: 0.03em;
  line-height: 1.3;
  padding: 0 48px;
  user-select: none;
  width: 100%;
  will-change: filter, opacity;
  transform: translateZ(0);
}

/* Cards Parallax — sticky scroll */
.cards-parallax {
  position: relative;
}

.cp-wrap {
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: sticky;
  top: 0;
  padding: 2.5rem 1rem 0;
}

/* z-index crescente: cada card empilha sobre o anterior */
.cp-wrap:nth-child(1)  { z-index: 1; }
.cp-wrap:nth-child(2)  { z-index: 2; }
.cp-wrap:nth-child(3)  { z-index: 3; }
.cp-wrap:nth-child(4)  { z-index: 4; }
.cp-wrap:nth-child(5)  { z-index: 5; }
.cp-wrap:nth-child(6)  { z-index: 6; }
.cp-wrap:nth-child(7)  { z-index: 7; }
.cp-wrap:nth-child(8)  { z-index: 8; }
.cp-wrap:nth-child(9)  { z-index: 9; }
.cp-wrap:nth-child(10) { z-index: 10; }
.cp-wrap:nth-child(11) { z-index: 11; }
.cp-wrap:nth-child(12) { z-index: 12; }
.cp-wrap:nth-child(13) { z-index: 13; }
.cp-wrap:nth-child(14) { z-index: 14; }
.cp-wrap:nth-child(15) { z-index: 15; }
.cp-wrap:nth-child(16) { z-index: 16; }

/* Formato feed Instagram (4:5), limitado à altura da tela */
.cp-card {
  height: min(640px, calc(100vh - 10rem));
  aspect-ratio: 4 / 5;
  width: auto;
  max-width: calc(100vw - 2rem);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}

.cp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* capa4: sobe o recorte pra mostrar o rosto do menino no banquinho */
.cp-wrap:nth-child(4) .cp-card img {
  object-position: center 20%;
}

/* Última card: sem o 100vh inteiro, só um respiro antes do rodapé */
.cp-wrap:last-child {
  height: auto;
  padding-bottom: 4.5rem;
}

@media (max-width: 767px) {
  .cp-wrap { padding: 2.25rem 1rem 0; }
  .cp-wrap:last-child { padding-bottom: 2.5rem; }
  .cp-card { width: calc(100vw - 2rem); aspect-ratio: 4 / 5; height: auto; }
}

/* ─── MASONRY ────────────────────────────── */
.masonry {
  columns: 3 300px;
  column-gap: 3px;
  padding: 3px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 3px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}

.photo-placeholder {
  width: 100%;
  background: #efefef;
  transition: transform 0.7s ease;
}

.masonry-item:hover img,
.masonry-item:hover .photo-placeholder {
  transform: scale(1.03);
}

/* ─── PAGE CONTENT ───────────────────────── */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 60px 100px;
}

.page-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 72px;
}

.serif-text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 20px;
}

.serif-text em { font-style: italic; }

.btn-link {
  display: inline-block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--text);
  padding-bottom: 4px;
  transition: opacity 0.2s;
}

.btn-link:hover { opacity: 0.45; }

/* ─── SOBRE ──────────────────────────────── */
.sobre-hero {
  width: 100%;
  height: 62vh;
  overflow: hidden;
  background: #eae8e4;
}

.sobre-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.sobre-hero-placeholder {
  width: 100%;
  height: 100%;
  background: #cac6c1;
}

.sobre-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 60px 100px;
  text-align: center;
}

.sobre-location {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: #333;
  margin-bottom: 16px;
}

.sobre-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.6rem, 5.2vw, 4rem);
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 44px;
  line-height: 1.15;
}

.sobre-paragraphs p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 24px;
  text-align: justify;
}

.sobre-paragraphs strong { font-weight: 500; }
.sobre-paragraphs em { font-style: italic; }

/* ─── PORTFOLIO ──────────────────────────── */
.portfolio-filters {
  display: flex;
  gap: 40px;
  margin-bottom: 52px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--text);
  border-bottom-color: var(--text);
}

.portfolio-masonry {
  columns: 3 300px;
  column-gap: 3px;
}

.portfolio-item {
  break-inside: avoid;
  margin-bottom: 3px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.portfolio-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}

.portfolio-photo-placeholder {
  width: 100%;
  background: #efefef;
  transition: transform 0.7s ease;
}

.portfolio-item:hover img,
.portfolio-item:hover .portfolio-photo-placeholder {
  transform: scale(1.03);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay span {
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
}

/* ─── DEPOIMENTOS ────────────────────────── */
.depoimentos-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px 80px;
}

.depoimento-foto {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e0ddd9;
  margin-bottom: 24px;
}

.depoimento-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.depoimento-foto-placeholder {
  width: 100%;
  height: 100%;
  background: #e0ddd9;
}

.depoimento-titulo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 16px;
}

.depoimento-texto {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.9;
  color: #111;
}

/* ─── CONTATO ────────────────────────────── */
.contato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  text-align: center;
}

.contato-grid > div:first-child {
  text-align: center;
  padding-top: 80px;
}

.contato-header {
  text-align: center;
  margin-bottom: 52px;
}

.contato-tagline {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: #333;
  margin-top: 60px;
  line-height: 1.7;
  text-align: center;
}

.mobile-break { display: none; }

.contato-intro {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: #000;
}

.contato-agendamento {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.2;
  color: var(--text);
}

.contato-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contato-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  border-top: 1px solid var(--border);
  padding: 22px 0;
  transition: opacity 0.2s;
}

.contato-item:first-child { border-top: none; }
.contato-item:last-child { border-bottom: none; }
.contato-item:hover { opacity: 0.5; }

.contato-label {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #222;
}

.contato-value {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.contato-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ─── FOOTER ─────────────────────────────── */
footer {
  background: #0f0f0f;
  padding: 32px 60px 36px;
  text-align: center;
}


.footer-name-large {
  display: block;
  font-family: 'Tenor Sans', sans-serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  margin-bottom: 36px;
  transition: color 0.2s;
}

.footer-name-large:hover { color: #fff; }

.footer-sub {
  display: block;
  font-family: 'Tenor Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  margin-top: 6px;
}

@media (max-width: 768px) {
  .footer-sub { font-size: 11px; }
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-nav-link {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-nav-link:hover { color: rgba(255,255,255,0.85); }

.footer-copy {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ─── LIGHTBOX ───────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.96);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 28px; right: 40px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 300;
  transition: color 0.2s;
}

.lightbox-close:hover { color: var(--text); }

/* ─── PORTFOLIO CATEGORIES ───────────────── */
.category-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}

.category-card {
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.category-photo {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #e8e4e0;
}

.category-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.category-placeholder {
  width: 100%;
  height: 100%;
  background: #e8e4e0;
  transition: transform 0.7s ease;
}

.category-card:hover .category-photo img,
.category-card:hover .category-placeholder { transform: scale(1.04); }

.category-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #111;
  text-align: center;
  padding: 22px 0 44px;
}

/* ─── CATEGORY DETAIL PAGE ────────────────── */
.category-hero {
  width: 100%;
  height: 65vh;
  overflow: hidden;
}

.category-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.category-hero-placeholder {
  width: 100%;
  height: 100%;
  background: #cac6c1;
}

.category-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 60px 52px;
}

.category-title {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--text);
  text-align: center;
  margin-bottom: 36px;
  line-height: 1.35;
}

.category-text p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 20px;
}

.category-gallery {
  padding: 0 3px 80px;
  columns: 3 260px;
  column-gap: 3px;
}

.category-gallery-item {
  break-inside: avoid;
  margin-bottom: 3px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.category-gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s ease;
}

.category-gallery-placeholder {
  width: 100%;
  background: #efefef;
  transition: transform 0.7s ease;
}

.category-gallery-item:hover img,
.category-gallery-item:hover .category-gallery-placeholder { transform: scale(1.04); }

/* ─── SCROLL ANIMATIONS ───────────────────── */
.will-animate {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

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

/* ─── NAV TOGGLE (HAMBURGER) ─────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 20px;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: #000;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 768px) {
  header {
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
  }

  .header-brand {
    margin-bottom: 0;
    font-size: 18px;
    letter-spacing: 0.26em;
  }

  .nav-toggle {
    display: flex;
    top: 50%;
    transform: translateY(-50%);
  }

  header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.07);
    z-index: 99;
  }

  header nav.open { display: flex; }

  .nav-link {
    font-size: 12px;
    letter-spacing: 0.2em;
    padding: 17px 24px;
    border-bottom: 1px solid var(--border);
    width: 100%;
    text-align: left;
    display: block;
    box-sizing: border-box;
  }

  .nav-link::after,
  .nav-link:hover::after,
  .nav-link.active::after { display: none !important; }

  /* Dropdown mobile */
  .nav-dropdown {
    position: static;
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .nav-dropdown > .nav-link {
    display: block;
    width: 100%;
    border-bottom: none;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    border: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    min-width: auto;
    background: #f9f9f9;
    display: none;
    transition: none;
    box-shadow: none;
  }

  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  .nav-dropdown-item {
    padding: 14px 24px 14px 36px;
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    display: block;
    width: 100%;
  }

  .nav-dropdown-item:last-child { border-bottom: none; }

  main { padding-top: 76px; }
  .gooey-section { height: auto; padding: 28px 0 4px; }
  .gooey-container { height: 120px; filter: none; }
  .gooey-text { font-size: clamp(1.8rem, 7vw, 2.7rem); padding: 0 24px; }

  .page-content { padding: 48px 24px 72px; }

  /* Sobre */
  .sobre-hero { height: auto; }
  .sobre-hero img { width: 100%; height: auto; max-height: 88vh; object-fit: contain; object-position: center top; }
  .sobre-content { padding: 44px 24px 72px; }
  .sobre-title { font-size: clamp(1.95rem, 7.6vw, 2.6rem); }
  .sobre-paragraphs p { font-size: 1rem; }

  /* Category */
  .category-hero { height: 46vh; }
  .category-content { padding: 40px 24px 28px; }
  .category-text p { font-size: 1.05rem; }
  .category-gallery { padding: 0 2px 56px; columns: 2 160px; }

  /* Portfolio grid: 2 colunas no mobile */
  .category-grid { padding: 0 16px; gap: 6px; }
  .category-name { font-size: 15px; padding: 18px 0 36px; }

  /* Depoimentos */
  .depoimentos-list { grid-template-columns: 1fr; gap: 52px; }

  /* Contato */
  .contato-header { margin-bottom: 36px; }
  .contato-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .contato-grid > div:first-child { padding-top: 0; }
  .contato-intro { font-size: clamp(2.6rem, 10vw, 3.8rem); }
  .contato-item { align-items: center; }
  .contato-value { font-size: 1.1rem; justify-content: center; }
  .contato-tagline { text-align: center; font-size: 0.95rem; margin-top: 36px; }
  .mobile-break { display: inline; }

  /* Masonry */
  .masonry { columns: 2 160px; }

  /* Footer */
  footer { padding: 28px 24px 32px; }
  .footer-name-large { font-size: 18px; letter-spacing: 0.26em; margin-bottom: 28px; }
  .footer-nav { gap: 28px; margin-bottom: 16px; }
  .footer-nav-link { font-size: 11px; }
}


@media (max-width: 480px) {
}

@media (max-width: 420px) {
  .masonry { columns: 1; }
  .category-gallery { columns: 1; }
  .header-brand { font-size: 15px; letter-spacing: 0.2em; }
  .sobre-paragraphs p { font-size: 0.98rem; }
}
