/* =====================================================
   MISSÃO ESPANHA · Europa 2027
   Estilos fiéis ao PDF — vermelho dominante, tipografia bold
   ===================================================== */

:root {
  --red:        #ba0000;
  --red-dark:   #8e0000;
  --red-deep:   #6a0000;
  --white:      #ffffff;
  --off-white:  #f5f5f5;
  --text-dark:  #1a1a1a;
  --text-soft:  #4a4a4a;
  --shadow:     0 12px 40px rgba(0, 0, 0, 0.18);
  --shadow-lg:  0 24px 70px rgba(0, 0, 0, 0.25);

  --font-display: 'Anton', 'Impact', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1280px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- Navbar ---------- */
.topnav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: padding .3s ease;
}
.topnav__brand {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--white);
  text-decoration: none;
}
.topnav__links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0; padding: 0;
}
.topnav__links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .5px;
  opacity: .85;
  transition: opacity .2s;
}
.topnav__links a:hover { opacity: 1; }
.topnav__cta {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: transform .2s;
}
.topnav__cta:hover { transform: translateY(-2px); }

/* ---------- Section base ---------- */
section {
  padding: 80px 48px;
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}

/* =====================================================
   SLIDE 1 · CAPA
   ===================================================== */
.capa {
  max-width: none;
  margin: 0;
  padding: 0;
  height: 100vh;
  min-height: 720px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #8ec5d9 0%, #b8d8e6 100%);
}
.capa__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.capa__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.capa__flag {
  position: absolute;
  bottom: 0;
  right: 4%;
  width: 53%;
  max-width: 920px;
  height: auto;
  display: block;
  z-index: 2;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.25));
  user-select: none;
  pointer-events: none;
}
.capa__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg,
    rgba(186, 0, 0, 0.15) 0%,
    rgba(186, 0, 0, 0) 50%);
}
.capa__content {
  position: relative;
  z-index: 3;
  padding-left: 80px;
  max-width: 700px;
}
.capa__title {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 180px);
  line-height: .9;
  color: var(--white);
  margin: 0;
  letter-spacing: -2px;
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.capa__title span { display: block; }
.capa__tag {
  display: inline-block;
  margin-top: 24px;
  padding: 12px 28px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
}
.capa__logos {
  position: absolute;
  bottom: 32px;
  left: 80px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 28px;
}
.capa__logos .logo {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .9;
}

/* =====================================================
   SLIDE 2 · QUEM SOMOS
   ===================================================== */
.quem-somos {
  max-width: none;
  background: var(--red);
  color: var(--white);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quem-somos__text p {
  font-size: 19px;
  line-height: 1.7;
  margin: 0 0 22px 0;
}
.quem-somos__photo {
  position: relative;
  padding-left: 80px;
}
.quem-somos__sidetext {
  position: absolute;
  left: 0; top: 50%;
  transform: rotate(-90deg) translateX(50%);
  transform-origin: left top;
  font-family: var(--font-display);
  font-size: 64px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.15);
  white-space: nowrap;
}
.photo-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* =====================================================
   SLIDE 3 · SEPAL
   ===================================================== */
.sepal {
  max-width: none;
  background: var(--red-dark);
  color: var(--white);
  padding: 120px 80px;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
}
.sepal__watermark {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -25%);
  font-family: var(--font-display);
  font-size: clamp(280px, 44vw, 640px);
  color: rgba(255,255,255,0.05);
  letter-spacing: 10px;
  pointer-events: none;
  white-space: nowrap;
}
.sepal__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.sepal__content p {
  font-size: 20px;
  margin: 0 0 24px 0;
  line-height: 1.7;
}
.sepal__footer {
  position: absolute;
  z-index: 2;
  left: 80px;
  right: 80px;
  bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.sepal__url {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 4px;
  color: inherit;
  text-decoration: none;
}
.sepal__url:hover { text-decoration: underline; }
.sepal__logo {
  height: 64px;
  filter: brightness(0) invert(1);
}

/* =====================================================
   SLIDE 4 · EUROPA
   ===================================================== */
.europa {
  max-width: none;
  background:
    linear-gradient(to right, var(--red) 0%, var(--red) 69%, transparent 69%, transparent 100%),
    url("images/europa-bg.webp") center/cover no-repeat;
  color: var(--white);
  padding: 100px 80px 0 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr;
  gap: 80px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.europa__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.europa__text p {
  font-size: 18px;
  margin: 0 0 20px 0;
  line-height: 1.7;
}
.europa__visual {
  position: relative;
  padding-left: 0;
  margin-right: -40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.europa__sidetext {
  position: absolute;
  left: calc(69% + 30px);
  right: auto;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(250px, 35.5vh, 460px);
  line-height: 0.44;
  color: var(--red);
  pointer-events: none;
  z-index: 0;
}
.europa__sidetext span {
  display: block;
  transform: rotate(90deg);
}
.europa__visual img {
  width: auto;
  max-width: 110%;
  height: 560px;
  display: block;
  object-fit: contain;
  object-position: bottom;
}

/* =====================================================
   SLIDE 5 · CHAMADO (ESPANHA)
   ===================================================== */
.chamado {
  max-width: none;
  background: var(--white);
  color: var(--red);
  padding: 100px 80px 100px 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.chamado__visual {
  position: relative;
  margin-left: -20px;
}
.chamado__sidetext {
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  font-size: clamp(210px, 30vh, 380px);
  line-height: 0.44;
  color: var(--red);
  pointer-events: none;
  z-index: 0;
}
.chamado__sidetext span {
  display: block;
  transform: rotate(90deg);
}
.chamado__visual img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: left center;
  display: block;
  position: relative;
  z-index: 1;
}
.chamado__text p {
  font-size: 19px;
  margin: 0 0 22px 0;
  line-height: 1.7;
  color: var(--red);
}
.chamado__text strong { color: var(--red-deep); }

/* =====================================================
   SLIDE 6 · TIMELINE 2023/2025
   ===================================================== */
.timeline {
  max-width: none;
  background: var(--red);
  color: var(--white);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}
.timeline__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.timeline__text ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
.timeline__text li {
  font-size: 19px;
  line-height: 1.7;
  padding-left: 24px;
  position: relative;
  margin-bottom: 20px;
}
.timeline__text li::before {
  content: '•';
  position: absolute;
  left: 0;
  font-size: 28px;
  line-height: 1;
}
.gallery-block {
  position: relative;
  padding: 20px 0;
}
.gallery-block__bg {
  position: absolute;
  top: 50%;
  left: -2%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(260px, 32vw, 520px);
  letter-spacing: 8px;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
  line-height: 1;
}
.gallery-block > *:not(.gallery-block__bg) {
  position: relative;
  z-index: 1;
}
.gallery-block__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 4px;
  margin: 0 0 12px 0;
  color: var(--white);
}
.gallery-block__text {
  font-size: 18px;
  line-height: 1.7;
  margin: 0 0 24px 0;
  max-width: 880px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.gallery-item {
  background: none;
  border: none;
  padding: 0;
  cursor: zoom-in;
  overflow: hidden;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.gallery-item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 18px 42px rgba(0,0,0,0.4);
  z-index: 2;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.timeline__photos {
  position: relative;
  height: 500px;
}
.polaroid {
  position: absolute;
  background: var(--white);
  padding: 14px;
  box-shadow: var(--shadow-lg);
  transition: transform .3s ease, box-shadow .3s ease;
  border: none;
  cursor: zoom-in;
  font: inherit;
  color: inherit;
}
.polaroid:hover {
  transform: scale(1.05) rotate(0deg) !important;
  z-index: 10;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.polaroid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  display: block;
}
.polaroid--1 {
  top: 0;
  right: 20px;
  width: 380px;
  transform: rotate(4deg);
  z-index: 3;
}
.polaroid--2 {
  top: 60px;
  left: 50%;
  margin-left: -190px;
  transform: rotate(-3deg);
  width: 380px;
  z-index: 2;
}
.polaroid--3 {
  bottom: 0;
  left: 0;
  width: 380px;
  transform: rotate(2deg);
  z-index: 1;
}

/* =====================================================
   SLIDE 7 · GALÍCIA
   ===================================================== */
.galicia {
  max-width: none;
  background: var(--red-dark);
  color: var(--white);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.galicia::before {
  content: 'GALÍCIA';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(220px, 32vw, 520px);
  letter-spacing: 10px;
  line-height: 0.75;
  color: rgba(255,255,255,0.08);
  pointer-events: none;
  white-space: nowrap;
}
.galicia__text {
  position: relative;
  z-index: 2;
}
.galicia__text p {
  font-size: 18px;
  margin: 0 0 22px 0;
  line-height: 1.7;
}
.galicia__text a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.galicia__phone {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}
.galicia__phone img {
  max-height: 600px;
  width: auto;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.4));
}
.galicia__reel-mask {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  background: #000;
}
.galicia__reel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% + 140px);
  border: 0;
  background: #000;
}

/* =====================================================
   SLIDE 8 · ONDE VAMOS ATUAR
   ===================================================== */
.atuacao {
  background: #f4ebe4;
  padding: 120px 48px;
  text-align: left;
  max-width: none;
}
.atuacao__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
  max-width: var(--maxw);
  margin: 0 auto;
}
.atuacao__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 120px);
  color: var(--red);
  letter-spacing: 2px;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
  position: sticky;
  top: 100px;
}
.atuacao__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: left;
}
.atuacao__item {
  background: var(--red);
  color: var(--white);
  padding: 36px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: transform .3s, box-shadow .3s;
}
.atuacao__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.atuacao__item--wide {
  grid-column: 1 / -1;
  background: var(--red-deep);
}
.atuacao__num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.atuacao__item p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  align-self: center;
}
.atuacao__quote {
  max-width: 800px;
  margin: 100px auto 0;
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-dark);
  font-style: italic;
}
.atuacao__quote strong {
  color: var(--red);
  font-style: normal;
}

/* =====================================================
   SLIDE 9 · TRANSIÇÃO
   ===================================================== */
.transicao {
  background: var(--white);
  padding: 100px 0 100px 80px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: stretch;
  max-width: none;
}
.transicao__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.transicao__text p {
  font-size: 18px;
  margin: 0 0 22px 0;
  line-height: 1.7;
  color: var(--red);
}
.transicao__text .highlight {
  background: var(--red);
  color: var(--white);
  display: inline-block;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 19px;
  margin: 8px 0 20px 0;
}
.transicao__image {
  margin: -100px 0;
  height: calc(100% + 200px);
}
.transicao__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =====================================================
   SLIDE 10 · ORÇAMENTO
   ===================================================== */
.orcamento {
  max-width: none;
  background: var(--red);
  color: var(--white);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}
.orcamento__watermark {
  position: absolute;
  top: 20px;
  left: 0;
  font-family: var(--font-display);
  font-size: clamp(110px, 15.5vw, 240px);
  letter-spacing: 8px;
  line-height: 0.9;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  white-space: nowrap;
  text-align: left;
}
.orcamento__watermark span { display: block; }
.orcamento__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 3px;
  margin: 0 0 60px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}
.orcamento__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: 60px;
}
.orcamento__list h3 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 2px;
  margin: 0 0 28px 0;
}
.orcamento__list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}
.orcamento__list li {
  font-size: 17px;
  line-height: 1.6;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.orcamento__nota {
  font-size: 16px;
  font-style: italic;
  opacity: .9;
  margin-top: 24px;
}
.orcamento__values {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.bubble {
  background: var(--white);
  color: var(--red);
  border-radius: 50%;
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease, color .3s ease;
  cursor: default;
}
.bubble:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  background: #1a1a1a;
  color: var(--white);
}
.bubble__currency {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: 2px;
}
.bubble__amount {
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-top: 6px;
}
.bubble__progress {
  position: absolute;
  bottom: 28px;
  width: 60%;
  height: 6px;
  background: rgba(186, 0, 0, 0.15);
  border-radius: 3px;
  overflow: hidden;
}
.bubble__progress-bar {
  height: 100%;
  width: var(--progress, 0%);
  background: var(--red);
  border-radius: 3px;
  transition: width 1.2s ease;
}
.bubble__connector {
  width: 80px;
  height: 2px;
  background: rgba(255,255,255,0.5);
}
.orcamento__progresso {
  max-width: 760px;
  margin: 32px auto 0;
  position: relative;
  z-index: 2;
}
.orcamento__progresso-valores {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  font-size: 18px;
  font-family: var(--font-display);
  letter-spacing: 1.5px;
}
.orcamento__progresso-valores strong { color: var(--white); }
.orcamento__percentual {
  color: var(--white);
  font-size: 22px;
}
.orcamento__progresso-barra {
  width: 100%;
  height: 12px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  overflow: hidden;
}
.orcamento__progresso-bar {
  height: 100%;
  width: var(--progress, 0%);
  background: var(--white);
  border-radius: 999px;
  transition: width 1.2s ease;
}
.orcamento__meta {
  position: relative;
  z-index: 2;
  text-align: right;
  font-size: 22px;
  border-top: 2px solid rgba(255,255,255,0.3);
  padding-top: 24px;
}
.orcamento__meta strong {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 2px;
  margin-left: 12px;
}
.orcamento__rodape {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 3px;
  opacity: .7;
}

/* =====================================================
   SLIDE 11 · APOIAR
   ===================================================== */
.apoiar {
  max-width: none;
  background: var(--white);
  color: var(--text-dark);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.apoiar::before {
  content: 'CHAMADO';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(200px, 28vw, 470px);
  letter-spacing: 10px;
  line-height: 0.75;
  color: rgba(186, 0, 0, 0.06);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
.apoiar > * { position: relative; z-index: 1; }
.apoiar__content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 2px;
  margin: 0 0 48px 0;
  line-height: 1;
}
.apoiar__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.apoiar__item {
  border-left: 4px solid var(--red);
  padding-left: 24px;
}
.apoiar__item h4 { color: var(--red); }
.apoiar__item h4 {
  margin: 0 0 8px 0;
  font-size: 22px;
  letter-spacing: 1px;
}
.apoiar__item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  opacity: .95;
}
.apoiar__qr {
  text-align: center;
}
.apoiar__scan {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.apoiar__qr-frame {
  background: var(--white);
  padding: 24px;
  display: inline-block;
  box-shadow: var(--shadow-lg);
}
.apoiar__qr-frame img {
  width: 260px;
  height: 260px;
}

/* Pix box (extra) */
.pix-box {
  margin-top: 28px;
  background: #f4ebe4;
  border: 2px dashed rgba(186, 0, 0, 0.4);
  padding: 18px;
  border-radius: 10px;
}
.pix-box__label {
  margin: 0 0 8px 0;
  font-size: 12px;
  letter-spacing: 2px;
  opacity: .8;
}
.pix-box__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  transition: transform .15s, box-shadow .2s;
}
.pix-box__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
.pix-box__key {
  font-family: monospace;
  font-size: 14px;
  word-break: break-all;
  text-align: left;
}
.pix-box__copy {
  flex-shrink: 0;
  padding: 4px 12px;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.pix-box__btn.copied .pix-box__copy {
  background: #1f9d4f;
}

/* =====================================================
   SLIDE 12 · CONTATO + FORM
   ===================================================== */
.contato {
  max-width: none;
  background: var(--red-deep);
  color: var(--white);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.contato__watermark {
  position: absolute;
  top: 20px;
  left: 0;
  font-family: var(--font-display);
  font-size: clamp(150px, 20vw, 320px);
  letter-spacing: 6px;
  line-height: 0.9;
  color: rgba(255,255,255,0.06);
  pointer-events: none;
  white-space: nowrap;
  z-index: 0;
}
.contato__watermark span { display: block; }
.contato__info {
  position: relative;
  z-index: 2;
}
.contato__info h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 2px;
  margin: 0 0 40px 0;
}
.contato__bloco {
  margin-bottom: 28px;
}
.contato__bloco h4 {
  margin: 0 0 6px 0;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: .7;
}
.contato__bloco p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}
.contato__bloco a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  transition: border .2s;
}
.contato__bloco a:hover { border-bottom-color: var(--white); }

/* Formulário */
.contato__form {
  position: relative;
  z-index: 2;
  background: var(--white);
  color: var(--text-dark);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border-radius: 4px;
}
.contato__form h3 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 2px;
  color: var(--red);
  margin: 0 0 8px 0;
}
.contato__form-sub {
  margin: 0 0 28px 0;
  font-size: 15px;
  color: var(--text-soft);
}
.form-row {
  margin-bottom: 18px;
}
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 6px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 2px solid #e5e5e5;
  background: var(--white);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 4px;
  transition: border-color .2s;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-row textarea {
  resize: vertical;
  min-height: 100px;
}
.form-submit {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 4px;
  width: 100%;
  transition: background .2s, transform .15s;
}
.form-submit:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
}
.form-status {
  margin: 14px 0 0 0;
  font-size: 14px;
  text-align: center;
  min-height: 20px;
}
.form-status.success { color: #1f9d4f; }
.form-status.error { color: var(--red); }

/* =====================================================
   SLIDE 13 · OBRIGADO
   ===================================================== */
.obrigado {
  max-width: none;
  background: var(--white);
  color: var(--red);
  padding: 140px 80px;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.obrigado__watermark {
  position: absolute;
  bottom: 0; left: 0;
  font-family: var(--font-display);
  font-size: clamp(160px, 24vw, 360px);
  letter-spacing: 6px;
  color: rgba(186, 0, 0, 0.06);
  line-height: .85;
  pointer-events: none;
  white-space: nowrap;
}
.obrigado__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.obrigado__intro {
  font-size: 22px;
  margin: 0 0 32px 0;
}
.obrigado__verso {
  margin: 0 0 32px 0;
  padding: 0 0 0 24px;
  border-left: 4px solid var(--red);
}
.obrigado__verso p {
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  margin: 0 0 8px 0;
}
.obrigado__verso cite {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
}
.obrigado__fechamento {
  font-size: 19px;
  margin: 0;
  line-height: 1.6;
}

/* =====================================================
   RODAPÉ
   ===================================================== */
.rodape {
  background: var(--text-dark);
  color: var(--white);
  padding: 40px 48px;
  text-align: center;
}
.rodape__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.rodape__logos img {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: .8;
}
.rodape p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
  opacity: .6;
}

/* =====================================================
   RESPONSIVO (Mobile / Tablet)
   ===================================================== */
@media (max-width: 960px) {
  .topnav { padding: 12px 18px; }
  .topnav__links { display: none; }
  .topnav__brand { font-size: 18px; }

  section { padding: 60px 24px; }

  .capa { min-height: 600px; }
  .capa__content { padding-left: 24px; }
  .capa__logos { left: 24px; gap: 18px; }
  .capa__logos .logo { height: 28px; }

  .quem-somos,
  .europa,
  .chamado,
  .galicia,
  .transicao,
  .apoiar,
  .contato {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 24px;
  }
  .sepal { padding: 60px 24px; }
  .sepal__footer { flex-direction: column; gap: 20px; }

  .quem-somos__photo,
  .europa__visual,
  .chamado__visual {
    padding-left: 0;
  }
  .quem-somos__sidetext,
  .europa__sidetext,
  .chamado__sidetext { display: none; }

  .europa {
    background: var(--red);
    grid-template-rows: none;
    padding: 60px 24px;
  }
  .europa__visual { margin-right: 0; }
  .europa__visual img { width: 100%; max-width: 100%; height: auto; }
  .chamado__visual { margin-left: 0; }

  .atuacao__inner { grid-template-columns: 1fr; gap: 24px; }
  .atuacao__title { position: static; }

  .transicao {
    padding: 60px 24px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .transicao__image {
    margin: 0;
    height: auto;
  }
  .transicao__image img { height: 320px; }

  .sepal {
    min-height: auto;
    padding: 80px 24px 120px;
  }
  .sepal__footer {
    position: static;
    left: auto; right: auto; bottom: auto;
    margin-top: 40px;
    align-items: center;
  }
  .sepal__watermark { font-size: clamp(140px, 40vw, 320px); }

  .gallery-block__bg { font-size: clamp(140px, 28vw, 260px); }
  .galicia::before { font-size: clamp(120px, 30vw, 280px); }
  .apoiar::before { font-size: clamp(120px, 28vw, 280px); }
  .contato__watermark { font-size: clamp(90px, 18vw, 200px); }
  .orcamento__watermark { font-size: clamp(70px, 14vw, 160px); }

  .europa__visual img,
  .chamado__visual img,
  .transicao__image img { height: 320px; }

  .timeline { padding: 60px 24px; }
  .timeline__content { grid-template-columns: 1fr; gap: 40px; }
  .timeline__photos { height: auto; display: flex; flex-direction: column; gap: 20px; }
  .polaroid--1, .polaroid--2, .polaroid--3 {
    position: relative;
    width: 100%;
    top: auto; left: auto; right: auto; bottom: auto;
    transform: none;
  }

  .atuacao { padding: 80px 24px; }
  .atuacao__grid { grid-template-columns: 1fr; }

  .orcamento { padding: 60px 24px; }
  .orcamento__grid { grid-template-columns: 1fr; gap: 50px; }
  .orcamento__values { flex-direction: column; }
  .bubble { width: 180px; height: 180px; }
  .bubble__connector { width: 2px; height: 40px; }
  .orcamento__meta { text-align: center; }

  .apoiar__qr-frame img { width: 200px; height: 200px; }

  .contato__form { padding: 28px 22px; }

  .obrigado { padding: 80px 24px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .capa__title { font-size: 64px; }
  .capa__tag { font-size: 16px; padding: 8px 16px; }
}

/* =====================================================
   ANIMAÇÕES SUTIS (scroll reveal)
   ===================================================== */
@keyframes flag-sway {
  0%, 100% { transform: rotate(-1.2deg) translateY(0); }
  50%      { transform: rotate(1.2deg) translateY(-4px); }
}
@keyframes flag-sway-soft {
  0%, 100% { transform: rotate(-0.8deg); }
  50%      { transform: rotate(0.8deg); }
}
@media (prefers-reduced-motion: no-preference) {
  .capa__flag {
    transform-origin: top left;
    animation: flag-sway 6s ease-in-out infinite;
    animation-play-state: paused;
  }
  .chamado__visual img {
    transform-origin: top left;
    animation: flag-sway 7s ease-in-out infinite;
    animation-play-state: paused;
  }
  .europa__visual img {
    transform-origin: top center;
    animation: flag-sway-soft 8s ease-in-out infinite;
    animation-play-state: paused;
  }
  .flag-running { animation-play-state: running !important; }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .8s ease, transform .8s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* =====================================================
   LIGHTBOX
   ===================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity .25s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  cursor: zoom-out;
  user-select: none;
  display: block;
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 32px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
  line-height: 1;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255,255,255,0.18); }
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lightbox__nav { width: 44px; height: 44px; font-size: 26px; }
  .lightbox__close { top: 16px; right: 16px; }
}
