/* ============================================================
   DIA DA PRAIA — style.css
   ============================================================ */

:root {
  --teal:    #1a7d8c;
  --teal-dk: #0e4d5a;
  --teal-xk: #092f38;
  --orange:  #f06a25;
  --cream:   #f0e6c8;
  --white:   #fff;
  --ink:     #0d2b32;
  --muted:   #4a7a85;
  --light:   #f0f9fa;
}

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

html { scroll-behavior: smooth; }

body.dp-body {
  font-family: 'Inter', sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

.dp-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── LABELS ── */
.dp-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.dp-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 22px;
  background: url('../imagens/elemento-ondas-decorativo.png') center / contain no-repeat;
  flex-shrink: 0;
}
.dp-label-cream  { color: rgba(240,230,200,.7); }
.dp-label-cream::before { opacity: .6; }
.dp-label-orange { color: var(--orange); }

/* ── HEADINGS ── */
.dp-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.02;
  color: var(--teal-dk);
  margin-bottom: 20px;
}
.dp-h2-white { color: var(--white); }

/* ── BODY TEXT ── */
.dp-lead {
  font-size: 17px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 48px;
}
.dp-lead-cream {
  color: var(--cream);
  opacity: .8;
}

/* ── SECTIONS ── */
.dp-section { padding: 88px 0; }

.dp-dark {
  background:
    radial-gradient(ellipse at 28% 38%, rgba(30,90,125,.35) 0%, transparent 55%),
    linear-gradient(180deg, #1e4d6b 0%, #14374f 45%, #0d2538 72%, #091825 100%);
  position: relative;
  overflow: hidden;
}

.dp-mid { background: var(--light); }

/* wrapper bg inscrição + carteirinha */
.dp-insc-bg-wrap {
  position: relative;
}

.dp-insc-bg-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../imagens/voluntarios-limpeza-orla-grupo.webp') center 40% / cover no-repeat;
  z-index: 0;
}

.dp-insc-bg-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(240,249,250,.82);
  z-index: 0;
}

.dp-insc-bg-wrap > section {
  position: relative;
  z-index: 1;
}


/* ╔══════════════════════════════╗
   ║  COUNTDOWN FLUTUANTE         ║
   ╚══════════════════════════════╝ */

.dp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: var(--teal-xk);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 48px rgba(0,0,0,.4);
  min-width: 230px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s ease;
}
.dp-float.dp-float-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

/* collapsed → círculo com sonar */
.dp-float.dp-collapsed {
  min-width: 0;
  width: 60px;
  height: 60px;
  padding: 0;
  border-radius: 50%;
  animation: dpFloatSonar 2.4s ease-out infinite;
}

@keyframes dpFloatSonar {
  0%   { box-shadow: 0 12px 48px rgba(0,0,0,.4), 0 0 0 0px rgba(240,106,37,.55), 0 0 0 0px rgba(240,106,37,.3); }
  70%  { box-shadow: 0 12px 48px rgba(0,0,0,.4), 0 0 0 18px rgba(240,106,37,0),   0 0 0 32px rgba(240,106,37,0); }
  100% { box-shadow: 0 12px 48px rgba(0,0,0,.4), 0 0 0 0px rgba(240,106,37,0),   0 0 0 0px rgba(240,106,37,0); }
}

/* toggle button */
.dp-float-toggle {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: var(--cream);
  border: none;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
.dp-float-toggle:hover { background: rgba(255,255,255,.2); }

.dp-float.dp-collapsed .dp-float-toggle {
  position: static;
  width: 60px;
  height: 60px;
  font-size: 0;
  background: transparent;
}

#dpFloatContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  transition: opacity .26s ease, transform .26s cubic-bezier(.4,0,.2,1);
  transform-origin: bottom center;
}

.dp-float-logo {
  height: 28px;
  opacity: .9;
  filter: brightness(0) invert(1);
}

.dp-float-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .65;
  text-align: center;
}
.dp-float-label strong { opacity: 1; }

.dp-float-timer {
  display: flex;
  align-items: center;
  gap: 2px;
}

.dp-float-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 44px;
}

.dp-float-unit span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.dp-float-unit small {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--cream);
  opacity: .55;
  margin-top: 2px;
}

.dp-float-colon {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  padding-bottom: 14px;
  line-height: 1;
}

.dp-float-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.dp-float-cta:hover { opacity: .88; transform: translateY(-1px); }

.dp-float-parceiros {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
}

.dp-float-parc {
  height: 18px;
  opacity: .7;
}


.dp-float-parc-sep {
  font-size: 12px;
  color: rgba(255,255,255,.25);
  line-height: 1;
}


/* ╔══════════════════════════════╗
   ║  HERO                        ║
   ╚══════════════════════════════╝ */

.dp-hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  overflow: hidden;
  color: var(--white);
}

/* desktop: altura mínima maior */
@media (min-width: 901px) {
  .dp-hero { min-height: 740px; }
}

/* desktop grande (acima de notebook) */
@media (min-width: 1440px) {
  .dp-hero { min-height: 800px; }
}

.dp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.dp-hero-bg img,
.dp-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.dp-hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(9,47,56,.0) 50%, rgba(9,47,56,.85) 100%),
    linear-gradient(160deg, rgba(9,47,56,.82) 0%, rgba(14,77,90,.45) 60%, transparent 100%);
}

.dp-hero-body {
  position: absolute;
  inset: 0;
  bottom: 130px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 16px;
  padding-bottom: 24px;
  gap: 24px;
}

/* top bar */
.dp-hero-top {
  position: absolute;
  top: 28px;
  left: 28px;
  right: 28px;
  display: flex;
  align-items: center;
  z-index: 3;
}

.dp-hero-top .dp-hero-pill {
  margin-left: auto;
}

.dp-header-left {
  --dp-header-gap: 40px;
  display: flex;
  align-items: center;
  gap: var(--dp-header-gap);
}

.dp-logo-or {
  height: 80px;
  opacity: .9;
}

.dp-logo-impacto {
  height: 52px;
  opacity: .85;
  filter: brightness(0) invert(1);
}

.dp-header-partner {
  height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .85;
}

.dp-header-mamba    { height: 64px; }
.dp-header-route    { height: 38px; }
.dp-header-ufrj     { height: 60px; }
.dp-header-todos    { height: 38px; max-width: 90px; }
.dp-header-rio      { height: 38px; max-width: 100px; }
.dp-header-cogumelo { height: 38px; width: 38px; }
.dp-header-amasco   { height: 38px; max-width: 38px; }

/* carrossel de parceiros no hero */
.dp-header-carousel {
  overflow: hidden;
  flex: 0 0 auto;
  min-width: 0;
}

.dp-header-carousel-track {
  display: flex;
  align-items: center;
  gap: var(--dp-header-gap);
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.dp-header-carousel-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}

.dp-hero-pill {
  position: relative;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: 7px 16px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

@keyframes dpSonar {
  0%   { box-shadow: 0 0 0 0px rgba(240,230,200,.5); }
  70%  { box-shadow: 0 0 0 18px rgba(240,230,200,0); }
  100% { box-shadow: 0 0 0 0px rgba(240,230,200,0); }
}

.dp-hero-pill {
  animation: dpSonar 2.6s ease-out 1s infinite;
}

/* title block */
.dp-hero-content { display: flex; flex-direction: column; gap: 20px; margin-top: 180px; }

.dp-title-wrap { display: flex; align-items: center; gap: 16px; }

.dp-hero-title {
  margin: 0;
  line-height: 1;
}

.dp-titulo-img {
  width: clamp(200px, 29.8vw, 500px);
  display: block;
  filter: brightness(0) invert(1);
  opacity: .95;
}

.dp-selo {
  width: 120px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.35));
}

.dp-hero-desc {
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.6;
  color: var(--cream);
  opacity: .9;
  max-width: 520px;
}

.dp-btn-hero {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  align-self: flex-start;
  transition: opacity .2s, transform .2s;
}
.dp-btn-hero:hover { opacity: .88; transform: translateY(-2px); }

/* ass tagline */
.dp-hero-ass { align-self: flex-start; margin-top: 32px; }
.dp-hero-ass img {
  max-width: clamp(200px, 30.95vw, 520px);
  opacity: .95;
  animation: dpAssIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

@keyframes dpAssIn {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: .95; transform: translateX(0); }
}

/* scroll hint */
.dp-scroll-hint {
  position: absolute;
  bottom: 200px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--cream);
  opacity: 1;
  transition: transform .2s, background .2s;
  animation: dpScrollBounce 2s ease-in-out infinite;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  border: 2px solid var(--cream);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
}
.dp-scroll-hint:hover { background: rgba(255, 255, 255, .3); }
.dp-scroll-hint svg { width: 40px; height: 40px; display: block; }

@keyframes dpScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* numbers strip */
.dp-hero-numbers {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 24px 0;
}

.dp-numbers-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dp-num-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.dp-num-val {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 100px;
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dp-num-val sup {
  font-size: .38em;
  font-weight: 700;
  opacity: .75;
  margin-top: .1em;
}

.dp-num-item > span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .55;
}

.dp-num-sep {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,.12);
  margin: 0 40px;
  flex-shrink: 0;
}

/* wave transition */
.dp-wave-top { display: none; }


/* ╔══════════════════════════════╗
   ║  O QUE É                     ║
   ╚══════════════════════════════╝ */

/* oqe layout */
.dp-oqe-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

.dp-oqe-right {
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
}

.dp-oqe-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

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

.dp-feature {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 28px 24px;
  border: 1px solid #e4f0f2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.dp-feature:hover {
  box-shadow: 0 8px 32px rgba(26,125,140,.1);
  transform: translateY(-3px);
}

.dp-feature-icon {
  width: 40px;
  height: 40px;
  color: rgba(255,255,255,.85);
  flex-shrink: 0;
}

.dp-feature h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-top: 4px;
}

.dp-feature p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}

.dp-feature-img {
  width: 45px;
  margin: auto auto 0;
  display: block;
}
.dp-feature-img .dp-wave-a { fill: var(--cream); }
.dp-feature-img .dp-wave-b { fill: #4ba8c5; }
.dp-feature:nth-child(1) .dp-feature-img .dp-wave-a,
.dp-feature:nth-child(1) .dp-feature-img .dp-wave-b { fill: #ea6c2e; }
.dp-feature:nth-child(2) .dp-feature-img .dp-wave-a,
.dp-feature:nth-child(2) .dp-feature-img .dp-wave-b { fill: #113137; }
.dp-feature:nth-child(3) .dp-feature-img .dp-wave-a,
.dp-feature:nth-child(3) .dp-feature-img .dp-wave-b { fill: #f9e9d6; }
.dp-feature:nth-child(4) .dp-feature-img .dp-wave-a,
.dp-feature:nth-child(4) .dp-feature-img .dp-wave-b { fill: #196e7a; }

.dp-feature:nth-child(1) { background: var(--teal);    border-color: transparent; }
.dp-feature:nth-child(2) { background: var(--orange);  border-color: transparent; }
.dp-feature:nth-child(3) { background: var(--teal-dk); border-color: transparent; }
.dp-feature:nth-child(4) { background: var(--teal-xk); border-color: transparent; }

.dp-feature:nth-child(1) h3,
.dp-feature:nth-child(2) h3,
.dp-feature:nth-child(3) h3,
.dp-feature:nth-child(4) h3 { color: var(--white); }

.dp-feature:nth-child(1) p,
.dp-feature:nth-child(2) p,
.dp-feature:nth-child(3) p,
.dp-feature:nth-child(4) p { color: rgba(255,255,255,.78); }

.dp-feature:nth-child(1) .dp-feature-n,
.dp-feature:nth-child(2) .dp-feature-n,
.dp-feature:nth-child(3) .dp-feature-n,
.dp-feature:nth-child(4) .dp-feature-n { color: rgba(255,255,255,.35); }


/* ╔══════════════════════════════╗
   ║  GALERIA                     ║
   ╚══════════════════════════════╝ */

.dp-galeria {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}

.dp-galeria-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.dp-gal-item {
  flex: 0 0 33.333%;
  height: 360px;
  overflow: hidden;
}

.dp-gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.dp-gal-item:hover img { transform: scale(1.05); }

.dp-gal-nav {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.dp-gal-btn {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,.9);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  color: var(--teal-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
}
.dp-gal-btn:hover { background: var(--orange); color: var(--white); }


/* ╔══════════════════════════════╗
   ║  A ORLA TODA, JUNTA          ║
   ╚══════════════════════════════╝ */

.dp-orla-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.dp-ondas-decor {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  opacity: .12;
  pointer-events: none;
  z-index: 1;
}

#dp-orla .dp-wrap { position: relative; z-index: 1; }

.dp-bairros {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.dp-bairro {
  position: relative;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  overflow: hidden;
  height: 130px;
  cursor: default;
  transition: border-color .3s;
}
.dp-bairro:hover {
  border-color: rgba(240,106,37,.5);
}

/* front */
.dp-bairro-front {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  transition: opacity .3s, transform .3s;
}
.dp-bairro:hover .dp-bairro-front {
  opacity: 0;
  transform: translateY(-8px);
}

.dp-bairro-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,.35);
  transition: color .2s;
}
.dp-bairro:hover .dp-bairro-hint { color: var(--orange); }

.dp-bairro-front strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: .01em;
}

.dp-bairro-sub {
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* hover overlay */
.dp-bairro-hover {
  position: absolute;
  inset: 0;
  background: rgba(14,77,90,.97);
  backdrop-filter: blur(4px);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.dp-bairro:hover .dp-bairro-hover {
  transform: translateY(0);
}

.dp-bairro-hover-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
}

.dp-bairro-hover ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dp-bairro-hover li {
  font-size: 12px;
  color: var(--cream);
  opacity: .85;
  padding-left: 10px;
  position: relative;
}
.dp-bairro-hover li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--orange);
}


/* ╔══════════════════════════════╗
   ║  NOTÍCIAS                    ║
   ╚══════════════════════════════╝ */

/* carrossel de notícias */
.dp-noticias-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  padding: 12px 0;
}

.dp-noticias-track {
  display: flex;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.dp-not-slide {
  flex: 0 0 33.333%;
  box-sizing: border-box;
  padding: 0 12px;
  display: flex;
}
.dp-not-slide .dp-noticia { width: 100%; }

.dp-not-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dp-not-btn {
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.dp-not-btn:hover { background: var(--orange); transform: translateY(-2px); }

.dp-noticia {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e4f0f2;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
  text-decoration: none;
  color: inherit;
}
.dp-noticia:hover {
  box-shadow: 0 8px 32px rgba(26,125,140,.12);
  transform: translateY(-4px);
}

.dp-noticia-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.dp-noticia-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.dp-noticia:hover .dp-noticia-img img { transform: scale(1.05); }

.dp-noticia-veiculo {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--teal-dk);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.dp-noticia-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.dp-noticia-data {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.dp-noticia-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}

.dp-noticia-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.dp-noticia-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: .04em;
  margin-top: 4px;
  transition: gap .2s, color .2s;
}
.dp-noticia-link:hover { gap: 8px; color: var(--orange); }

/* ╔══════════════════════════════╗
   ║  INSCRIÇÃO                   ║
   ╚══════════════════════════════╝ */

.dp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.dp-step {
  border: 1px solid #d4edf0;
  border-radius: 14px;
  padding: 26px 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px);
  transition: box-shadow .2s;
}
.dp-step:hover { box-shadow: 0 6px 24px rgba(26,125,140,.15); }

.dp-step-n {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.dp-step h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-dk);
  margin-bottom: 8px;
}
.dp-step p { font-size: 14px; color: var(--muted); line-height: 1.55; }

.dp-cta-bar {
  background: var(--orange);
  color: var(--white);
  border-radius: 14px;
  padding: 20px 48px;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  display: inline-block;
  animation: dpSonarCta 2.6s ease-out 1s infinite;
}

@keyframes dpSonarCta {
  0%   { box-shadow: 0 0 0 0px rgba(240,106,37,.5); }
  70%  { box-shadow: 0 0 0 20px rgba(240,106,37,0); }
  100% { box-shadow: 0 0 0 0px rgba(240,106,37,0); }
}
.dp-btn-hashtag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
  margin-top: 12px;
  pointer-events: none;
}
.dp-btn-hashtag:hover {}

@keyframes dpSonarTeal {
  0%   { box-shadow: 0 0 0 0px rgba(26,125,140,.5); }
  70%  { box-shadow: 0 0 0 18px rgba(26,125,140,0); }
  100% { box-shadow: 0 0 0 0px rgba(26,125,140,0); }
}

.dp-cta-bar-link {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .1em;
  text-decoration: none;
  display: inline-block;
  transition: opacity .2s;
}
.dp-cta-bar-link:hover { opacity: .8; }


/* ╔══════════════════════════════╗
   ║  CARTEIRINHA                 ║
   ╚══════════════════════════════╝ */

.dp-card-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.dp-carteirinha {
  max-width: 360px;
  width: 100%;
  border-radius: 39px;
  box-shadow: 0 24px 72px rgba(14,50,90,.4);
  display: block;
}


/* ╔══════════════════════════════╗
   ║  MURAL                       ║
   ╚══════════════════════════════╝ */

.dp-msgs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.dp-msg {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  transition: background .2s;
}
.dp-msg:hover { background: rgba(255,255,255,.11); }

.dp-msg p {
  font-size: 15px;
  line-height: 1.62;
  color: var(--white);
  font-style: italic;
}

.dp-msg span {
  font-size: 12px;
  color: var(--cream);
  opacity: .55;
  font-weight: 600;
}


/* mural cta */
.dp-mural-cta {
  margin-top: 40px;
  text-align: center;
}

.dp-btn-mural {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 12px;
  cursor: pointer;
  transition: background .2s, color .2s, transform .2s;
  animation: dpSonar 2.6s ease-out 1s infinite;
}
.dp-btn-mural:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

/* ╔══════════════════════════════╗
   ║  MODAL INSCRIÇÃO             ║
   ╚══════════════════════════════╝ */

.dp-modal-insc { max-width: 540px; }

/* steps bar */
.dp-insc-steps {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.dp-insc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.dp-insc-step-n {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.45);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s, color .3s;
}

.dp-insc-step-lbl {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  transition: color .3s;
}

.dp-insc-step.active .dp-insc-step-n {
  background: var(--orange);
  color: var(--white);
}
.dp-insc-step.active .dp-insc-step-lbl { color: var(--cream); }

.dp-insc-step.done .dp-insc-step-n {
  background: rgba(255,255,255,.25);
  color: var(--white);
}
.dp-insc-step.done .dp-insc-step-lbl { color: rgba(255,255,255,.55); }

.dp-insc-step-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,.15);
  margin: 0 8px;
  margin-bottom: 14px;
  transition: background .3s;
}
.dp-insc-step-line.done { background: rgba(255,255,255,.4); }

/* panes */
.dp-insc-pane { display: none; }
.dp-insc-pane.active { display: block; }

.dp-insc-pane h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}

.dp-insc-pane > p {
  font-size: 14px;
  color: var(--cream);
  opacity: .75;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* nav buttons */
.dp-insc-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}
.dp-insc-nav-center { justify-content: center; }

.dp-insc-pane > p.dp-insc-error {
  font-size: 12px;
  color: #ff3b30;
  font-weight: 600;
  opacity: 1;
  min-height: 16px;
  margin-top: 8px;
}

.dp-btn-back {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 0;
  transition: color .2s;
}
.dp-btn-back:hover { color: var(--white); }

/* select */
.dp-field select {
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background-color: rgba(255,255,255,.08);
  outline: none;
  width: 100%;
  cursor: pointer;
  transition: border-color .2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f0e6c8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.dp-field select option { background: #14374f; color: var(--white); }
.dp-field select:focus { border-color: var(--orange); }

/* quiosque radio list */
.dp-quiosque-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 4px;
}

.dp-quiosque-list label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--cream);
  transition: border-color .2s, background .2s;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.dp-quiosque-list label:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.06); }
.dp-quiosque-list input[type=radio] { accent-color: var(--orange); }
.dp-quiosque-list input[type=radio]:checked + span { font-weight: 600; color: var(--white); }
.dp-quiosque-list label:has(input:checked) { border-color: var(--orange); background: rgba(240,106,37,.12); }

/* optin */
.dp-insc-optin {
  margin-top: 20px;
}

.dp-optin-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.dp-optin-label input[type=checkbox] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--orange);
  cursor: pointer;
}

.dp-optin-label span {
  font-size: 12px;
  line-height: 1.6;
  color: var(--cream);
  opacity: .7;
}

/* confirmação passo 3 */
.dp-confirm-msg {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dp-confirm-msg p.dp-confirm-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  opacity: 1;
}

.dp-confirm-msg p {
  font-size: 13px;
  color: var(--cream);
  opacity: .8;
  line-height: 1.55;
}

.dp-confirm-info {
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.dp-confirm-info p {
  font-size: 13px;
  color: var(--white);
  opacity: .9;
}

.dp-confirm-sub {
  font-size: 13px !important;
  opacity: .65 !important;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 10px;
}
.dp-confirm-sub strong {
  color: var(--white);
  opacity: 1;
}

.dp-confirm-wpp {
  display: block;
  font-size: 12px;
  color: #5ddb8a;
  text-decoration: none;
  line-height: 1.5;
  opacity: .85;
  transition: opacity .2s;
}
.dp-confirm-wpp:hover { opacity: 1; }
.dp-confirm-wpp-link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}

/* carteirinha gerada */
.dp-card-gerada {
  margin: 20px auto 0;
  max-width: 100%;
  animation: dpCardIn .5s cubic-bezier(.34,1.56,.64,1) both;
}

@keyframes dpCardIn {
  from { opacity: 0; transform: scale(.92) translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* ╔══════════════════════════════╗
   ║  MODAL MURAL                 ║
   ╚══════════════════════════════╝ */

.dp-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(9,47,56,.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.dp-modal-overlay.dp-modal-open {
  opacity: 1;
  pointer-events: auto;
}

.dp-modal {
  background: radial-gradient(ellipse at 28% 30%, rgba(30,90,125,.35) 0%, transparent 55%),
              linear-gradient(160deg, #1e4d6b 0%, #14374f 50%, #091825 100%);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  position: relative;
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
  border: 1px solid rgba(255,255,255,.08);
}
.dp-modal-overlay.dp-modal-open .dp-modal {
  transform: none;
}

.dp-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: rgba(255,255,255,.4);
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.dp-modal-close:hover { color: var(--white); }

.dp-modal-header { margin-bottom: 28px; }

.dp-modal-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dp-modal-header h3::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 26px;
  background: url('../imagens/elemento-ondas-decorativo.png') center / contain no-repeat;
  flex-shrink: 0;
  opacity: .75;
}

.dp-modal-header p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.dp-modal-form { display: flex; flex-direction: column; gap: 18px; }

.dp-field { display: flex; flex-direction: column; gap: 6px; position: relative; }

.dp-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .7;
}

.dp-field input,
.dp-field textarea {
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: var(--white);
  background: rgba(255,255,255,.08);
  transition: border-color .2s, background .2s;
  resize: none;
  outline: none;
}
.dp-field input::placeholder,
.dp-field textarea::placeholder { color: rgba(255,255,255,.3); }
.dp-field input:focus,
.dp-field textarea:focus {
  border-color: var(--orange);
  background: rgba(255,255,255,.12);
}

.dp-field-count {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 11px;
  color: rgba(255,255,255,.3);
}

.dp-btn-submit {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
  margin-top: 4px;
}
.dp-btn-submit:hover { opacity: .88; transform: translateY(-1px); }

.dp-modal-success {
  text-align: center;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.dp-modal-success p {
  font-size: 16px;
  color: var(--teal-dk);
  font-weight: 600;
  line-height: 1.5;
}

/* ╔══════════════════════════════╗
   ║  FOOTER                      ║
   ╚══════════════════════════════╝ */

.dp-footer {
  background: var(--white);
  border-top: 1px solid #d4edf0;
  padding: 64px 0 36px;
}

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

.dp-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.dp-footer-logo {
  height: 60px;
  opacity: .9;
}

.dp-footer-slogan {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0;
}

.dp-footer-txt {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 580px;
}

.dp-footer-parceiros {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 8px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.dp-parceiro-grupo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.dp-parceiro-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #a8c8cc;
}

.dp-parceiro-logos {
  display: flex;
  align-items: center;
  gap: 20px;
}

.dp-parceiro-sep {
  width: 1px;
  height: 48px;
  background: #d4edf0;
  align-self: center;
}

.dp-alogo {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) sepia(1) saturate(3) hue-rotate(155deg) brightness(.75);
  opacity: .85;
}

/* Apoio — normaliza marcas largas/altas para o mesmo ritmo de Route e SER UFRJ */
.dp-alogo-todos    { max-width: 86px; }
.dp-alogo-rio      { max-width: 98px; }
.dp-alogo-cogumelo { width: 36px; }
.dp-alogo-amasco   { height: 36px; max-width: 36px; }

.dp-footer-bar {
  font-size: 11px;
  letter-spacing: .1em;
  color: #a8c8cc;
  border-top: 1px solid #d4edf0;
  padding-top: 24px;
  margin-top: 12px;
  width: 100%;
  text-align: center;
}


/* ╔══════════════════════════════╗
   ║  SCROLL REVEAL               ║
   ╚══════════════════════════════╝ */

.dp-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.dp-reveal.dp-in {
  opacity: 1;
  transform: none;
}

.dp-feature:nth-child(2) { transition-delay: .08s; }
.dp-feature:nth-child(3) { transition-delay: .16s; }
.dp-feature:nth-child(4) { transition-delay: .24s; }

.dp-step:nth-child(2) { transition-delay: .1s; }
.dp-step:nth-child(3) { transition-delay: .2s; }

.dp-bairro:nth-child(2)  { transition-delay: .05s; }
.dp-bairro:nth-child(3)  { transition-delay: .10s; }
.dp-bairro:nth-child(4)  { transition-delay: .15s; }
.dp-bairro:nth-child(5)  { transition-delay: .20s; }
.dp-bairro:nth-child(6)  { transition-delay: .05s; }
.dp-bairro:nth-child(7)  { transition-delay: .10s; }
.dp-bairro:nth-child(8)  { transition-delay: .15s; }
.dp-bairro:nth-child(9)  { transition-delay: .20s; }
.dp-bairro:nth-child(10) { transition-delay: .25s; }

.dp-msg:nth-child(2) { transition-delay: .08s; }
.dp-msg:nth-child(3) { transition-delay: .16s; }
.dp-msg:nth-child(4) { transition-delay: .04s; }
.dp-msg:nth-child(5) { transition-delay: .12s; }
.dp-msg:nth-child(6) { transition-delay: .20s; }


/* ╔══════════════════════════════╗
   ║  NOTEBOOK (< 1440px)         ║
   ╚══════════════════════════════╝ */

/* reduz os elementos do hero pra caber sem sobrepor */
@media (min-width: 901px) and (max-width: 1439px) {
  /* topo / logos */
  .dp-hero-top      { top: 20px; left: 20px; right: 20px; }
  .dp-header-left   { --dp-header-gap: 30px; }
  .dp-logo-or       { height: 70px; }
  .dp-logo-impacto  { height: 46px; }
  .dp-header-partner{ height: 39px; }
  .dp-header-mamba  { height: 56px; }
  .dp-header-route  { height: 34px; }
  .dp-header-ufrj   { height: 53px; }
  .dp-header-todos   { height: 34px; max-width: 82px; }
  .dp-header-rio     { height: 34px; max-width: 92px; }
  .dp-header-cogumelo{ height: 34px; width: 34px; }
  .dp-header-amasco  { height: 34px; max-width: 34px; }
  .dp-hero-body     { bottom: 92px; gap: 16px; }
  .dp-hero-content  { margin-top: 140px; gap: 14px; }
  .dp-titulo-img    { width: clamp(200px, 26vw, 500px); }
  .dp-selo          { width: 90px; }
  .dp-hero-desc     { max-width: 440px; }
  .dp-btn-hero      { padding: 12px 26px; }
  .dp-hero-ass      { margin-top: 20px; }

  /* scroll hint */
  .dp-scroll-hint     { bottom: 150px; width: 52px; height: 52px; }
  .dp-scroll-hint svg { width: 32px; height: 32px; }

  /* números */
  .dp-hero-numbers { padding: 16px 0; }
  .dp-num-val      { font-size: 66px; }
}

/* ╔══════════════════════════════╗
   ║  MOBILE                      ║
   ╚══════════════════════════════╝ */

@media (max-width: 900px) {
  .dp-bairros { grid-template-columns: repeat(3, 1fr); }
  .dp-msgs    { grid-template-columns: 1fr 1fr; }
  .dp-not-slide { flex-basis: 50%; }

  .dp-hero-content { margin-top: 0; }

  .dp-hero-top {
    top: 20px;
    left: 20px;
    right: 20px;
  }
  .dp-header-left { --dp-header-gap: 20px; }
  .dp-logo-or     { height: 56px; }
  .dp-logo-impacto{ height: 36px; }
  .dp-header-partner { height: 32px; }
  .dp-header-mamba   { height: 46px; }
  .dp-header-route   { height: 28px; }
  .dp-header-ufrj    { height: 53px; }
  .dp-header-todos   { height: 28px; max-width: 72px; }
  .dp-header-rio     { height: 28px; max-width: 80px; }
  .dp-header-cogumelo{ height: 28px; width: 28px; }
  .dp-header-amasco  { height: 28px; max-width: 28px; }
}

@media (max-width: 720px) {
  .dp-card-layout { grid-template-columns: 1fr; gap: 40px; }
  .dp-oqe-layout { grid-template-columns: 1fr; }
  .dp-oqe-right  { display: none; }
  .dp-features   { grid-template-columns: 1fr 1fr; }
  .dp-steps     { grid-template-columns: 1fr; }
  .dp-insc-carteirinha-inner { grid-template-columns: 1fr; gap: 40px; }
  .dp-bairros   { grid-template-columns: repeat(2, 1fr); }
  .dp-msgs      { grid-template-columns: 1fr; }
  .dp-gal-item  { flex: 0 0 80%; }

  .dp-not-slide { flex-basis: 100%; }

  .dp-hero-pill { display: none; }
  .dp-selo      { width: 72px; }

  .dp-scroll-hint     { bottom: 130px; width: 46px; height: 46px; }
  .dp-scroll-hint svg { width: 28px; height: 28px; }

  .dp-hero-top {
    top: 16px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .dp-header-left {
    flex-wrap: nowrap;
    --dp-header-gap: 12px;
    width: 100%;
  }
  /* permite que os logos encolham juntos sem quebrar linha em telas estreitas */
  .dp-header-left > img {
    min-width: 0;
    flex-shrink: 1;
    object-fit: contain;
  }
  .dp-logo-or      { height: 44px; }
  .dp-logo-impacto { height: 28px; }
  .dp-header-partner { height: 26px; }
  .dp-header-mamba   { height: 38px; }
  .dp-header-route   { height: 22px; }
  .dp-header-ufrj    { height: 30px; }
  .dp-header-todos   { height: 22px; max-width: 58px; }
  .dp-header-rio     { height: 22px; max-width: 64px; }
  .dp-header-cogumelo{ height: 22px; width: 22px; }
  .dp-header-amasco  { height: 22px; max-width: 22px; }
  .dp-header-carousel-item { height: 46px; }

  .dp-hero-numbers { padding: 12px 0; }
  .dp-num-val   { font-size: 60px; }
  .dp-num-item > span { font-size: 10px; letter-spacing: .08em; }
  .dp-num-sep   { height: 44px; margin: 0 16px; }

  .dp-float {
    bottom: 12px;
    right: 12px;
    min-width: 0;
    padding: 12px 16px;
    gap: 8px;
  }
  .dp-float-unit span { font-size: 26px; }
  .dp-float-colon     { font-size: 20px; }
}

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

  .dp-num-val { font-size: 46px; }
  .dp-num-sep { height: 34px; margin: 0 10px; }
}
