/* =====================================================
   UNIVERSO HERA — style.css
   Paleta, tipografia e todos os estilos do site
   ===================================================== */

/* -------- VARIÁVEIS -------- */
:root {
  --bege: #F5EDE8;
  --offwhite: #FBF7F4;
  --rosa: #C48A8A;
  --vinho: #6A2E2E;
  --nude: #A78C7D;
  --dourado: #D6BFA3;
  --rose-claro: #E6CFC3;
  --texto: #3A2A2A;
  --texto-leve: #7A6060;

  --font-title: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;

  --radius: 2px;
  --radius-card: 6px;
  --shadow: 0 4px 32px rgba(106, 46, 46, 0.06);
  --shadow-hover: 0 8px 48px rgba(106, 46, 46, 0.12);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1100px;
  --nav-h: 76px;
}

/* -------- RESET -------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--offwhite);
  color: var(--texto);
  overflow-x: hidden;
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* -------- UTILITÁRIOS -------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 18px;
}
.section-label.light { color: var(--rose-claro); }

.section-title {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--vinho);
  margin-bottom: 28px;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--rosa);
}
.section-title.light { color: var(--offwhite); }
.section-title.light em { color: var(--rose-claro); }

.section-desc {
  font-size: 1.05rem;
  color: var(--texto-leve);
  max-width: 560px;
  margin-bottom: 52px;
}

/* -------- BOTÕES -------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--vinho);
  color: var(--offwhite);
  border-color: var(--vinho);
}
.btn-primary:hover {
  background: #521f1f;
  border-color: #521f1f;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(106,46,46,0.22);
}
.btn-outline {
  background: transparent;
  color: var(--vinho);
  border-color: var(--vinho);
}
.btn-outline:hover {
  background: var(--vinho);
  color: var(--offwhite);
  transform: translateY(-2px);
}
.btn-nav {
  background: transparent;
  color: var(--vinho);
  border-color: var(--vinho);
  padding: 10px 24px;
  font-size: 0.78rem;
}
.btn-nav:hover {
  background: var(--vinho);
  color: var(--offwhite);
}
.btn-light {
  background: var(--offwhite);
  color: var(--vinho);
  border-color: var(--offwhite);
  width: 100%;
  text-align: center;
}
.btn-light:hover {
  background: var(--rose-claro);
  border-color: var(--rose-claro);
  transform: translateY(-2px);
}

/* -------- REVEAL ANIMATION -------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================================================
   HEADER / NAV
   ===================================================== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
#header.scrolled {
  background: rgba(251, 247, 244, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(106,46,46,0.07);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}
.logo-universo {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--nude);
  font-weight: 400;
}
.logo-hera {
  font-family: var(--font-title);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--vinho);
  letter-spacing: 0.08em;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--texto-leve);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--rosa);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--vinho); }
.nav-links a:hover::after { width: 100%; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--vinho);
  transition: all var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-left: 32px;
  padding-right: 32px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.hero-bg-texture {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: var(--offwhite);
  /* Subtle grain texture */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
}

.hero-content { padding: 80px 0; }

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 22px;
}

.hero-title {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--vinho);
  margin-bottom: 26px;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--rosa);
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--texto-leve);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-placeholder {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--rose-claro), var(--dourado));
  border-radius: 180px 180px 120px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Once you have the real image, replace .hero-img-placeholder with:
   <img src="assets/hero-rita.jpg" alt="Universo HERA"
        style="width:100%;max-width:420px;aspect-ratio:3/4;object-fit:cover;
               border-radius:180px 180px 120px 120px;position:relative;z-index:2;" />
*/

.placeholder-inner {
  text-align: center;
  color: var(--vinho);
}
.placeholder-circle {
  width: 60px;
  height: 60px;
  border: 1.5px solid var(--rosa);
  border-radius: 50%;
  margin: 0 auto 14px;
  opacity: 0.5;
}
.placeholder-inner p {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  line-height: 1.6;
}

.hero-accent-ring {
  position: absolute;
  width: 460px;
  height: 460px;
  border: 1px solid var(--rose-claro);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  animation: pulse-ring 4s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.04); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: var(--rosa);
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.6;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =====================================================
   ESSÊNCIA
   ===================================================== */
.essence {
  background: var(--bege);
  padding: 120px 0;
}

.essence-text {
  font-size: 1.08rem;
  color: var(--texto-leve);
  max-width: 660px;
  margin-bottom: 20px;
  line-height: 1.9;
}

.hera-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.hera-card {
  background: var(--offwhite);
  padding: 40px 28px;
  border-radius: var(--radius-card);
  border: 1px solid var(--rose-claro);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.hera-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rosa), var(--dourado));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.hera-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.hera-card:hover::before { transform: scaleX(1); }

.hera-letter {
  display: block;
  font-family: var(--font-title);
  font-size: 3.6rem;
  font-weight: 300;
  color: var(--rose-claro);
  line-height: 1;
  margin-bottom: 12px;
}

.hera-card h3 {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--vinho);
  margin-bottom: 10px;
}

.hera-card p {
  font-size: 0.88rem;
  color: var(--texto-leve);
  line-height: 1.7;
}

/* =====================================================
   ORIGEM
   ===================================================== */
.origin {
  padding: 120px 0;
  background: var(--offwhite);
  overflow: hidden;
}

.origin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.origin-visual {
  position: relative;
}

.img-placeholder {
  background: linear-gradient(145deg, var(--dourado), var(--rose-claro));
  border-radius: 100px 20px 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vinho);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.8;
}
/* Replace .img-placeholder with <img src="assets/imagem-evento.jpg" /> when ready */

.origin-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
}

.origin-accent {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid var(--rose-claro);
  border-radius: 50%;
  bottom: -40px;
  right: -40px;
  z-index: -1;
}

.origin-text p {
  font-size: 1rem;
  color: var(--texto-leve);
  margin-bottom: 18px;
  line-height: 1.9;
}

/* =====================================================
   PARA QUEM É
   ===================================================== */
.forwho {
  background: var(--bege);
  padding: 120px 0;
}

.forwho-list {
  max-width: 680px;
  margin: 52px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.forwho-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.forwho-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--rosa);
  border-radius: 50%;
  margin-top: 10px;
}

.forwho-item p {
  font-size: 1rem;
  color: var(--texto);
  line-height: 1.7;
}

.forwho-close {
  border-top: 1px solid var(--rose-claro);
  padding-top: 52px;
  max-width: 560px;
}

.forwho-close p {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--vinho);
  line-height: 1.5;
  margin-bottom: 36px;
}

.forwho-close em {
  font-style: italic;
  font-weight: 300;
  color: var(--rosa);
}

/* =====================================================
   EXPERIÊNCIAS
   ===================================================== */
.experiences {
  background: var(--offwhite);
  padding: 120px 0;
}

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

.exp-card {
  background: var(--bege);
  border: 1px solid var(--rose-claro);
  border-radius: var(--radius-card);
  padding: 44px 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.exp-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.exp-number {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 300;
  color: var(--rose-claro);
  line-height: 1;
  margin-bottom: 20px;
}

.exp-card h3 {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--vinho);
  margin-bottom: 14px;
}

.exp-card p {
  font-size: 0.9rem;
  color: var(--texto-leve);
  line-height: 1.75;
}

/* 5-card grid: 3+2 layout */
.exp-grid .exp-card:nth-child(4),
.exp-grid .exp-card:nth-child(5) {
  grid-column: span 1;
}
@media (min-width: 900px) {
  .exp-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
  }
  .exp-grid .exp-card:nth-child(4) { grid-column: 1 / 2; }
  .exp-grid .exp-card:nth-child(5) { grid-column: 2 / 3; }
}

/* =====================================================
   COMUNIDADE
   ===================================================== */
.community {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.community-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--vinho) 0%, #8C3E3E 100%);
  z-index: 0;
}

.community-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.community-text p {
  font-size: 1rem;
  color: rgba(251,247,244,0.75);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 0;
}

/* Form */
.community-form {
  background: rgba(251,247,244,0.08);
  border: 1px solid rgba(230,207,195,0.2);
  border-radius: 8px;
  padding: 48px 40px;
  backdrop-filter: blur(8px);
}

.form-headline {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--offwhite);
  margin-bottom: 32px;
  line-height: 1.5;
}
.form-headline strong {
  font-weight: 500;
  color: var(--rose-claro);
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-claro);
  margin-bottom: 8px;
}
.optional { font-weight: 300; text-transform: none; letter-spacing: 0; font-size: 0.72rem; opacity: 0.7; }
.form-group input {
  width: 100%;
  background: rgba(251,247,244,0.08);
  border: 1px solid rgba(230,207,195,0.25);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--offwhite);
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder { color: rgba(251,247,244,0.35); }
.form-group input:focus {
  outline: none;
  border-color: var(--rose-claro);
  background: rgba(251,247,244,0.12);
}

.form-success {
  font-size: 0.9rem;
  color: var(--rose-claro);
  text-align: center;
  padding: 20px;
  letter-spacing: 0.06em;
}

/* =====================================================
   PARA MARCAS
   ===================================================== */
.brands {
  background: var(--offwhite);
  padding: 120px 0;
}

.brands-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.brands-text p {
  font-size: 1rem;
  color: var(--texto-leve);
  line-height: 1.85;
  margin-bottom: 18px;
}

.brands-cta { margin-top: 12px; }

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.tag {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--vinho);
  border: 1px solid var(--rosa);
  padding: 8px 18px;
  border-radius: 100px;
  background: transparent;
  transition: all var(--transition);
}
.tag:hover {
  background: var(--rosa);
  color: var(--offwhite);
}

.brands-email {
  font-size: 0.88rem;
  color: var(--texto-leve);
  letter-spacing: 0.04em;
}

/* =====================================================
   FUNDADORAS
   ===================================================== */
.founders {
  background: var(--bege);
  padding: 120px 0;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 64px;
}

.founder-card {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: start;
  background: var(--offwhite);
  border: 1px solid var(--rose-claro);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.founder-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.founder-photo-placeholder {
  width: 160px;
  height: 200px;
  background: linear-gradient(145deg, var(--rose-claro), var(--dourado));
  border-radius: 80px 80px 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.72rem;
  text-align: center;
  color: var(--vinho);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  padding: 8px;
}
/* Replace with: <img src="assets/foto-rita.jpg" alt="Rita Rosa" class="founder-photo" />
   .founder-photo { width:160px; height:200px; object-fit:cover; border-radius:80px 80px 40px 40px; flex-shrink:0; }
*/

.founder-info h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--vinho);
  margin-bottom: 4px;
}

.founder-role {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 18px;
}

.founder-bio {
  font-size: 0.9rem;
  color: var(--texto-leve);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* =====================================================
   CONTATO
   ===================================================== */
.contact {
  background: var(--offwhite);
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 64px;
}

.contact-item {
  padding: 40px 32px;
  background: var(--bege);
  border: 1px solid var(--rose-claro);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.contact-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rosa);
}

.contact-link {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--vinho);
  font-weight: 400;
}

.contact-btn { margin-top: auto; text-align: center; width: 100%; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--vinho);
  padding: 64px 0 40px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  text-align: center;
}

.footer-brand .logo-universo { color: rgba(230,207,195,0.6); }
.footer-brand .logo-hera { color: var(--rose-claro); font-size: 2rem; }

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(230,207,195,0.5);
  margin-top: 8px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 32px;
}
.footer-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(230,207,195,0.55);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--rose-claro); }

.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(230,207,195,0.3);
  padding-top: 24px;
  border-top: 1px solid rgba(230,207,195,0.1);
  width: 100%;
  text-align: center;
}

/* =====================================================
   RESPONSIVE — TABLET
   ===================================================== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: calc(var(--nav-h) + 60px); padding-bottom: 80px; }
  .hero-visual { display: none; }
  .hera-cards { grid-template-columns: repeat(2, 1fr); }
  .origin-inner { grid-template-columns: 1fr; }
  .origin-visual { display: none; }
  .community-inner { grid-template-columns: 1fr; gap: 56px; }
  .brands-inner { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
}

/* =====================================================
   RESPONSIVE — MOBILE
   ===================================================== */
@media (max-width: 680px) {
  :root { --nav-h: 64px; }

  .nav-links, .btn-nav { display: none; }
  .menu-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(251,247,244,0.98);
    backdrop-filter: blur(16px);
    padding: 32px;
    gap: 28px;
    box-shadow: 0 24px 48px rgba(106,46,46,0.12);
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.1rem; color: var(--vinho); }

  .container { padding: 0 20px; }
  .hero { padding-left: 20px; padding-right: 20px; }

  .hera-cards { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr; }

  .founder-card { grid-template-columns: 1fr; }
  .founder-photo-placeholder { width: 120px; height: 150px; }

  .community-form { padding: 32px 24px; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }

  section { padding: 80px 0; }
  .essence, .forwho, .founders { padding: 80px 0; }
}
