/* =====================
   FONTES
   ===================== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

:root {
    --brand-1: #E8442A;
    --brand-2: #F4A024;
    --brand-3: #2D7DD2;
    --brand-4: #3BAF7E;
    --dark: #1A1714;
    --mid: #4A4540;
    --light: #F7F4EF;
    --cream: #FDFBF8;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-weight: 400;
    color: var(--dark);
    background: var(--cream);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--cream);
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
}

.logo-r {
    color: white;
    background: var(--dark);
    padding: 0.1em 0.25em;
    border-radius: 0.15em 0 0 0.15em;
}

.logo-este {
    color: var(--brand-1);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--mid);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--brand-1);
}

.btn-nav-cta {
    background: var(--brand-1);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
}

.btn-nav-cta:hover {
    background: #d13a22;
    transform: translateY(-1px);
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
}

.hero-left {
    background: var(--dark);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tag {
    display: inline-block;
    background: var(--brand-1);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.hero-title {
    font-size: 3.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    color: var(--brand-2);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,.55);
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 420px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: var(--brand-1);
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    background: #d13a22;
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 1px solid rgba(255,255,255,.3);
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-block;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.5);
}

.hero-stats {
    display: flex;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 2rem;
    gap: 2rem;
}

.hero-stat {
    flex: 1;
}

.hero-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: white;
    display: block;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,.5);
}

/* Hero Right Panel */
.hero-right {
    background: #2a2520;
    position: relative;
    overflow: hidden;
}

.hero-illustration {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.silhouettes {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    opacity: 0.7;
}

.silhouette {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.silhouette-head {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-bottom: 4px;
}

.silhouette-body {
    width: 24px;
    height: 45px;
    border-radius: 12px 12px 6px 6px;
}

.hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

.hero-card {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    color: white;
    font-size: 0.85rem;
    z-index: 1;
}

.hero-card-label {
    color: rgba(255,255,255,.6);
    margin-bottom: 0.25rem;
}

.hero-card-value {
    font-weight: 500;
}

/* Band */
.band {
    background: var(--brand-1);
    padding: 1rem 3rem;
    overflow-x: auto;
}

.band-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    white-space: nowrap;
}

.band-item {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.band-item::before {
    content: '•';
    font-size: 1.5rem;
    line-height: 1;
    opacity: 0.5;
}

.band-item:first-child::before {
    display: none;
}

/* Section Base */
.section {
    padding: 6rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-label {
    color: var(--brand-1);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.section-title em {
    font-style: italic;
    color: var(--brand-1);
}

/* Problema Section */
.problema {
    background: var(--cream);
}

.problema-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.problema-text h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.problema-text p {
    font-size: 1.1rem;
    color: var(--mid);
    line-height: 1.8;
}

.problema-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(0,0,0,.08);
}

.stat-card-1 { background: #FEF0EC; }
.stat-card-2 { background: #FEF7EC; }
.stat-card-3 { background: #EBF4FE; }
.stat-card-4 { background: #EAF7F2; }

.stat-card-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.stat-card-1 .stat-card-number { color: var(--brand-1); }
.stat-card-2 .stat-card-number { color: var(--brand-2); }
.stat-card-3 .stat-card-number { color: var(--brand-3); }
.stat-card-4 .stat-card-number { color: var(--brand-4); }

.stat-card-label {
    font-size: 0.85rem;
    color: var(--mid);
}

/* Solução Section */
.solucao {
    background: var(--light);
}

.solucao-title {
    text-align: center;
}

.solucao-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.solucao-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--mid) 0,
        var(--mid) 8px,
        transparent 8px,
        transparent 16px
    );
    opacity: 0.3;
}

.step-card {
    text-align: center;
    padding: 1rem;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-1 { background: var(--brand-1); }
.step-2 { background: var(--brand-2); }
.step-3 { background: var(--brand-3); }
.step-4 { background: var(--brand-4); }

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--mid);
}

/* Impacto Section */
.impacto {
    background: var(--cream);
}

.impacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.depoimento-block {
    background: var(--dark);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.depoimento-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.depoimento-author {
    font-size: 0.9rem;
    color: rgba(255,255,255,.5);
}

.distribuicao-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.progress-item {
    margin-bottom: 1.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.progress-bar {
    height: 8px;
    background: var(--light);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease-out;
}

.progress-fill-1 { background: var(--brand-1); }
.progress-fill-2 { background: var(--brand-2); }
.progress-fill-3 { background: var(--brand-3); }
.progress-fill-4 { background: var(--brand-4); }

.impacto-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.impacto-stat {
    background: var(--light);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
}

.impacto-stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    color: var(--brand-1);
}

.impacto-stat-label {
    font-size: 0.8rem;
    color: var(--mid);
}

/* CTA Section */
.cta-section {
    background: var(--brand-1);
    padding: 4rem 2rem;
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-text p {
    color: rgba(255,255,255,.8);
    font-size: 1.1rem;
}

.donation-form {
    background: rgba(255,255,255,.1);
    border-radius: 1.5rem;
    padding: 2rem;
}

.form-label {
    color: rgba(255,255,255,.8);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: block;
}

.amount-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.amount-btn {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,.3);
    background: transparent;
    color: white;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.amount-btn:hover,
.amount-btn.active {
    background: white;
    color: var(--brand-1);
    border-color: white;
}

.amount-btn.other {
    flex: 1.5;
}

.form-row {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.form-input {
    flex: 1;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255,255,255,.3);
    background: rgba(255,255,255,.1);
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
    font-family: inherit;
}

.form-input::placeholder {
    color: rgba(255,255,255,.5);
}

.form-input:focus {
    outline: none;
    border-color: white;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: white;
    color: var(--brand-1);
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

.cta-secondary {
    text-align: center;
    margin-top: 1rem;
}

.cta-secondary a {
    color: rgba(255,255,255,.8);
    font-size: 0.9rem;
    text-decoration: underline;
}

.donation-success {
    text-align: center;
    padding: 2rem;
    color: white;
}

.donation-success h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-desc {
    color: rgba(255,255,255,.5);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul a {
    color: rgba(255,255,255,.5);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,.1);
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.4);
    font-size: 0.85rem;
}

/* Schedule Modal */
.schedule-section {
    background: var(--light);
    padding: 3rem 2rem;
    display: none;
}

.schedule-section.visible {
    display: block;
}

.schedule-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,.08);
}

.schedule-form h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.schedule-form p {
    color: var(--mid);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-1);
}

.schedule-success {
    text-align: center;
    padding: 2rem;
}

.schedule-success h3 {
    color: var(--brand-4);
    margin-bottom: 0.5rem;
}

/* =====================
   FONTES
   ===================== */

/* =====================
   RESET BASE
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Nunito', sans-serif;
  background: #f5f0e8;
}

/* =====================
   NAVBAR
   ===================== */
.rv-nav {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  height: 58px;
  border-bottom: 2px solid #e8e0d0;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}

.rv-nav::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #e63946 0 18px, #457b9d 18px 36px, #2d6a4f 36px 54px,
    #f4a261 54px 72px, #8ecae6 72px 90px, #e9c46a 90px 108px
  );
  opacity: 0.7;
}

.rv-logo a {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.rv-logo img {
  height: 24px;
  width: auto;
}
.rv-logo .re { color: #e63946; }
.rv-logo .v  { color: #457b9d; }
.rv-logo .es { color: #2d6a4f; }

.rv-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.rv-links li a {
  font-size: 13px;
  font-weight: 700;
  color: #444;
  text-decoration: none;
  padding-bottom: 2px;
  letter-spacing: 0.2px;
  transition: color 0.15s;
}
.rv-links li a:hover { color: #e63946; }
.rv-links li.active a {
  color: #e63946;
  border-bottom: 2.5px solid #e63946;
}

/* =====================
   HERO
   ===================== */
.rv-hero-wrapper {
  position: relative;
  overflow: hidden;
}

.rv-hero {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 2;
}

.rv-bg-collage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  grid-template-rows: repeat(10, 1fr);
  gap: 1.5px;
  opacity: 0.35;
  pointer-events: none;
}
.rv-bg-patch {
  border-radius: 1px;
  opacity: 0.3;
}

/* =====================
   LADO ESQUERDO
   ===================== */
.rv-left {
  position: relative;
  z-index: 2;
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.rv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.rv-eyebrow-line {
  width: 32px; height: 3px;
  background: repeating-linear-gradient(
    90deg, #e63946 0 8px, #f4a261 8px 16px,
    #e9c46a 16px 24px, #2d6a4f 24px 32px
  );
  border-radius: 2px;
}
.rv-eyebrow span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #6d6875;
}

.rv-title {
  font-family: 'Playfair Display', serif;
  font-size: 76px;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 24px;
  letter-spacing: -3px;
}
.rv-title-logo {
  height: 80px;
  width: auto;
}
.rv-title .re { color: #e63946; }
.rv-title .v  { color: #457b9d; }
.rv-title .es { color: #2d6a4f; }

.rv-slogan {
  font-size: 18px;
  color: #3d3530;
  line-height: 1.5;
  font-style: italic;
  font-weight: 600;
  margin-bottom: 36px;
  max-width: 340px;
  padding-left: 14px;
  border-left: 3px solid #f4a261;
}

.rv-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #e63946;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: 4px;
  text-decoration: none;
  width: fit-content;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s;
}
.rv-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 5px,
    rgba(255,255,255,0.06) 5px, rgba(255,255,255,0.06) 10px
  );
}
.rv-cta:hover { transform: translateY(-2px); }
.rv-cta-arrow { font-size: 18px; transition: transform 0.15s; }
.rv-cta:hover .rv-cta-arrow { transform: translateX(4px); }

/* =====================
   DIVISOR ORGÂNICO
   ===================== */
.rv-divider {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.rv-div-piece { border-radius: 2px; }

/* =====================
   LADO DIREITO
   ===================== */
.rv-right {
  position: relative;
  z-index: 2;
  padding: 64px 48px 64px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.rv-about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px dashed #b5838d;
  border-radius: 4px;
  padding: 6px 14px;
  width: fit-content;
}
.rv-about-tag span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b5838d;
}

.rv-about-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #2d2520;
  line-height: 1.35;
  font-style: italic;
}

.rv-about-body {
  font-size: 15px;
  color: #4a4040;
  line-height: 1.75;
  position: relative;
  padding: 18px 20px;
  background: rgba(255,255,255,0.65);
  border-radius: 6px;
  border: 1.5px solid rgba(0,0,0,0.07);
}
.rv-about-body strong { color: #2d2520; }
.rv-about-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #e63946 0 12px, #f4a261 12px 24px, #e9c46a 24px 36px,
    #2d6a4f 36px 48px, #457b9d 48px 60px, #b5838d 60px 72px
  );
  border-radius: 6px 6px 0 0;
}

/* =====================
   STATS
   ===================== */
.rv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.rv-stat {
  background: #fff;
  border-radius: 6px;
  padding: 14px 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rv-stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}
.rv-stat--red::after   { background: #e63946; }
.rv-stat--blue::after  { background: #457b9d; }
.rv-stat--green::after { background: #2d6a4f; }

.rv-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: #2d2520;
  display: block;
}
.rv-stat-l {
  font-size: 11px;
  color: #6d6875;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}

.rv-about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1.5px dashed #b5838d;
  border-radius: 4px;
  padding: 6px 14px;
  width: fit-content;
}
.rv-about-tag span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b5838d;
}

.rv-about-body {
  font-size: 15px;
  color: #4a4040;
  line-height: 1.75;
  position: relative;
  padding: 18px 20px;
  background: rgba(255,255,255,0.65);
  border-radius: 6px;
  border: 1.5px solid rgba(0,0,0,0.07);
}
.rv-about-body::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    #e63946 0 12px, #f4a261 12px 24px, #e9c46a 24px 36px,
    #2d6a4f 36px 48px, #457b9d 48px 60px, #b5838d 60px 72px
  );
  border-radius: 6px 6px 0 0;
}

/* =====================
   STATS
   ===================== */
.rv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.rv-stat {
  background: #fff;
  border-radius: 6px;
  padding: 14px 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rv-stat::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}
.rv-stat--red::after   { background: #e63946; }
.rv-stat--blue::after  { background: #457b9d; }
.rv-stat--green::after { background: #2d6a4f; }

.rv-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: #2d2520;
  display: block;
}
.rv-stat-l {
  font-size: 11px;
  color: #6d6875;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
}
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-left {
        padding: 3rem 2rem;
    }
    
    .hero-right {
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .problema-grid,
    .impacto-grid,
    .cta-container {
        grid-template-columns: 1fr;
    }
    
    .solucao-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solucao-steps::before {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .nav-links {
        display: none;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .band-items {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .problema-cards {
        grid-template-columns: 1fr;
    }
    
    .solucao-steps {
        grid-template-columns: 1fr;
    }
    
    .impacto-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* =====================
   RESPONSIVO — MOBILE
   ===================== */
@media (min-width: 769px) {
  .rv-hamburger { display: none; }
}

@media (max-width: 768px) {

  /* NAVBAR MOBILE */
  .rv-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 58px;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 2px solid #e8e0d0;
    padding: 16px 24px;
    gap: 16px;
    z-index: 100;
  }
  .rv-links.open { display: flex; }

  .rv-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }
  .rv-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    border-radius: 2px;
    transition: all 0.2s;
  }

  /* HERO MOBILE — empilhar verticalmente */
  .rv-hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 100vh;
    max-width: 100%;
  }

  /* Esconder o divisor no mobile */
  .rv-divider { display: none; }

  .rv-left {
    padding: 48px 24px 32px;
  }

  .rv-title { font-size: 56px; }

  .rv-right {
    padding: 32px 24px 48px;
  }

  .rv-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
