/* ============================================================
   PASTOR LEIBER — Pré-Campanha 2026
   style.css | pastorleiber.com.br
   ============================================================ */

/* ---------- GOOGLE FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500&display=swap');

/* ---------- DESIGN TOKENS ---------- */
:root {
  --navy-deep: #0B2545;
  --navy-mid: #12345E;
  --navy-light: #1A4A82;
  --blue-line: #2C5A9E;
  --orange: #EE7422;
  --orange-warm: #F6A83E;
  --orange-light: #FBD28A;
  --cream: #F7F3EA;
  --paper: #FCFAF5;
  --ink: #1B1B1B;
  --ink-soft: #4A4E57;
  --ink-muted: #7A7E87;
  --line: rgba(11, 37, 69, 0.12);
  --shadow-sm: 0 4px 16px -6px rgba(11, 37, 69, 0.2);
  --shadow: 0 18px 40px -18px rgba(11, 37, 69, 0.35);
  --shadow-lg: 0 30px 60px -20px rgba(11, 37, 69, 0.45);
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: 700;
  line-height: 1.04;
  margin: 0;
}

a {
  color: inherit;
}

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

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

section {
  position: relative;
}

/* ---------- TYPOGRAPHY HELPERS ---------- */
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  display: inline-block;
}

.text-white {
  color: #fff;
}

.text-navy {
  color: var(--navy-deep);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 37, 69, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: box-shadow 0.3s ease;
}

header.site.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  flex: none;
}

.brand svg {
  width: 36px;
  height: 40px;
  flex: none;
}

.brand-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-text small {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  color: var(--orange-warm);
  font-weight: 500;
  text-transform: uppercase;
}

/* Menu inline — desktop */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}

/* Drawer mobile — oculto no desktop */
.nav-center {
  display: none;
}

/* Elementos do drawer (só visíveis no mobile) */
.drawer-header {
  display: none;
}

.drawer-close {
  display: none;
}

ul.links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

ul.links a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 0;
  transition: color 0.2s ease;
}

ul.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--orange-warm);
  transition: width 0.25s ease;
}

ul.links a:hover {
  color: #fff;
}

ul.links a:hover::after {
  width: 100%;
}

.nav-center .nav-cta {
  display: none;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: none;
}

.nav-cta {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.86rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 8px 20px -8px rgba(238, 116, 34, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(238, 116, 34, 0.9);
}

/* Hamburger */
.menu-toggle {
  display: none;
  position: relative;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 210;
  padding: 0;
  flex: none;
}

.menu-toggle span {
  position: absolute;
  left: 5px;
  right: 5px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, top 0.3s ease;
}

.menu-toggle span:nth-child(1) {
  top: 11px;
}

.menu-toggle span:nth-child(2) {
  top: 16.5px;
}

.menu-toggle span:nth-child(3) {
  top: 22px;
}

.menu-toggle.open span:nth-child(1) {
  top: 16.5px;
  transform: rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  top: 16.5px;
  transform: rotate(-45deg);
}

/* ---- Overlay backdrop ---- */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 190;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-backdrop.open {
  opacity: 1;
}

@media (max-width: 860px) {

  /* Ocultar menu desktop */
  .nav-desktop {
    display: none;
  }

  /* Mostrar backdrop no mobile */
  .nav-backdrop {
    display: block;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s;
  }

  .nav-backdrop.open {
    visibility: visible;
    pointer-events: auto;
  }

  /* Drawer header (título + botão fechar) */
  .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .drawer-title {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange-warm);
  }

  .drawer-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease;
    line-height: 1;
  }

  .drawer-close:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  /* Drawer lateral — desliza da direita */
  .nav-center {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 300px;
    max-width: 85vw;
    background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 28px 28px 40px;
    gap: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
    z-index: 500;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.4);
    overflow-y: auto;
  }

  .nav-center.open {
    visibility: visible;
    transform: translateX(0);
  }

  ul.links {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  ul.links a {
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    font-size: 1.45rem;
    font-weight: 600;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    display: block;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }

  ul.links a:hover {
    color: #fff;
    padding-left: 8px;
  }

  ul.links a::after {
    display: none;
  }

  .nav-center .nav-cta {
    margin-top: 32px;
    text-align: center;
    display: block;
    font-size: 1rem;
    padding: 16px 24px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-right .nav-cta {
    display: none;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    linear-gradient(122deg, var(--navy-deep) 0%, var(--navy-deep) 56%, var(--orange) 56.4%, var(--orange-warm) 100%);
  color: #fff;
  overflow: hidden;
  padding: 76px 0 0;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange-warm);
  border: 1px solid rgba(246, 168, 62, 0.5);
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  animation: fadeInDown 0.8s ease both;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  color: #fff;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 span {
  color: var(--orange-warm);
}

.hero p.lede {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 52ch;
  margin-bottom: 32px;
  font-weight: 400;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

/* Buttons */
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.97rem;
  box-shadow: 0 12px 26px -10px rgba(238, 116, 34, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -10px rgba(238, 116, 34, 0.9);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-dark {
  background: var(--navy-deep);
  color: #fff;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.btn-outline-dark {
  border: 1.5px solid rgba(11, 37, 69, 0.5);
  color: var(--navy-deep);
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn-outline-dark:hover {
  background: rgba(11, 37, 69, 0.08);
}

/* Trust line */
.trust-line {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: -24px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-line span::before {
  content: "✓";
  color: var(--orange-warm);
  font-weight: 800;
}

/* Portrait */
.hero-portrait {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.14), transparent 60%),
    linear-gradient(200deg, var(--navy-mid), var(--navy-deep));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow), 0 0 0 6px rgba(246, 168, 62, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-portrait .placeholder-mark {
  width: 34%;
  opacity: 0.5;
}

.hero-portrait .cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55), transparent);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-portrait.has-photo .placeholder-mark {
  display: none;
}

.hero-portrait.has-photo .cap {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent);
}

/* Stat strip */
.stat-strip {
  background: rgba(0, 0, 0, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  z-index: 1;
}

.stat-strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease;
}

.stat:hover {
  background: rgba(255, 255, 255, 0.05);
}

.stat:last-child {
  border-right: none;
}

.stat b {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.1rem;
  color: var(--orange-warm);
  font-weight: 700;
}

.stat span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-bottom: 36px;
  }

  .hero-portrait {
    max-width: 320px;
    margin: 0 auto;
  }

  .stat-strip .wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-head {
  max-width: 680px;
  margin-bottom: 52px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--navy-deep);
  margin: 10px 0 14px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

section.pad {
  padding: 96px 0;
}

.bg-cream {
  background: var(--cream);
}

.bg-white {
  background: #fff;
}

/* ============================================================
   VIDEO / MEDIA
   ============================================================ */
.media-section {
  background: #fff;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}

.media-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.video-shell {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11, 37, 69, 0.18);
}

.video-shell iframe,
.video-shell video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  text-align: center;
  padding: 32px;
  background: radial-gradient(circle at 70% 15%, rgba(238, 116, 34, 0.34), transparent 38%);
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.play-button:hover {
  transform: scale(1.08);
}

.media-copy h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--navy-deep);
  margin: 10px 0 16px;
}

.media-copy p {
  color: var(--ink-soft);
}

.quick-points {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.quick-points div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-soft);
}

.quick-points b {
  color: var(--navy-deep);
}

.quick-points i {
  font-style: normal;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(238, 116, 34, 0.13);
  color: var(--orange);
  font-weight: 800;
  flex: none;
}

@media (max-width: 860px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BIO
   ============================================================ */
.bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.bio-badge {
  background: linear-gradient(155deg, var(--orange) 0%, var(--orange-warm) 100%);
  border-radius: var(--radius);
  padding: 32px 26px;
  color: #20120a;
  position: sticky;
  top: 100px;
  box-shadow: 0 20px 48px -16px rgba(238, 116, 34, 0.5);
}

.bio-badge svg {
  width: 56px;
  height: 64px;
  margin-bottom: 18px;
}

.bio-badge h3 {
  font-size: 1.55rem;
  color: #20120a;
  margin-bottom: 10px;
}

.bio-badge p {
  font-size: 0.92rem;
  color: rgba(32, 18, 10, 0.78);
  margin: 0;
  line-height: 1.6;
}

.bio-text p {
  color: var(--ink-soft);
  margin: 0 0 18px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.bio-text strong {
  color: var(--navy-deep);
}

@media (max-width: 860px) {
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .bio-badge {
    position: static;
  }
}

/* ============================================================
   BIO VERSE BLOCKQUOTE
   ============================================================ */
.bio-verse {
  margin: 24px 0 0;
  padding: 20px 24px;
  border-left: 4px solid var(--orange);
  background: rgba(238, 116, 34, 0.07);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--navy-deep);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.6;
}

/* ============================================================
   TIMELINE HORIZONTAL
   ============================================================ */
.timeline-section {
  padding-bottom: 0;
}

.timeline-scroll-hint {
  text-align: center;
  padding: 0 28px 16px;
  color: var(--ink-muted);
  font-size: 0.82rem;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.08em;
}

.timeline-h-wrapper {
  overflow-x: auto;
  padding: 24px 28px 56px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--orange-light) transparent;
}

.timeline-h-wrapper:active {
  cursor: grabbing;
}

.timeline-h-wrapper::-webkit-scrollbar {
  height: 4px;
}

.timeline-h-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.timeline-h-wrapper::-webkit-scrollbar-thumb {
  background: var(--orange-light);
  border-radius: 2px;
}

.timeline-h {
  display: flex;
  gap: 0;
  align-items: flex-end;
  min-width: max-content;
  padding-bottom: 8px;
  position: relative;
}

/* Horizontal connecting line */
.timeline-h::before {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--navy-mid));
  z-index: 0;
}

.th-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 240px;
  flex: none;
  position: relative;
}

.th-item--last .th-line--empty {
  background: transparent !important;
}

.th-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px 18px;
  width: 100%;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.th-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.th-card--highlight {
  background: linear-gradient(135deg, var(--orange), var(--orange-warm));
  border: none;
  box-shadow: 0 16px 40px -14px rgba(238, 116, 34, 0.6);
}

.th-card--highlight .th-year,
.th-card--highlight h3,
.th-card--highlight p {
  color: #20120a !important;
}

.th-year {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.th-card h3 {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.th-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.th-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid var(--cream);
  box-shadow: 0 0 0 2px var(--orange);
  flex: none;
  z-index: 2;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.th-item:hover .th-dot {
  transform: scale(1.25);
  box-shadow: 0 0 0 4px rgba(238, 116, 34, 0.3);
}

.th-dot--last {
  background: var(--navy-deep);
  box-shadow: 0 0 0 2px var(--navy-deep);
}

.th-line {
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  position: absolute;
  bottom: 31px;
  left: 50%;
  right: 0;
  z-index: 0;
}

.th-line--empty {
  background: transparent;
}

/* ============================================================
   ENTREGAS COM FOTOS
   ============================================================ */
.entrega-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}

.entrega-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.entrega-block--reverse {
  grid-template-columns: 0.9fr 1.1fr;
  direction: rtl;
}

.entrega-block--reverse>* {
  direction: ltr;
}

.entrega-fotos {
  display: grid;
  grid-template-rows: auto auto;
  gap: 10px;
}

.entrega-fotos--single {
  grid-template-rows: 1fr;
}

.entrega-foto-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

.entrega-foto-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.entrega-foto-main:hover img {
  transform: scale(1.04);
}

.entrega-foto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.entrega-foto-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.entrega-foto-grid img:hover {
  transform: scale(1.05);
  filter: brightness(1.08);
}

.entrega-info {
  padding: 16px 0;
}

.entrega-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}

.entrega-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--navy-deep);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}

.entrega-info p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
  margin: 0;
}

.entrega-info strong {
  color: var(--navy-deep);
}

@media (max-width: 860px) {

  .entrega-block,
  .entrega-block--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 28px;
    margin-bottom: 48px;
    padding-bottom: 48px;
  }

  .entrega-foto-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================================================
   GALERIA MASONRY
   ============================================================ */
.galeria-section {
  background: var(--paper);
}

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gal-item {
  break-inside: avoid;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background: var(--navy-deep);
}

.gal-item img {
  width: 100%;
  display: block;
  transition: transform 0.45s ease, filter 0.35s ease;
  object-fit: cover;
}

.gal-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.8);
}

.gal-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 500;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.05em;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gal-item:hover .gal-label {
  transform: translateY(0);
}

.gal-item--tall img {
  min-height: 320px;
}

.gal-item--wide {
  grid-column: span 2;
}

@media (max-width: 980px) {
  .gallery-masonry {
    columns: 2;
  }
}

@media (max-width: 560px) {
  .gallery-masonry {
    columns: 1;
  }
}



/* ============================================================
   AÇÃO SOCIAL / CIDADES
   ============================================================ */
.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.city-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.city-card.main {
  background: linear-gradient(150deg, var(--orange) 0%, var(--orange-warm) 100%);
  color: #20120a;
  border: none;
  box-shadow: 0 14px 32px -12px rgba(238, 116, 34, 0.5);
}

.city-card.main h3 {
  color: #20120a;
}

.city-card.main p {
  color: rgba(32, 18, 10, 0.75);
}

.city-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--navy-deep);
}

.city-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .city-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .city-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ENTREGAS / ACHIEVEMENTS
   ============================================================ */
.ach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ach-card {
  border-radius: var(--radius);
  padding: 32px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.ach-icon {
  width: 44px;
  height: 44px;
  color: var(--orange);
}

.ach-card h3 {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-deep);
}

.ach-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .ach-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   PROPOSTAS
   ============================================================ */
.proposal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.proposal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  min-height: 180px;
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
}

.proposal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-warm));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.proposal-card:hover::before {
  transform: scaleX(1);
}

.proposal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(238, 116, 34, 0.3);
}

.proposal-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.proposal-card h3 {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.02rem;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.proposal-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 980px) {
  .proposal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .proposal-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section {
  background: var(--navy-deep);
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 116, 34, 0.28), transparent 70%);
}

.quote-section::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 168, 62, 0.12), transparent 70%);
}

blockquote {
  margin: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  text-transform: none;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  max-width: 820px;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
}

blockquote::before {
  content: "\201C";
  color: var(--orange-warm);
}

blockquote::after {
  content: "\201D";
  color: var(--orange-warm);
}

.quote-cite {
  margin-top: 28px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.84rem;
  color: var(--orange-warm);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.quote-verse {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(246, 168, 62, 0.12);
  border: 1px solid rgba(246, 168, 62, 0.25);
  border-radius: 999px;
  padding: 9px 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
}

.quote-verse em {
  font-style: italic;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  right: 22px;
  top: 6px;
  font-family: Georgia, serif;
  font-size: 4.5rem;
  color: rgba(238, 116, 34, 0.15);
}

.testimonial p {
  color: var(--ink-soft);
  margin: 0 0 22px;
  line-height: 1.7;
}

.person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-warm));
  display: grid;
  place-items: center;
  color: #20120a;
  font-weight: 800;
  font-size: 1.1rem;
}

.person strong {
  display: block;
  color: var(--navy-deep);
  font-size: 0.95rem;
}

.person span {
  font-size: 0.8rem;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   GALERIA
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, var(--navy-deep), var(--navy-mid));
  position: relative;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item .gallery-label {
  position: absolute;
  inset: auto 0 0;
  padding: 18px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  font-size: 0.84rem;
}

.gallery-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 16px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item:first-child {
    grid-column: 1/-1;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 210px;
  }
}

/* ============================================================
   AGENDA
   ============================================================ */
.agenda-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.agenda-item {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.agenda-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.agenda-date {
  background: var(--navy-deep);
  color: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 12px 5px;
  line-height: 1.05;
}

.agenda-date b {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  color: var(--orange-warm);
}

.agenda-date span {
  font-size: 0.72rem;
  text-transform: uppercase;
}

.agenda-info strong {
  display: block;
  color: var(--navy-deep);
}

.agenda-info span {
  font-size: 0.86rem;
  color: var(--ink-soft);
}

.agenda-status {
  font-size: 0.72rem;
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(238, 116, 34, 0.12);
  color: var(--orange);
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .agenda-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .agenda-item {
    grid-template-columns: 62px 1fr;
  }

  .agenda-status {
    grid-column: 2;
  }
}

/* ============================================================
   PARTICIPE / FORM
   ============================================================ */
.join-section {
  background: linear-gradient(130deg, var(--navy-deep), var(--navy-mid));
  color: #fff;
  padding: 96px 0;
}

.join-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.join-copy h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
  margin: 10px 0 18px;
}

.join-copy p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.join-benefits {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.88);
}

.join-benefits span::before {
  content: "✓";
  color: var(--orange-warm);
  margin-right: 10px;
  font-weight: 800;
}

.lead-form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, 0.75);
}

.lead-form h3 {
  font-size: 1.6rem;
  color: var(--navy-deep);
  margin-bottom: 22px;
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full {
  grid-column: 1/-1;
}

.form-field label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1.5px solid rgba(11, 37, 69, 0.18);
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(238, 116, 34, 0.13);
}

.form-field textarea {
  min-height: 96px;
  resize: vertical;
}

.consent {
  grid-column: 1/-1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.76rem;
  color: var(--ink-soft);
}

.consent input {
  margin-top: 3px;
  accent-color: var(--orange);
}

.submit-btn {
  grid-column: 1/-1;
  border: 0;
  background: var(--orange);
  color: #fff;
  border-radius: 999px;
  padding: 16px 24px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px -8px rgba(238, 116, 34, 0.6);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(238, 116, 34, 0.75);
}

.form-note {
  grid-column: 1/-1;
  font-size: 0.72rem;
  color: var(--ink-muted);
  text-align: center;
  margin: 0;
}

@media (max-width: 860px) {
  .join-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 24px;
  }
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-warm) 100%);
  padding: 80px 0;
  color: #20120a;
  position: relative;
  overflow: hidden;
}

.cta-final::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.cta-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-grid h2 {
  color: #20120a;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  max-width: 520px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.64);
  padding: 56px 0 32px;
  font-size: 0.85rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 26px;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: center;
  color: #fff;
}

.footer-brand svg {
  width: 30px;
  height: 34px;
}

.social {
  display: flex;
  gap: 12px;
}

.social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 0.78rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.social a:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.legal {
  max-width: 940px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.78rem;
  line-height: 1.75;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  transition: 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float span {
  position: absolute;
  right: 72px;
  background: var(--navy-deep);
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 0.74rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: 0.22s ease;
}

.whatsapp-float:hover span {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 600px) {
  .whatsapp-float span {
    display: none;
  }
}

/* ============================================================
   COUNTER SECTION
   ============================================================ */
.counter-section {
  background: var(--navy-deep);
  color: #fff;
  padding: 60px 0;
  border-bottom: 3px solid var(--orange);
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.counter-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-item:last-child {
  border-right: none;
}

.counter-number {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--orange-warm);
  line-height: 1;
}

.counter-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

@media (max-width: 700px) {
  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* ============================================================
   NOTÍCIAS (placeholder)
   ============================================================ */
.news-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 22px;
}

.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 4px solid var(--orange);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.news-card.featured {
  background: linear-gradient(150deg, var(--orange) 0%, var(--orange-warm) 100%);
  color: #20120a;
  border-top: none;
  justify-content: flex-end;
  min-height: 280px;
}

.news-card.featured h3 {
  color: #20120a;
  font-size: 1.4rem;
}

.news-card.featured p {
  color: rgba(32, 18, 10, 0.78);
}

.news-card.featured .news-link {
  color: #20120a;
}

.news-tag {
  align-self: flex-start;
  background: #20120a;
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.news-date {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
}

.news-card.featured .news-date {
  color: #20120a;
}

.news-card h3 {
  font-family: 'Inter', sans-serif;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy-deep);
  margin: 0;
}

.news-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  flex: 1;
}

.news-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.news-link:hover {
  text-decoration: underline;
}

@media (max-width: 860px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card.featured {
    min-height: auto;
  }
}

/* ============================================================
   LOADING SCREEN
   ============================================================ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 60px;
  height: 68px;
}

.loader-bar {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--orange-warm));
  border-radius: 999px;
  animation: loadBar 1.2s ease-in-out forwards;
}

@keyframes loadBar {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
.instagram-section {
  background: linear-gradient(135deg, #fdf0f7 0%, var(--paper) 50%, #f0f4ff 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.insta-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.insta-title-area h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy-deep);
  margin: 10px 0 12px;
}

.insta-title-area p {
  color: var(--ink-soft);
  max-width: 52ch;
  font-size: 1rem;
}

.insta-profile-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 8px 24px -8px rgba(131, 58, 180, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insta-profile-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(131, 58, 180, 0.65);
}

/* Grid de cards preview */
.insta-preview {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  grid-auto-rows: 200px;
  gap: 12px;
}

.insta-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(145deg, #c56cd6, #3425af, #fd1d1d);
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.insta-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 40px rgba(131, 58, 180, 0.3);
}

.insta-card--lg {
  grid-row: span 2;
  background: linear-gradient(155deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.insta-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 20px;
  text-align: center;
}

.insta-card--lg .insta-card-inner {
  color: #fff;
  gap: 16px;
}

.insta-card--lg .insta-card-inner span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
}

.insta-placeholder-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Aviso de configuração */
.insta-setup-notice {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(131, 58, 180, 0.07);
  border: 1px solid rgba(131, 58, 180, 0.18);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.insta-setup-notice svg {
  flex-shrink: 0;
  color: #833ab4;
  margin-top: 2px;
}

.insta-setup-notice a {
  color: #833ab4;
  font-weight: 600;
  text-decoration: none;
}

.insta-setup-notice a:hover {
  text-decoration: underline;
}

.insta-setup-notice code {
  background: rgba(131, 58, 180, 0.12);
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.82em;
  color: #6d28d9;
}

/* Quando o widget Behold estiver ativo */
.instagram-section [id^="behold-widget"] {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (max-width: 860px) {
  .insta-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .insta-preview {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .insta-card--lg {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 200px;
  }
}

@media (max-width: 560px) {
  .insta-preview {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }

  .insta-card--lg {
    grid-column: 1 / -1;
  }
}

/* ─── INSTAGRAM FEED GRID CUSTOMIZADO ─────────────────────────── */
.insta-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Cada card: usa aspect-ratio para altura consistente */
.insta-feed-card {
  display: block;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 1 / 1;
  background: linear-gradient(155deg, #833ab4 0%, #fd1d1d 55%, #fcb045 100%);
  box-shadow: 0 6px 24px -8px rgba(131, 58, 180, 0.35);
  transition: transform 0.3s cubic-bezier(.22, .61, .36, 1),
    box-shadow 0.3s ease;
}

.insta-feed-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 22px 50px -12px rgba(131, 58, 180, 0.55);
  z-index: 2;
}

/* Primeiro card: destaque — ocupa as 2 primeiras colunas */
.insta-feed-card--big {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
  aspect-ratio: 2 / 1;
}

/* Imagem */
.insta-feed-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s cubic-bezier(.22, .61, .36, 1);
}

.insta-feed-card:hover img {
  transform: scale(1.08);
}

/* Overlay gradiente — sempre ligeiramente visível no rodapé */
.insta-feed-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.80) 0%,
      rgba(0, 0, 0, 0.30) 38%,
      transparent 65%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
  gap: 8px;
  opacity: 0.65;
  transition: opacity 0.3s ease;
}

.insta-feed-card:hover .insta-feed-overlay {
  opacity: 1;
}

/* Badge "REEL" no canto superior direito */
.insta-feed-reel-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px 3px 7px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Linha de info: ♥ + likes */
.insta-feed-info {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.insta-feed-info svg {
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(255, 107, 138, 0.7));
}

/* Trecho da legenda */
.insta-feed-cap {
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transform: translateY(4px);
  opacity: 0;
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.insta-feed-card:hover .insta-feed-cap {
  opacity: 1;
  transform: translateY(0);
}

/* Loading animado */
.insta-feed-loading {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 80px 0;
}

.insta-feed-loading span {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  animation: feedDot 1.3s ease-in-out infinite both;
}

.insta-feed-loading span:nth-child(2) {
  animation-delay: 0.18s;
}

.insta-feed-loading span:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes feedDot {

  0%,
  80%,
  100% {
    transform: scale(0.55);
    opacity: 0.35;
  }

  40% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 860px) {
  .insta-feed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .insta-feed-card--big {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 7;
  }

  .insta-feed-overlay {
    opacity: 0.8;
  }
}

@media (max-width: 520px) {
  .insta-feed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .insta-feed-card--big {
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }

  .insta-feed-overlay {
    opacity: 1;
  }

  .insta-feed-cap {
    opacity: 1;
    transform: none;
  }

  .insta-feed-card:hover {
    transform: none;
  }
}

/* ─── LIGHTBOX DA GALERIA ─────────────────────────── */
.gal-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gal-lightbox.open {
  display: flex;
  animation: lbFadeIn 0.22s ease;
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.gal-lb-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 85vh;
}

.gal-lb-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8);
  display: block;
}

.gal-lb-close {
  position: fixed;
  top: 18px;
  right: 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gal-lb-close:hover {
  background: rgba(255,255,255,0.22);
  transform: rotate(90deg);
}

.gal-lb-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.gal-lb-nav:hover {
  background: rgba(255,255,255,0.22);
}

.gal-lb-prev { left: 18px; }
.gal-lb-next { right: 18px; }

.gal-lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.gal-lb-next:hover { transform: translateY(-50%) translateX(3px); }

.gal-lb-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.4);
  padding: 5px 14px;
  border-radius: 999px;
}

/* Cursor pointer nos cards da galeria */
.gallery-masonry .gal-item {
  cursor: zoom-in;
}

/* ============================================================
   MOLDURA / EDITOR DE FOTO DE PERFIL
   ============================================================ */
.moldura-section {
  background: linear-gradient(160deg, #0B2545 0%, #12345E 55%, #1a3a6e 100%);
  position: relative;
  overflow: hidden;
}

.moldura-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,168,62,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.moldura-section .section-head h2 {
  color: #fff;
}

.moldura-section .section-head p {
  color: rgba(255,255,255,0.78);
}

.moldura-section .eyebrow {
  color: var(--orange-warm);
}

/* Editor layout */
.moldura-editor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: flex-start;
  margin-top: 2rem;
}

/* Canvas wrapper */
.moldura-canvas-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  border: 2px dashed rgba(246,168,62,0.3);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, background 0.25s;
  cursor: grab;
}

.moldura-canvas-wrap.drag-over {
  border-color: var(--orange-warm);
  background: rgba(246,168,62,0.08);
}

.moldura-canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 18px;
  position: relative;
  z-index: 2;
}

/* Drop hint overlay */
.moldura-drop-hint {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 2rem;
  pointer-events: none;
  font-size: 0.95rem;
  line-height: 1.5;
}

.moldura-drop-hint svg {
  opacity: 0.4;
}

/* Controls panel */
.moldura-controls {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.moldura-controls h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0;
  line-height: 1.2;
}

.moldura-controls-sub {
  color: var(--ink-muted);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.5;
}

/* Upload button */
.moldura-upload-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 2px dashed #d0d7e0;
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #f8fafc;
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.95rem;
}

.moldura-upload-btn:hover {
  border-color: var(--navy-deep);
  background: rgba(18,52,94,0.04);
}

.moldura-upload-btn small {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--ink-muted);
  font-weight: 400;
}

/* Sliders area */
.moldura-sliders {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.moldura-slider-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--ink-muted);
  font-weight: 500;
}

.moldura-sliders input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 99px;
  background: #e2e8f0;
  outline: none;
  margin-bottom: 0.6rem;
  cursor: pointer;
  transition: background 0.2s;
}

.moldura-sliders input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: grab;
  transition: transform 0.15s, background 0.2s;
}

.moldura-sliders input[type="range"]::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.15);
  background: var(--orange-warm);
}

.moldura-sliders input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: grab;
}

/* Button row */
.moldura-btn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.3rem;
}

.moldura-btn-sec {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  border: 1.5px solid #d0d7e0;
  background: #f8fafc;
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none;
  white-space: nowrap;
}

.moldura-btn-sec:hover {
  border-color: var(--navy-deep);
  background: rgba(18,52,94,0.06);
}

/* Primary download button */
.moldura-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  border: none;
  background: var(--navy-deep);
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(18,52,94,0.25);
  margin-top: 0.2rem;
}

.moldura-btn-primary:hover {
  background: #0a1d3a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(18,52,94,0.32);
}

.moldura-btn-primary:active {
  transform: translateY(0);
}

/* Hint text */
.moldura-hint {
  font-size: 0.78rem;
  color: var(--ink-muted);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

/* Share row */
.moldura-share-row {
  border-top: 1.5px solid #e2e8f0;
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.moldura-share-row p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0;
}

/* ── Responsive — Tablet ── */
@media (max-width: 900px) {
  .moldura-editor {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .moldura-canvas-wrap {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }

  .moldura-controls {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}

/* ── Responsive — Mobile médio ── */
@media (max-width: 600px) {
  .moldura-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .moldura-section .section-head h2 {
    font-size: 1.6rem;
  }

  .moldura-editor {
    gap: 1.2rem;
  }

  .moldura-canvas-wrap {
    max-width: 100%;
    border-radius: 16px;
  }

  .moldura-canvas-wrap canvas {
    border-radius: 14px;
  }

  .moldura-controls {
    max-width: 100%;
    border-radius: 16px;
    padding: 1.5rem 1.2rem;
    gap: 0.85rem;
  }

  .moldura-controls h3 {
    font-size: 1.3rem;
  }

  .moldura-controls-sub {
    font-size: 0.82rem;
  }

  /* Upload btn empilhado no mobile */
  .moldura-upload-btn {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 6px;
    padding: 1rem;
  }

  .moldura-upload-btn small {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }

  /* Botões Centralizar / Limpar lado a lado */
  .moldura-btn-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .moldura-btn-sec {
    font-size: 0.82rem;
    padding: 0.6rem 0.7rem;
  }

  /* Botão download ocupa largura total */
  .moldura-btn-primary {
    font-size: 1rem;
    padding: 0.85rem 1rem;
  }

  .moldura-hint {
    font-size: 0.74rem;
  }

  .moldura-share-row {
    gap: 0.5rem;
  }

  .moldura-share-row .moldura-btn-sec {
    width: 100%;
    justify-content: center;
  }
}

/* ── Responsive — Mobile pequeno ── */
@media (max-width: 380px) {
  .moldura-controls {
    padding: 1.2rem 1rem;
  }

  .moldura-controls h3 {
    font-size: 1.15rem;
  }

  .moldura-btn-row {
    grid-template-columns: 1fr 1fr;
  }

  .moldura-btn-sec {
    font-size: 0.78rem;
    padding: 0.55rem 0.5rem;
    white-space: normal;
    text-align: center;
  }

  .moldura-btn-primary {
    font-size: 0.95rem;
  }
}