/* ============================================================
   Reforma Tributária — style.css
   Chrome compartilhado (header / footer / wa-float) copiado do
   padrão Abrasel PE. Estilos de conteúdo extraídos do inline.
   ============================================================ */

/* =========================
   1. Tokens
   ========================= */
:root {
  /* Tokens pai — usados pelo chrome compartilhado */
  --color-primary:       #00B050;
  --color-primary-dark:  #008a3e;
  --color-white:         #FFFFFF;
  --color-gray-dark:     #1A1A1A;
  --color-gray:          #555;
  --color-gray-light:    #F5F5F5;
  --shadow-sm:           0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md:           0 5px 20px rgba(0, 0, 0, 0.12);
  --font-primary:        'Poppins', 'Helvetica Neue', Arial, sans-serif;
  --font-secondary:      'Poppins', 'Helvetica Neue', Arial, sans-serif;

  /* Tokens reforma (identidade visual de campanha) */
  --azul:    #25408F;
  --azul-d:  #172a5e;
  --azul-l:  #3a5bc0;
  --laranja: #F58220;
  --vermelho:#B11116;
  --verde:   #00652E;
  --preto:   #231F20;
  --bg:      #ffffff;
  --soft:    #eef2fb;
  --line:    #e4e8f3;
  --muted:   #5b6172;
}

/* =========================
   2. Reset / base
   ========================= */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--preto);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 70px; /* compensa header fixo */
}

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

/* =========================
   3. Header banner (fixo) — padrão pai
   ========================= */
.header-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease;
}

.header-banner__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.header-banner__logo {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin: 0;
  line-height: 0;
}

.header-banner__logo a {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  line-height: 0;
}

.header-banner__logo-img {
  display: block;
  height: clamp(32px, 5vw, 44px);
  width: auto;
  max-width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.header-banner__nav {
  display: -webkit-flex;
  display: flex;
  gap: 24px;
}

.header-banner__link {
  color: var(--color-gray-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  -webkit-transition: color 0.3s ease;
          transition: color 0.3s ease;
}

.header-banner__link:hover { color: var(--color-primary); }

.header-banner__mobile-toggle {
  display: none;
  -webkit-flex-direction: column;
          flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 4px;
  padding: 8px;
}

.header-banner__mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  -webkit-transition: 0.3s;
          transition: 0.3s;
}

.header-banner__mobile-menu {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: var(--shadow-md);
  -webkit-flex-direction: column;
          flex-direction: column;
}

.header-banner__mobile-menu.active {
  display: -webkit-flex;
  display: flex;
}

.header-banner__mobile-link {
  padding: 16px;
  color: var(--color-gray-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--color-gray-light);
  -webkit-transition: background 0.3s ease;
          transition: background 0.3s ease;
}

.header-banner__mobile-link:hover { background: var(--color-gray-light); }

/* =========================
   4. Footer — padrão pai
   ========================= */
.abrasel-footer {
  background: #1A1A1A;
  color: #fff;
  padding: clamp(40px, 6vw, 60px) 0 20px;
}

.af-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.af-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(20px, 3vw, 40px);
  margin-bottom: 32px;
}

.af-section {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.af-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: #00B050;
  margin-bottom: 12px;
}

.af-text { font-size: 13px; opacity: 0.9; margin-bottom: 6px; color: #fff; }

.af-section a {
  color: #fff;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
          transition: color 0.2s ease;
  font-size: 13px;
}

.af-section a:hover { color: #ccc; }

.af-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  text-align: center;
  font-size: 12px;
  opacity: 0.8;
  color: #fff;
}

/* =========================
   5. WA Float — padrão pai
   ========================= */
.wa-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 9999;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  gap: 8px;
  padding: 12px 18px 12px 14px;
  background: #25d366;
  color: #fff;
  font-family: var(--font-secondary, inherit);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22), 0 2px 6px rgba(0, 0, 0, 0.12);
  -webkit-transition: -webkit-transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
          transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-animation: wa-float-pulse 2.4s ease-in-out infinite;
          animation: wa-float-pulse 2.4s ease-in-out infinite;
}

.wa-float:hover,
.wa-float:focus-visible {
  background: #1ebe57;
  -webkit-transform: translateY(-2px) scale(1.03);
          transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28), 0 4px 10px rgba(0, 0, 0, 0.14);
  outline: none;
}

.wa-float__icon  { width: 26px; height: 26px; -webkit-flex-shrink: 0; flex-shrink: 0; color: #fff; }
.wa-float__label { display: inline-block; white-space: nowrap; line-height: 1; }

@-webkit-keyframes wa-float-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0, 0, 0, 0.12); }
  50%       { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.65), 0 2px 6px rgba(0, 0, 0, 0.12); }
}
@keyframes wa-float-pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0, 0, 0, 0.12); }
  50%       { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.65), 0 2px 6px rgba(0, 0, 0, 0.12); }
}

/* =========================
   6. Responsividade (chrome)
   ========================= */
@media (max-width: 768px) {
  .header-banner__nav           { display: none; }
  .header-banner__mobile-toggle { display: -webkit-flex; display: flex; }
}

@media (max-width: 480px) {
  body                               { padding-top: 60px; }
  .header-banner                     { height: 60px; }
  .header-banner__mobile-menu        { top: 60px; }
  .wa-float                          { padding: 12px; }
  .wa-float__label                   { display: none; }
  .wa-float__icon                    { width: 28px; height: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float { -webkit-animation: none; animation: none; }
}

/* =========================
   7. Estilos de conteúdo (reforma)
   ========================= */

/* Layout base */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.sec  { padding: 78px 0; }

@media (max-width: 640px) {
  .sec  { padding: 52px 0; }
  .wrap { padding: 0 18px; }
}

/* Tipografia de seção */
h2.t  { font-size: 34px; font-weight: 700; color: var(--azul); line-height: 1.15; letter-spacing: -.01em; margin-bottom: 8px; }
.kick { font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 12px; }
.lead { font-size: 18px; color: var(--muted); max-width: 62ch; }

@media (max-width: 640px) {
  h2.t { font-size: 26px; }
  .lead { font-size: 16px; }
}

/* Reveal on scroll */
.rv    { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }

/* Buttons */
.btn {
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
          align-items: center;
  gap: 10px;
  font-family: inherit; font-weight: 600; font-size: 16px;
  padding: 15px 26px; border-radius: 12px;
  cursor: pointer; text-decoration: none; border: none;
  -webkit-transition: transform .14s, box-shadow .2s;
          transition: transform .14s, box-shadow .2s;
}
.btn:hover          { -webkit-transform: translateY(-2px); transform: translateY(-2px); }
.btn.azul           { background: var(--azul);    color: #fff; box-shadow: 0 10px 24px -10px rgba(37,64,143,.7); }
.btn.laranja        { background: var(--laranja); color: #fff; box-shadow: 0 10px 24px -10px rgba(245,130,32,.7); }
.btn.verde          { background: var(--verde);   color: #fff; box-shadow: 0 10px 24px -10px rgba(0,101,46,.7); }
.btn.ghost          { background: transparent;    color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn.ghostb         { background: #fff; color: var(--azul); border: 1.5px solid var(--line); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--azul-d), var(--azul) 60%, #2c4aa0);
  color: #fff; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(245,130,32,.22), transparent 38%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.10), transparent 40%);
}
.hero .wrap  { position: relative; padding-top: 48px; padding-bottom: 70px; }
.hero .badge {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px; padding: 6px 14px; margin-bottom: 20px;
}
.hero h1     { font-size: 50px; font-weight: 800; line-height: 1.06; letter-spacing: -.02em; max-width: 22ch; }
.hero p.sub  { font-size: 19px; color: rgba(255,255,255,.86); margin-top: 18px; max-width: 54ch; }
.hero .ctas  { display: -webkit-flex; display: flex; gap: 13px; flex-wrap: wrap; margin-top: 32px; }
.hero .stats {
  display: -webkit-flex; display: flex; gap: 30px; flex-wrap: wrap;
  margin-top: 46px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.18);
}
.hero .stats .s b    { display: block; font-size: 30px; font-weight: 700; line-height: 1; }
.hero .stats .s span { font-size: 12.5px; color: rgba(255,255,255,.7); }

@media (max-width: 640px) {
  .hero h1    { font-size: 34px; }
  .hero p.sub { font-size: 16px; }
}

/* Cards */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 30px; }
@media (max-width: 640px) { .grid2 { grid-template-columns: 1fr; } }

.card     { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px; box-shadow: 0 12px 30px -22px rgba(27,47,107,.3); }
.card .ico{ width: 46px; height: 46px; border-radius: 11px; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; font-size: 22px; font-weight: 700; color: #fff; margin-bottom: 14px; }
.card h3  { font-size: 19px; font-weight: 600; margin-bottom: 6px; }
.card p   { font-size: 15px; color: var(--muted); }
.dual     { margin-top: 18px; background: var(--soft); border-radius: 12px; padding: 16px 20px; font-size: 15px; color: var(--azul); font-weight: 500; }

/* Urgência */
.urg          { background: var(--azul-d); color: #fff; border-radius: 20px; padding: 44px; display: -webkit-flex; display: flex; gap: 34px; -webkit-align-items: center; align-items: center; flex-wrap: wrap; }
.urg .cal     { -webkit-flex: none; flex: none; width: 120px; height: 128px; background: #fff; border-radius: 14px; overflow: hidden; text-align: center; box-shadow: 0 18px 40px -20px rgba(0,0,0,.5); }
.urg .cal .top{ background: var(--vermelho); color: #fff; font-size: 13px; font-weight: 600; letter-spacing: .1em; padding: 7px; text-transform: uppercase; }
.urg .cal .d  { font-size: 46px; font-weight: 800; color: var(--azul); line-height: 1.5; }
.urg .cal .m  { font-size: 13px; color: var(--muted); margin-top: -6px; }
.urg .txt     { -webkit-flex: 1; flex: 1; min-width: 260px; }
.urg .txt h2  { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.urg .txt p   { color: rgba(255,255,255,.85); font-size: 16px; }
@media (max-width: 640px) { .urg { padding: 28px; } .urg .txt h2 { font-size: 22px; } }

/* Alívio */
.relief     { background: linear-gradient(135deg,#eaf5ee,#f4fbf6); border-radius: 20px; padding: 44px; border: 1px solid #cfe7d7; }
.relief .kick { color: var(--verde); }
.relief h2  { color: var(--verde); font-size: 30px; font-weight: 700; margin-bottom: 10px; }
.relief p   { font-size: 17px; color: #27513a; max-width: 60ch; }

/* Points */
.points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
@media (max-width: 640px) { .points { grid-template-columns: 1fr; } }
.pt    { display: -webkit-flex; display: flex; gap: 13px; -webkit-align-items: flex-start; align-items: flex-start; }
.pt .n { -webkit-flex: none; flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--azul); color: #fff; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; font-weight: 600; font-size: 14px; }
.pt b  { font-size: 16px; }
.pt p  { font-size: 14.5px; color: var(--muted); margin-top: 2px; }

/* Combo */
.combo          { background: #fff; border: 2px solid var(--verde); border-radius: 18px; padding: 30px; margin-top: 8px; }
.combo .kick    { color: var(--verde); }
.combo h3       { font-size: 22px; color: var(--verde); font-weight: 700; margin-bottom: 10px; }
.combo .vs      { display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px; -webkit-align-items: center; align-items: center; margin-top: 18px; }
@media (max-width: 640px) { .combo .vs { grid-template-columns: 1fr; } }
.combo .opt         { border-radius: 12px; padding: 18px; text-align: center; }
.combo .opt.good    { background: #eaf5ee; border: 1px solid #bfe0cb; }
.combo .opt.bad     { background: #f6f7f9; border: 1px solid #e3e6ea; }
.combo .opt b       { display: block; font-size: 16px; margin-bottom: 4px; }
.combo .opt span    { font-size: 13px; color: var(--muted); }
.combo .opt .tag    { display: inline-block; margin-top: 8px; font-size: 12px; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.combo .good .tag   { background: var(--verde); color: #fff; }
.combo .bad .tag    { background: #d6d9df; color: #555; }
.combo .arrow       { font-size: 22px; color: var(--muted); text-align: center; font-weight: 700; }

/* Placeholder genérico */
.ph {
  border: 2px dashed #c3cbe0; border-radius: 14px;
  background: repeating-linear-gradient(45deg,#fafbfe,#fafbfe 12px,#f4f6fc 12px,#f4f6fc 24px);
  display: -webkit-flex; display: flex;
  -webkit-flex-direction: column; flex-direction: column;
  -webkit-align-items: center; align-items: center;
  -webkit-justify-content: center; justify-content: center;
  text-align: center; color: #8a93ad; padding: 28px; min-height: 150px;
}
.ph .lbl  { font-weight: 600; font-size: 14px; color: #6b748f; }
.ph .hint { font-size: 12.5px; margin-top: 5px; max-width: 46ch; }
.ph .ic   { font-size: 30px; margin-bottom: 8px; opacity: .6; }

/* Fotos grid do evento */
.fotos       { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; margin-top: 28px; height: 340px; }
.fotos .ph   { min-height: 0; height: 100%; }
.fotos .big  { grid-row: span 2; overflow: hidden; border-radius: 14px; }
.fotos .big img,
.fotos .ph img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; display: block; }
@media (max-width: 640px) {
  .fotos       { grid-template-columns: 1fr 1fr; height: auto; }
  .fotos .big  { grid-row: span 1; grid-column: span 2; min-height: 200px; }
}

/* Fórum quotes */
.quotes { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; }
@media (max-width: 760px) { .quotes { grid-template-columns: 1fr; } }
.q      { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--laranja); border-radius: 0 14px 14px 0; padding: 22px; }
.q .qk  { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--laranja); margin-bottom: 8px; }
.q p    { font-size: 15px; color: var(--preto); }

/* Podcast */
.pod         { background: linear-gradient(135deg,#0f1830,#1b2f6b); color: #fff; border-radius: 20px; padding: 42px; display: -webkit-flex; display: flex; gap: 30px; -webkit-align-items: center; align-items: center; flex-wrap: wrap; }
.pod .spoti  { -webkit-flex: none; flex: none; width: 78px; height: 78px; border-radius: 50%; background: #1DB954; display: -webkit-flex; display: flex; -webkit-align-items: center; align-items: center; -webkit-justify-content: center; justify-content: center; font-size: 38px; }
.pod .txt    { -webkit-flex: 1; flex: 1; min-width: 240px; }
.pod h2      { font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.pod p       { color: rgba(255,255,255,.82); font-size: 15px; margin-bottom: 0; }
.pod .embed  { margin-top: 18px; }
.pod .ph     { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.25); color: rgba(255,255,255,.7); min-height: 90px; }
.pod .ph .lbl{ color: #fff; }
.pod .podnote{ font-size: 12px; color: rgba(255,255,255,.6); margin-top: 14px; font-style: italic; line-height: 1.5; }

/* Quiz */
.quiz       { background: var(--soft); border-radius: 20px; padding: 44px; text-align: center; }
.quiz h2    { font-size: 30px; }
.quiz .lead { margin: 10px auto 0; }
.perfis     { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: 28px 0; }
@media (max-width: 640px) { .perfis { grid-template-columns: 1fr; } }
.perfil      { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; }
.perfil .dot { font-size: 22px; }
.perfil b    { display: block; margin: 6px 0 3px; font-size: 16px; }
.perfil span { font-size: 13px; color: var(--muted); }
.quiznote    { font-size: 12.5px; color: var(--muted); font-style: italic; margin-top: 6px; }

/* Manual / captura de lead */
.manual          { display: grid; grid-template-columns: 1.1fr 1fr; gap: 34px; -webkit-align-items: center; align-items: center; }
@media (max-width: 760px) { .manual { grid-template-columns: 1fr; } }
.manual .mock           { background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 24px 50px -28px rgba(27,47,107,.4); overflow: hidden; }
.manual .mock .cap      { background: linear-gradient(135deg,var(--azul-d),var(--azul)); color: #fff; padding: 30px; }
.manual .mock .cap .tg  { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; background: rgba(255,255,255,.16); display: inline-block; padding: 4px 10px; border-radius: 6px; margin-bottom: 12px; }
.manual .mock .cap h4   { font-size: 22px; font-weight: 700; line-height: 1.15; }
.manual .mock .body     { padding: 18px 22px; font-size: 13px; color: var(--muted); }
.manual .mock .body .ln { height: 9px; background: #eef1f7; border-radius: 5px; margin-bottom: 9px; }
.manual .mock .body .ln.s { width: 70%; }
.form               { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px; }
.form label         { display: block; font-size: 13px; font-weight: 600; margin-bottom: 5px; }
.form input         { width: 100%; font-family: inherit; font-size: 15px; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 10px; margin-bottom: 13px; }
.form input:focus   { outline: none; border-color: var(--azul); }
.form .consent      { display: -webkit-flex; display: flex; gap: 9px; font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }
.form .note         { font-size: 11.5px; color: var(--muted); font-style: italic; margin-top: 10px; }

/* Fotos de evento — slots com imagem real */
.fotos .foto {
  border-radius: 14px;
  overflow: hidden;
  min-height: 0;
  height: 100%;
}
.fotos .foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Carrossel infográfico */
.rf-carousel {
  margin-top: 24px;
  border-radius: 14px;
  background: var(--soft);
  box-shadow: 0 8px 30px -12px rgba(27,47,107,.18);
}

/* Viewport: único elemento com overflow:hidden — isolado do track */
.rf-carousel__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

/* Track: sem width CSS; o JS define a largura de cada slide em px */
.rf-carousel__track {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-transition: transform .45s cubic-bezier(.4,0,.2,1);
          transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Slides: sem width CSS; JS seta inline width = viewport.clientWidth */
.rf-carousel__slide {
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  height: 480px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  background: var(--soft);
}

.rf-carousel__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

/* Botões: absolutos dentro do viewport */
.rf-carousel__btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(37,64,143,.72);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
  -webkit-transition: background .2s;
          transition: background .2s;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  padding: 0;
  line-height: 1;
}
.rf-carousel__btn:hover { background: var(--azul); }
.rf-carousel__btn--prev { left: 12px; }
.rf-carousel__btn--next { right: 12px; }

.rf-carousel__footer {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  padding: 10px 16px 12px;
  background: var(--soft);
  border-radius: 0 0 14px 14px;
}

.rf-carousel__dots {
  display: -webkit-flex;
  display: flex;
  gap: 6px;
}

.rf-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  -webkit-transition: background .2s, -webkit-transform .2s;
          transition: background .2s, transform .2s;
  padding: 0;
}
.rf-carousel__dot.active {
  background: var(--azul);
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

.rf-carousel__counter {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 640px) {
  .rf-carousel__slide { height: 260px; }
  .rf-carousel__btn   { width: 32px; height: 32px; font-size: 18px; }
}

/* Associe — faixa verde */
.assoc    { background: linear-gradient(135deg,var(--verde),#00803a); color: #fff; border-radius: 20px; padding: 42px; text-align: center; }
.assoc h2 { font-size: 28px; font-weight: 700; margin-bottom: 8px; }
.assoc p  { color: rgba(255,255,255,.85); max-width: 56ch; margin: 0 auto 22px; }
