@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Montserrat:ital,wght@0,400;0,600;0,700;0,800;0,900;1,700&family=Poppins:wght@400;600&display=swap');

:root {
  --white: #ffffff;
  --purple-dark: #1a0033;
  --purple: #250066;
  --gold: #ffae00;
  --yellow: #ffcc00;
  --blue: #008dca;
  --link-blue: #005fb1;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background-color: #ffb400;
  background-image: url('/assets/site-background.svg');
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
  background-repeat: no-repeat;
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  width: 100%;
  min-width: 0;
}
body.nav-open {
  overflow: hidden;
}
main {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container {
  width: min(100% - 1.5rem, var(--max-width));
  max-width: var(--max-width);
  margin-inline: auto;
}

.header {
  position: relative;
  z-index: 1000;
  background: radial-gradient(circle, #003bc5 0%, #000a7a 100%);
  border-bottom: none;
  width: 100%;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0 0.75rem;
}
.logo {
  flex-shrink: 0;
}
.logo img { width: 64px; height: 64px; object-fit: contain; }
.nav-desktop { display: none; justify-content: center; gap: 0.25rem; flex-wrap: wrap; }
.nav-desktop a {
  padding: 0.5rem 0.85rem; font-size: 0.9rem; font-weight: 600;
  border-radius: 4px; transition: color 0.2s; color: var(--white);
}
.nav-desktop a:hover, .nav-desktop a.active { color: #c9fc07; }
.header-aplicap { display: none; }
.header-aplicap img { width: 158px; max-width: 100%; }
.menu-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
  margin-left: auto;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block; width: 26px; height: 3px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-mobile {
  display: none; flex-direction: column;
  padding: 0.5rem 0 1.25rem; border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.85rem 0.5rem; font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-mobile a:hover { color: #c9fc07; }

.section-border-top {
  height: 80px;
  margin-top: -2px;
  background: #250066 url('/assets/borda-amarela.png') center top / cover no-repeat;
}

.section-border-blue {
  height: 80px;
  background: #dfdfdf url('/assets/borda-azul.png') center / cover no-repeat;
}

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold), #e69500);
  color: var(--purple-dark); font-weight: 900; font-size: 1rem;
  padding: 1rem 2.5rem; border: none; border-radius: 50px;
  cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: scale(1.03); box-shadow: 0 8px 25px rgba(255, 174, 0, 0.4); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--white); font-weight: 700;
  padding: 0.85rem 2rem; border: 2px solid var(--gold);
  border-radius: 50px; transition: all 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--purple-dark); }

.steps {
  padding: 0;
  text-align: center;
  background: transparent;
}

.steps-header {
  padding: 2rem 1rem 1.75rem;
  background: linear-gradient(180deg, #ffb400 0%, #e38400 100%);
}

.steps-inner {
  padding: 2rem 1rem 2.5rem;
  width: min(100%, 1400px);
  margin: 0 auto;
}

.steps h1 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.steps h1 .white { color: var(--white); }
.steps h1 .purple { color: #250066; }

.steps .steps-subtitle {
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  font-weight: 400;
  color: var(--white);
  margin: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  justify-items: center;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.step-image {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.step-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.step-card p {
  font-size: clamp(0.8rem, 1.6vw, 0.95rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--white);
  max-width: 420px;
  margin: 0 auto;
  font-family: 'Montserrat', Arial, sans-serif;
}

.section-wave {
  height: 90px;
  margin-top: 0;
  background: #fff url('/assets/borda-amarela-inferior.png') center bottom / 100% auto no-repeat;
}

.whatsapp-cta {
  padding: 0 0 0;
  background: transparent;
}

.whatsapp-banner {
  display: block;
  position: relative;
  width: min(100% - 2rem, 1200px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
}

.whatsapp-banner-bg {
  display: block;
  width: 100%;
  line-height: 0;
}

.whatsapp-banner-bg img {
  width: 100%;
  height: auto;
  display: block;
}

.whatsapp-banner-content {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(90px, 22%) 1fr minmax(120px, 28%);
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 1rem 1.25rem 1.25rem;
}

.whatsapp-logo {
  width: min(100%, 180px);
  height: auto;
  justify-self: center;
}

.whatsapp-text {
  text-align: center;
  align-self: center;
}

.whatsapp-text p {
  line-height: 1.05;
  margin: 0;
}

.whatsapp-text .line1 {
  font-size: clamp(0.85rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--white);
}

.whatsapp-text .line2 {
  font-size: clamp(1.4rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--gold);
}

.whatsapp-text .line3,
.whatsapp-text .line4 {
  font-size: clamp(1rem, 2.8vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
}

.whatsapp-text .line4,
.whatsapp-text .line5 {
  font-weight: 900;
  color: var(--gold);
}

.whatsapp-text .line5 {
  font-size: clamp(1.2rem, 3.2vw, 2.5rem);
}

.whatsapp-btn {
  display: none;
}

@media (min-width: 768px) {
  .steps-header { padding: 2.5rem 2rem 2rem; }
  .steps-inner { padding: 2.5rem 2rem 3rem; }
  .steps-grid { gap: 1.5rem; }
  .whatsapp-cta { padding: 0 2rem 0; }
  .whatsapp-banner { border-radius: 30px; max-width: 1200px; }
  .whatsapp-banner-content {
    display: block;
    padding: 0;
  }
  .whatsapp-logo,
  .whatsapp-text { display: none; }
  .whatsapp-btn {
    display: inline-flex;
    position: absolute;
    right: 8%;
    bottom: 12%;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #ffcc00 0%, #ff8800 100%);
    color: #111;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 900;
    font-size: clamp(0.9rem, 1.5vw, 1.4rem);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: background 0.2s;
  }
  .whatsapp-banner:hover .whatsapp-btn {
    background: linear-gradient(180deg, #003bc5 0%, #000a7a 100%);
    color: #fff;
  }
}

.charity {
  padding: 2rem 1rem;
  background: var(--white);
  color: #010000;
  width: 100%;
  max-width: 100%;
}
.charity .charity-text { color: #010000; }
.charity-block { margin-bottom: 3rem; }
.charity-logo { text-align: center; margin-bottom: 1.5rem; }
.charity-logo img { max-height: 80px; margin: 0 auto; }
.charity-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.charity-content img { border-radius: 0; aspect-ratio: 1; object-fit: cover; transition: transform 0.3s; }
.charity-content img:hover { transform: translateY(-4px); }
.charity-text { font-size: 0.7rem; font-family: 'Montserrat', Arial, sans-serif; line-height: 1.6; font-weight: 400; }
.charity-text a { color: var(--link-blue); font-style: italic; }

.faq {
  padding: 2rem 1rem;
  background: var(--white);
  color: #010000;
  width: 100%;
  max-width: 100%;
}
.faq h2 { text-align: center; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; text-transform: uppercase; }
.faq h2 .blue { color: var(--blue); }
.faq .faq-sub { text-align: center; font-family: 'Inter', sans-serif; font-weight: 700; margin: 0.25rem 0 2rem; }
.accordion { max-width: 800px; margin: 0 auto; }
.accordion-item { border: none; border-radius: 10px; margin-bottom: 0.5rem; overflow: hidden; }
.accordion-item.open { border-radius: 10px; }
.accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; cursor: pointer; background: #ffae00;
  border: none; width: 100%; text-align: left; font-family: inherit;
}
.accordion-header h3 { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; flex: 1; padding-right: 1rem; color: #000a7a; font-family: 'Montserrat', Arial, sans-serif; }
.accordion-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: radial-gradient(circle, #00153b 0%, #000a7a 100%);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.3s;
}
.accordion-item.open .accordion-arrow { transform: rotate(180deg); }
.accordion-arrow svg { width: 14px; height: 14px; fill: var(--white); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: var(--white); }
.accordion-item.open .accordion-body { max-height: 300px; }
.accordion-body p { padding: 0 1.25rem 1.25rem; font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 600; line-height: 1.6; color: #010000; }
.accordion-body a { color: var(--blue); text-decoration: underline; }

.gallery-section {
  padding: 2rem 1rem 3rem;
  text-align: center;
  background: linear-gradient(0deg, #dfdfdf 0%, #ffffff 100%);
  color: #010000;
  width: 100%;
  max-width: 100%;
}
.gallery-banner img { max-width: 700px; margin: 0 auto 2rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0 auto 2rem;
  max-width: 640px;
}
.gallery-grid img { border-radius: 15px; aspect-ratio: 1; object-fit: cover; width: 100%; transition: transform 0.3s, filter 0.3s; }
.gallery-grid img:hover { transform: scale(1.02); filter: brightness(1.1); }
.btn-seguir {
  background: #fcb207 !important;
  color: #010000 !important;
  border: none !important;
  font-weight: 800 !important;
  width: min(100%, 280px);
  min-height: 59px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-inline: auto;
}
.btn-seguir:hover { background: #db8100 !important; color: #010000 !important; }

.page-hero { padding: 3rem 0 2rem; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; text-transform: uppercase; }
.page-hero p { opacity: 0.85; margin-top: 0.5rem; }
.page-hero--light .page-label { color: var(--gold); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.page-hero--contact h1 { color: var(--blue); }
.page-content { padding: 2rem 0 4rem; }
.page-note { text-align: center; opacity: 0.6; font-size: 0.85rem; margin-top: 2rem; font-family: 'Inter', sans-serif; }

.winners-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.winner-card {
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px; padding: 1.5rem; text-align: center;
}
.winner-badge { display: inline-block; background: var(--gold); color: var(--purple-dark); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.75rem; border-radius: 20px; margin-bottom: 0.75rem; }
.winner-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.winner-name { font-family: 'Inter', sans-serif; opacity: 0.9; }
.winner-date { font-size: 0.85rem; opacity: 0.7; margin-top: 0.5rem; }
.winner-date a { color: var(--gold); text-decoration: underline; }

.about-page {
  width: 100%;
  background: linear-gradient(0deg, #dfdfdf 0%, #ffffff 100%);
  color: #000;
}

.about-page-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 100px 60px 50px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  text-align: left;
}

.about-col--title {
  max-width: 452px;
}

.about-label {
  color: #000;
  font-weight: 400;
  font-size: 1rem;
  margin: 0 0 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.about-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  color: #000;
  margin: 1rem 0 0;
  max-width: 452px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.about-vdc { color: #fcb207; font-size: 24px; font-weight: 800; }

.about-col--text {
  padding-left: 30px;
}

.about-text {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.about-text p {
  margin: 0 0 0.5rem;
  color: #000;
  font-weight: 500;
}

.about-text .accent {
  color: #db8100;
  font-weight: 700;
  font-size: 24px;
}

.btn-gradient-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(180deg, #ffcc00 0%, #ff8800 100%);
  color: #111;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-gradient-pill::before {
  content: '★';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.75rem;
}

.btn-gradient-pill:hover {
  background: linear-gradient(180deg, #003bc5 0%, #000a7a 100%);
  color: #ffae00;
}

.about-privacy-btn {
  width: 100%;
  min-height: 62px;
  margin: 10px auto;
  text-align: center;
}

.about-page-wave {
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 48.5px 60px;
  background-color: #dfdfdf;
  background-image: url('/assets/borda-azul.png');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

body.page-quem-somos {
  background-color: #dfdfdf;
  background-image: none;
  color: #000;
}

body.page-quem-somos main {
  color: #000;
}

.contact-page {
  width: 100%;
  background: linear-gradient(0deg, #dfdfdf 0%, #ffffff 100%);
}

.contact-page-inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 60px 60px 40px;
  text-align: center;
}

.contact-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: clamp(1.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #008dca;
  text-transform: uppercase;
  margin: 0 0 2rem;
}

.contact-desktop {
  display: none;
}

.contact-mobile {
  display: block;
  background: url('/assets/bg-grupo-wpp-vertical.png') center / cover no-repeat;
  border-radius: 16px;
  padding: 1.5rem 1rem 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.contact-join-btn {
  font-size: clamp(0.9rem, 2.5vw, 1.25rem);
}

.contact-join-btn--mobile-top {
  margin-bottom: 1.25rem;
}

.contact-mobile-text {
  margin: 1rem 0 1.5rem;
}

.contact-mobile-text p {
  line-height: 1;
  margin: 0.15rem 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

.contact-mobile-text a {
  color: #fff;
  font-weight: 400;
  font-size: clamp(0.85rem, 2.5vw, 1.5rem);
  text-decoration: none;
}

.contact-mobile-text .highlight a,
.contact-mobile-text a .highlight {
  color: #ffae00;
  font-weight: 900;
  font-size: clamp(1.2rem, 4vw, 2.5rem);
}

.contact-wpp-link {
  display: block;
  max-width: 200px;
  margin: 0 auto;
}

.contact-wpp-link img {
  width: 100%;
  height: auto;
}

.contact-page-wave {
  width: 100%;
  padding: 48.5px 60px;
  background-color: #dfdfdf;
  background-image: url('/assets/borda-azul.png');
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}

body.page-contato {
  background-color: #dfdfdf;
  background-image: none;
  color: #000;
}

body.page-contato main {
  color: #000;
}

@media (min-width: 1024px) {
  .contact-desktop {
    display: block;
    background: url('/assets/bg-grupo-wpp.png') center / cover no-repeat;
    border-radius: 16px;
    min-height: 320px;
    position: relative;
  }

  .contact-desktop__panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 2rem;
    gap: 1.5rem;
  }

  .contact-wpp-logo {
    width: min(100%, 280px);
    height: auto;
  }

  .contact-mobile {
    display: none;
  }
}

.editions-list { display: flex; flex-direction: column; gap: 1rem; max-width: 700px; margin: 0 auto; }
.edition-card {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 1.25rem 1.5rem;
  flex-wrap: wrap;
}
.edition-card--muted { opacity: 0.85; }
.edition-info h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.edition-info p { font-family: 'Inter', sans-serif; font-size: 0.9rem; opacity: 0.85; }

.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 800px; margin: 0 auto; }
.contact-card {
  background: rgba(255, 255, 255, 0.08); border-radius: 16px;
  padding: 2rem; text-align: center;
}
.contact-card img { width: 120px; margin: 0 auto 1rem; }
.contact-card h2 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.contact-card p { font-family: 'Inter', sans-serif; font-size: 0.95rem; opacity: 0.9; margin-bottom: 1.25rem; }

.footer { background: #250066; padding: 3rem 0 2rem; }
.footer .btn-primary {
  background: linear-gradient(180deg, #ffcc00 0%, #ff8800 100%);
  color: #111;
  font-weight: 900;
}
.footer .btn-primary:hover {
  background: linear-gradient(180deg, #003bc5 0%, #000a7a 100%);
  color: #fff;
  box-shadow: none;
  transform: none;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.footer-brand img { width: 80px; margin: 0 auto 1rem; }
.footer-brand .vdc { color: var(--gold); font-size: 1.5rem; font-weight: 900; text-align: center; }
.footer-brand p { font-family: 'Inter', sans-serif; font-size: 0.9rem; text-align: center; }
.footer-whatsapp { text-align: center; }
.footer-whatsapp img { width: 80px; margin: 0 auto 0.75rem; }
.footer-whatsapp p { font-weight: 900; text-transform: uppercase; margin-bottom: 1rem; }
.footer-whatsapp .gold { color: var(--gold); }
.footer-about h3 {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 1rem;
  text-align: center;
}
.footer-about a { display: block; padding: 0.4rem 0; font-size: 0.95rem; opacity: 0.9; text-align: center; }
.footer-about a:hover { color: var(--gold); }
.footer-divider { border: none; border-top: 2px solid grey; margin: 2rem 0; }
.footer-logos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
  max-width: 480px;
  margin-inline: auto;
}
.footer-logos h4 { font-size: 0.75rem; font-weight: 700; margin-bottom: 1rem; text-transform: uppercase; }
.footer-logos img { max-height: 50px; margin: 0 auto; object-fit: contain; }
.footer-note { text-align: center; font-family: 'Inter', sans-serif; font-size: 0.75rem; opacity: 0.7; margin-top: 2rem; }

.bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
  padding: 0.35rem 0.25rem calc(0.35rem + env(safe-area-inset-bottom));
}

.bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  padding: 0.35rem 0.15rem;
  color: #9f9c9c;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
}

.bottom-nav__item svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.bottom-nav__item.is-active {
  color: #000a7a;
}

.bottom-nav__item--buy {
  position: relative;
  top: -0.65rem;
  background: linear-gradient(180deg, #ff8800 0%, #ba6700 100%);
  color: #fff;
  border-radius: 999px;
  padding: 0.65rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(255, 136, 0, 0.45);
}

.bottom-nav__item--buy span {
  line-height: 1;
}

.step-card {
  animation: fadeInUp 0.8s ease both;
}

.step-card:nth-child(2) { animation-delay: 0.15s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile-first: padrão acima; desktop abaixo */
.bottom-nav { display: grid; }
body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }

.steps-header { padding: 1.75rem 1rem 1.5rem; text-align: center; }
.steps-inner { padding: 1.75rem 1rem 2rem; }
.steps-grid { grid-template-columns: 1fr; gap: 2rem; }
.step-image { max-width: min(100%, 360px); }

.whatsapp-banner {
  width: min(100% - 1rem, 430px);
  border-radius: 20px;
}
.whatsapp-banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 42% 1rem 1.5rem;
}
.whatsapp-logo { width: min(160px, 45vw); margin-bottom: 0.75rem; }
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffcc00 0%, #ff8800 100%);
  color: #111;
  font-weight: 900;
  font-size: 1rem;
  padding: 0.85rem 1.5rem;
  border-radius: 50px;
  margin-top: 1rem;
}

.about-page-inner { padding: 60px 1.25rem 40px; }
.about-layout { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
.about-col--title { max-width: none; margin-inline: auto; }
.about-col--text { padding-left: 0; }
.about-text { font-size: 14px; text-align: center; }
.about-text .accent { font-size: 19px; }
.contact-grid { grid-template-columns: 1fr; }
.about-page-wave { padding: 32px 1.25rem; min-height: 80px; }

.accordion-header h3 { font-size: 0.75rem; }
.edition-card { flex-direction: column; text-align: center; }

@media (min-width: 576px) {
  .charity-content { grid-template-columns: 1fr 1fr; }
  .charity-text { grid-column: 1 / -1; }
  .accordion-header h3 { font-size: 0.85rem; }
}

@media (min-width: 768px) {
  .logo img { width: 84px; height: 84px; }
  .charity, .faq { padding: 3rem 2rem; }
  .gallery-section { padding: 2rem 2rem 3rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); max-width: 900px; }
  .footer-logos { grid-template-columns: repeat(3, 1fr); max-width: none; }
}

@media (min-width: 992px) {
  .bottom-nav { display: none; }
  body { padding-bottom: 0; }

  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 25px 0 20px;
  }
  .nav-desktop { display: flex; }
  .header-aplicap { display: block; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }

  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .charity-content { grid-template-columns: 1fr 1fr 2fr; max-width: none; text-align: left; }
  .charity-text { grid-column: auto; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); max-width: none; }
  .footer-top { grid-template-columns: repeat(3, 1fr); text-align: left; }
  .footer-brand p, .footer-about h3, .footer-about a { text-align: center; }
  .about-layout { grid-template-columns: 1fr 1fr; text-align: left; }
  .about-text { text-align: left; }
  .edition-card { flex-direction: row; text-align: left; }
}