/* ============================================================
   EXON Avaliações — Estilos globais
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

:root {
  --orange: #FF6B1A;
  --orange-light: #FF8A42;
  --orange-dark: #E55A0A;
  --orange-glow: rgba(255, 107, 26, 0.30);
  --green-glow: rgba(26, 255, 26, 0.3);
  --white: #ffffff;
  --off-white: #F8F7F5;
  --gray-100: #F3F2F0;
  --gray-200: #E5E3DF;
  --gray-400: #A8A39B;
  --gray-600: #6B6560;
  --gray-800: #2C2926;
  --text-dark: #1A1715;
  --glass-bg: rgba(255, 255, 255, 0.88);
  --glass-border: rgba(255, 255, 255, 0.60);
  --shadow-card: 0 24px 64px rgba(0, 0, 0, 0.18), 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'Inter', sans-serif;
  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  padding: 0;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--text-dark);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: bottom;
  background-attachment: fixed;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 8px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font);
  font-weight: 900;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  color: var(--gray-800);
}

.logo-text span {
  color: var(--orange);
}

.logo-img {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ─── CNAI no header ─── */
.site-header .exon-rl__cnai {
  position: static;
  box-shadow: none;
  padding: 7px 16px 7px 10px;
  border-radius: 30px;
  gap: 10px;
}

.site-header .exon-rl__cnai-seal {
  width: 36px;
  height: 36px;
}

.site-header .exon-rl__cnai-seal svg {
  width: 18px;
  height: 18px;
}

.site-header .exon-rl__cnai-label {
  font-size: 0.62rem;
}

.site-header .exon-rl__cnai-title {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
}

.site-header .exon-rl__cnai-sub {
  font-size: 0.64rem;
  max-width: 160px;
}

/* ─── HEADER RIGHT GROUP ─── */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

/* ─── BOTÃO ACESSO CORRETORES ─── */
.btn-corretor {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border: 1.5px solid var(--orange);
  border-radius: 8px;
  color: var(--orange);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.btn-corretor svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.btn-corretor:hover {
  background: var(--orange);
  color: #fff;
  text-decoration: none;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  padding: 20px 0;
  min-height: calc(100vh - 68px - 60px);
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  /* background-image: url('../img/exon_avaliacoes_.png');*/
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 46px;
  align-items: center;
  width: 100%;
}

/* ─── HERO CONTENT ─── */
.hero-content h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text-dark);
  margin-bottom: 0;
}

.highlight {
  color: var(--orange);
}

.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 2px;
  margin: 18px 0;
}

.lead {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ─── BENEFITS ─── */
.benefits {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 14px;
  padding: 10px 50px;
  margin-top: 28px;
  justify-content: space-between;
}

.benefits li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  animation: fadeUp 0.5s both;
  margin-top: 15px;
  padding: 0 10px;
}

.benefits li:nth-child(1) {
  animation-delay: 0.1s;
}

.benefits li:nth-child(2) {
  animation-delay: 0.2s;
}

.benefits li:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(255, 107, 26, 0.15);
  border: 1px solid rgba(255, 107, 26, 0.25);
  flex-shrink: 0;
  color: var(--orange);
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
}

.benefits h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.benefits p {
  font-size: 0.86rem;
  color: var(--orange);
  line-height: 1.45;
  font-weight: 400;
}

/* ─── BOTÃO MOBILE: FALAR COM ESPECIALISTA ─── */
.btn-falar-especialista {
  display: none;
}

@media (max-width: 767px) {
  .btn-falar-especialista {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    margin: 20px 0 4px;
    background: #22c55e;
    color: #fff;
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
    transition: var(--transition);
  }

  .btn-falar-especialista svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  .btn-falar-especialista:hover {
    background: #16a34a;
    box-shadow: 0 8px 26px rgba(34, 197, 94, 0.45);
    text-decoration: none;
    color: #fff;
  }
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  margin-top: 32px;
  padding-top: 0;
  border-top: none;
}

.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ff88001e;
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  padding: 16px 20px;
}

.trust-alert-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.trust-alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 107, 26, 0.12);
  color: var(--orange);
  flex-shrink: 0;
}

.trust-alert-icon svg {
  width: 18px;
  height: 18px;
}

.trust-alert-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.trust-consequences {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
}

.trust-consequence-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex: 1;
  min-width: 90px;
  font-size: 0.78rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.trust-x-icon {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 1px;
}

.trust-x-icon svg {
  width: 15px;
  height: 15px;
}

.trust-cta-row {
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange);
  text-align: center;
}

/* ─── FORM CARD ─── */
.form-card {
  background: var(--glass-bg);
  backdrop-filter: blur(2px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: var(--shadow-card);
  max-width: 420px;
  margin-left: auto;
  animation: fadeUp 0.6s 0.15s both;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.form-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 10px;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--orange-glow);
}

.form-icon svg {
  width: 18px;
  height: 18px;
}

.form-header h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.form-sub {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-bottom: 18px;
  line-height: 1.45;
}

/* ─── FORM FIELDS ─── */
.field {
  margin-bottom: 11px;
}

.field label {
  display: block;
  font-size: 0.77rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 11px;
  width: 15px;
  height: 15px;
  color: var(--gray-400);
  pointer-events: none;
  z-index: 1;
  transition: var(--transition);
}

.input-chevron {
  position: absolute;
  right: 11px;
  width: 14px;
  height: 14px;
  color: var(--gray-400);
  pointer-events: none;
}

.field input,
.field select {
  width: 100%;
  padding: 9px 10px 9px 34px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
  min-height: 38px;
}

.field input::placeholder {
  color: var(--gray-400);
  font-size: 0.83rem;
}

.field input:focus,
.field select:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.10);
}

.field input:focus+.input-icon,
.field select:focus+.input-icon,
.input-wrap:focus-within .input-icon {
  color: var(--orange);
}

.field input.is-invalid,
.field select.is-invalid {
  border-color: #E53E3E;
  background: #FFF5F5;
}

.field-error {
  display: block;
  font-size: 0.7rem;
  color: #E53E3E;
  margin-top: 3px;
  min-height: 14px;
}

/* ─── FIELD ROW (estado + cidade) ─── */
.field-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 8px;
  margin-bottom: 11px;
}

.field-row .field,
.field-col {
  margin-bottom: 0;
}

.field-col {
  display: flex;
  flex-direction: column;
}

.field-col-grow {
  flex: 1;
}

/* ─── CHECKBOX LGPD ─── */
.field-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.74rem;
  color: var(--gray-600);
  line-height: 1.4;
  margin: 12px 0;
}

.field-check input[type="checkbox"] {
  width: 15px;
  height: 15px;
  min-width: 15px;
  margin-top: 1px;
  accent-color: var(--orange);
  cursor: pointer;
}

.field-check a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}

.field-check a:hover {
  text-decoration: underline;
}

/* ─── SUBMIT BUTTON ─── */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #0eb432, #25D366);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--green-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0eb432, #25D366);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(26, 255, 26, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary svg {
  width: 16px;
  height: 16px;
}

.btn-primary:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* ─── FORM FOOTER NOTE ─── */
.form-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-top: 10px;
}

.form-footer-note svg {
  width: 12px;
  height: 12px;
}

/* ─── FORM MESSAGE ─── */
.form-message {
  margin-top: 10px;
  font-size: 0.82rem;
  text-align: center;
  border-radius: var(--radius-sm);
  padding: 0;
  transition: var(--transition);
}

.form-message.success {
  color: #276749;
  background: #F0FFF4;
  border: 1px solid #9AE6B4;
  padding: 10px 12px;
}

.form-message.error {
  color: #9B2C2C;
  background: #FFF5F5;
  border: 1px solid #FEB2B2;
  padding: 10px 12px;
}

/* honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
}

/* ─── FOOTER ─── */
.site-footer {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 10px 0;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.08), 0 -2px 4px -1px rgba(0, 0, 0, 0.04);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.logo-img--footer {
  height: 32px;
}

.footer-logo .logo-text {
  font-size: 1.2rem;
}

.footer-tag {
  font-size: 0.78rem;
  color: var(--text-dark);
  line-height: 1.45;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a,
.link-btn {
  font-family: var(--font);
  font-size: 0.76rem;
  color: var(--text-dark);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.footer-links a:hover,
.link-btn:hover {
  color: var(--orange);
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 680px;
  background: rgba(30, 26, 22, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 20px 24px;
  z-index: 9999;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-content h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.cookie-content p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.60);
  margin-bottom: 14px;
  line-height: 1.5;
}

.cookie-content p a {
  color: var(--orange);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-secondary {
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.btn-primary.small {
  padding: 8px 16px;
  font-size: 0.82rem;
  width: auto;
}

.cookie-customize {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-customize[hidden] {
  display: none;
}

.cookie-customize label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}

.cookie-customize input {
  accent-color: var(--orange);
}

/* ─── SUCCESS MODAL ─── */
.success-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-modal[hidden] {
  display: none;
}

.success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.success-modal__content {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25);
  animation: modalIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.success-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--gray-400);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.success-modal__close:hover {
  color: var(--gray-800);
}

.success-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
}

.success-modal__icon-circle {
  stroke: var(--orange);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: drawCircle 0.6s ease forwards 0.1s;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

.success-modal__icon-check {
  stroke: var(--orange);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: drawCheck 0.4s ease forwards 0.65s;
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.success-modal__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.success-modal__text {
  font-size: 0.87rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.success-modal__info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  text-align: left;
}

.success-modal__info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--gray-600);
}

.success-modal__info-icon {
  font-size: 1rem;
}

.success-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: white;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 16px var(--orange-glow);
  width: 100%;
}

.success-modal__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255, 107, 26, 0.40);
}

/* ─── ANIMATIONS ─── */
.hero-content {
  animation: fadeUp 0.5s 0.05s both;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* Notebook (1181–1400px): Chrome/Edge/Safari — zoom proporcional */
@media (min-width: 1181px) and (max-width: 1300px) {

  html {
    font-size: 85%;
  }

  body {
    line-height: 1.4;
  }

  :root {
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-card: 0 16px 48px rgba(0, 0, 0, .15), 0 3px 12px rgba(0, 0, 0, .07);
  }

  .hero {
    padding: 45px;
  }

  .hero-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 0px;
  }

  .section {
    padding: 48px 0;
  }

  .hero-title {
    font-size: 12px
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .trust-grid {
    padding: 0;
  }

  .field-error {
    display: block;
    font-size: 0.7rem;
    color: #E53E3E;
    margin-top: 0px;
    min-height: 1px;
  }


  .benefits,
  .trust-alert-row,
  .trust-cta-row {
    margin: 3px;
  }

  .trust-consequences {
    padding: 5px 10px;
  }


  .card,
  .step-card,
  .benefit-card {
    padding: 20px;
  }
}


/* Small laptop / tablet landscape (1024px) */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hero::before {
    width: 50%;
    opacity: 0.65;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .lead {
    font-size: 1rem;
  }

  .benefits {
    padding: 10px 20px;
  }

  .benefits h3 {
    font-size: 0.95rem;
  }

  .benefits p {
    font-size: 0.84rem;
  }
}

/* Tablet portrait (900px): uma coluna */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero::before {
    width: 100%;
    height: 38%;
    opacity: 0.20;
    background-position: center bottom;
    background-size: cover;
  }

  .benefits {
    padding: 10px 40px;
    justify-content: center;
    gap: 20px;
  }

  .form-card {
    max-width: 520px;
    margin: 0 auto;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }

  /* Header */
  .header-inner {
    min-height: 56px;
    padding: 6px 0;
  }

  .header-right {
    gap: 6px;
  }

  .logo-img {
    height: 50px;
  }

  .btn-corretor {
    padding: 6px 8px;
    font-size: 0.74rem;
    gap: 4px;
    margin-right: 10px;
  }

  .btn-corretor svg {
    width: 12px;
    height: 12px;
  }

  .site-header .exon-rl__cnai {
    padding: 5px 8px 5px 6px;
    gap: 6px;
  }

  .site-header .exon-rl__cnai {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 24px 0 32px;
    min-height: auto;
    align-items: flex-start;
  }

  .hero::before {
    width: 100%;
    height: 35%;
    opacity: 0.18;
    background-size: cover;
    background-position: center bottom;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .divider {
    margin: 12px 0;
    width: 40px;
  }

  .lead {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  /* Benefits — remove padding lateral excessivo */
  .benefits {
    gap: 8px;
    margin-top: 20px;
    padding: 10px 0;
    justify-content: space-around;
  }

  .benefits li {
    gap: 10px;
    padding: 0 4px;
  }

  .benefit-icon {
    width: 36px;
    height: 36px;
  }

  .benefit-icon svg {
    width: 16px;
    height: 16px;
  }

  .benefits h3 {
    font-size: 0.82rem;
  }

  .benefits p {
    font-size: 0.76rem;
  }

  /* Trust strip */
  .trust-strip {
    margin-top: 20px;
  }

  .trust-grid {
    flex-direction: column;
    gap: 0;
    padding: 14px 16px;
  }

  .trust-consequences {
    gap: 10px;
  }

  .trust-consequence-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 120px;
  }

  .trust-alert-title {
    font-size: 0.85rem;
  }

  /* Form */
  .form-card {
    max-width: 100%;
    padding: 20px 16px 18px;
    border-radius: 14px;
  }

  .form-header {
    gap: 10px;
    margin-bottom: 4px;
  }

  .form-icon {
    width: 36px;
    height: 36px;
  }

  .form-icon svg {
    width: 16px;
    height: 16px;
  }

  .form-header h2 {
    font-size: 0.95rem;
  }

  .form-sub {
    font-size: 0.78rem;
    margin-bottom: 14px;
  }

  .field {
    margin-bottom: 10px;
  }

  .field label {
    font-size: 0.74rem;
  }

  .field input,
  .field select {
    min-height: 42px;
    font-size: 0.9rem;
    padding: 10px 10px 10px 36px;
  }

  .field-row {
    grid-template-columns: 80px 1fr;
    gap: 6px;
  }

  .field-check {
    font-size: 0.72rem;
    margin: 10px 0;
  }

  .field-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
  }

  .btn-primary {
    padding: 14px 20px;
    font-size: 0.88rem;
    min-height: 48px;
  }

  .form-footer-note {
    font-size: 0.7rem;
    margin-top: 8px;
  }

  /* Footer */
  .site-footer {
    padding: 16px 0;
  }

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

  .footer-tag {
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    gap: 12px;
  }

  .logo-img--footer {
    height: 28px;
  }

  /* Cookie banner */
  .cookie-banner {
    bottom: 12px;
    padding: 16px 18px;
    width: calc(100% - 24px);
  }

  .cookie-content h3 {
    font-size: 0.88rem;
  }

  .cookie-content p {
    font-size: 0.75rem;
    margin-bottom: 12px;
  }

  .cookie-actions {
    gap: 6px;
  }

  .btn-secondary {
    padding: 7px 12px;
    font-size: 0.72rem;
  }

  .btn-primary.small {
    padding: 7px 14px;
    font-size: 0.76rem;
  }

  /* Success modal */
  .success-modal {
    padding: 16px;
  }

  .success-modal__content {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .success-modal__icon {
    width: 56px;
    height: 56px;
  }

  .success-modal__title {
    font-size: 1.05rem;
  }

  .success-modal__text {
    font-size: 0.82rem;
  }

  .success-modal__info {
    padding: 12px 14px;
  }

  .success-modal__info-item {
    font-size: 0.78rem;
  }

  .success-modal__btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

/* Small mobile (380px) */
@media (max-width: 380px) {
  .container {
    padding: 0 12px;
  }

  .header-inner {
    min-height: 52px;
  }

  .header-right {
    gap: 6px;
  }

  .logo-img {
    height: 44px;
  }

  .btn-corretor__label {
    display: none;
  }

  .btn-corretor {
    padding: 6px;
    border-radius: 7px;
    gap: 0;
  }

  .btn-corretor svg {
    width: 14px;
    height: 14px;
  }

  .site-header .exon-rl__cnai-label {
    display: none;
  }

  .hero {
    padding: 20px 0 28px;
  }

  .hero-content h1 {
    font-size: 1.45rem;
  }

  .lead {
    font-size: 0.85rem;
  }

  .benefits {
    padding: 8px 0;
  }

  .benefits h3 {
    font-size: 0.78rem;
  }

  .benefit-icon {
    width: 32px;
    height: 32px;
  }

  .benefit-icon svg {
    width: 14px;
    height: 14px;
  }

  .form-card {
    padding: 18px 14px 16px;
  }

  .form-header h2 {
    font-size: 0.88rem;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .btn-primary {
    font-size: 0.82rem;
    padding: 12px 16px;
  }
}

/* Extra small (iPhone SE / 320px) */
@media (max-width: 320px) {
  .hero-content h1 {
    font-size: 1.3rem;
  }

  .lead {
    font-size: 0.8rem;
  }

  .benefits li {
    gap: 8px;
  }

  .benefit-icon {
    width: 28px;
    height: 28px;
  }

  .benefit-icon svg {
    width: 13px;
    height: 13px;
  }

  .form-card {
    padding: 16px 12px 14px;
  }

  .form-header h2 {
    font-size: 0.82rem;
  }

  .field label {
    font-size: 0.7rem;
  }

  .field input,
  .field select {
    min-height: 40px;
    font-size: 0.85rem;
  }
}

/* Landscape mobile */
@media (max-width: 900px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 16px 0 20px;
  }

  .hero::before {
    height: 100%;
    width: 40%;
    opacity: 0.28;
    background-position: right center;
  }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .lead {
    font-size: 0.85rem;
  }

  .benefits {
    margin-top: 12px;
    gap: 8px;
    padding: 6px 0;
  }

  .trust-strip {
    margin-top: 14px;
  }

  .form-card {
    max-width: 100%;
  }
}

/* High DPI / Retina */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .hero::before {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* ============================================================
   Seção "O que realizamos"  (exon-rl__)
   ============================================================ */

.exon-rl {
  --rl-orange: var(--orange, #FF6B1A);
  --rl-orange-light: var(--orange-light, #FF8A42);
  --rl-orange-soft: #FFF1E8;
  --rl-orange-softer: #FFF7F1;
  --rl-orange-glow: rgba(255, 107, 26, 0.30);
  --rl-ink: var(--text-dark, #1A1715);
  --rl-muted: var(--gray-600, #5B636E);
  --rl-line: #ECE9E3;
  --rl-line-2: #F1EEE8;
  --rl-bg: #FAF7F2;
  --rl-card: #FFFFFF;
  --rl-radius: 28px;
  --rl-radius-md: 20px;
  --rl-radius-sm: 14px;
  --rl-shadow: 0 1px 2px rgba(20, 16, 12, 0.04), 0 12px 32px rgba(20, 16, 12, 0.05);
  --rl-shadow-strong: 0 24px 64px rgba(20, 16, 12, 0.10), 0 4px 16px rgba(20, 16, 12, 0.05);

  display: block;
  padding: 56px 0 80px;
  background: var(--rl-bg);
  font-family: var(--font, 'Inter', sans-serif);
  color: var(--rl-ink);
  -webkit-font-smoothing: antialiased;
}

.exon-rl *,
.exon-rl *::before,
.exon-rl *::after {
  box-sizing: border-box;
}

.exon-rl__container {
  width: min(1440px, 94%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* ── INTRO ROW ── */
.exon-rl__intro-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.exon-rl__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 8px;
}

.exon-rl__eyebrow {
  color: var(--rl-orange);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.exon-rl__intro-text {
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 400;
  line-height: 1.45;
  max-width: 520px;
  letter-spacing: -0.005em;
}

/* ── HERO MEDIA ── */
.exon-rl__hero {
  position: relative;
  height: 360px;
  border-radius: 0 100px 0 110px;
  overflow: hidden;
  background: #2a2218;
  box-shadow: var(--rl-shadow-strong);
}

.exon-rl__hero-img,
.exon-rl__hero-slot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.exon-rl__cnai {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #1F1B17;
  color: #fff;
  padding: 14px 22px 14px 16px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.exon-rl__cnai-seal {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f5d99b, #b58134 60%, #6b4716 100%);
  display: grid;
  place-items: center;
  color: #2b1e0b;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.25);
}

.exon-rl__cnai-seal p {
  font-size: 0.72rem;
  font-weight: 700;
}

.exon-rl__cnai-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.exon-rl__cnai-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
}

.exon-rl__cnai-title {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin: 2px 0;
}

.exon-rl__cnai-sub {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 200px;
  line-height: 1.35;
}

/* ── GRID DE CARDS ── */
.exon-rl__grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
}

.exon-rl__card--receive {
  grid-column: 1;
}

.exon-rl__card--why {
  grid-column: 2;
  grid-row: span 2;
}

.exon-rl__card--for {
  grid-column: 1;
}

.exon-rl__card {
  background: var(--rl-card);
  border: 1px solid var(--rl-line);
  border-radius: var(--rl-radius);
  padding: 36px 40px 40px;
  box-shadow: var(--rl-shadow);
}

.exon-rl__title {
  font-size: clamp(1.4rem, 1.8vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--rl-ink);
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 0;
  line-height: 1.2;
}

.exon-rl__title::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  background: linear-gradient(90deg, var(--rl-orange) 0%, var(--rl-orange) 60%, transparent 100%);
  border-radius: 2px;
  margin-top: 10px;
}

.exon-rl__accent {
  color: var(--rl-orange);
}

/* ── FEATURES (3 / 5 cols) ── */
.exon-rl__features {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.exon-rl__features--3 {
  grid-template-columns: repeat(3, 1fr);
}

.exon-rl__features--5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.exon-rl__feature {
  text-align: center;
  padding: 22px 16px;
  border-radius: var(--rl-radius-md);
  transition: background 0.25s, transform 0.25s;
}

.exon-rl__feature:hover {
  background: var(--rl-orange-softer);
  transform: translateY(-2px);
}

.exon-rl__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--rl-orange-soft);
  color: var(--rl-orange);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 107, 26, 0.06);
}

.exon-rl__icon svg {
  width: 30px;
  height: 30px;
}

.exon-rl__icon--sm {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  margin: 0;
}

.exon-rl__icon--sm svg {
  width: 22px;
  height: 22px;
}

.exon-rl__features--5 .exon-rl__feature {
  padding: 18px 8px;
}

.exon-rl__features--5 .exon-rl__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.exon-rl__features--5 .exon-rl__icon svg {
  width: 26px;
  height: 26px;
}

.exon-rl__feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--rl-ink);
  line-height: 1.25;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}

.exon-rl__features--5 .exon-rl__feature-title {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.exon-rl__feature-text {
  font-size: 0.86rem;
  color: var(--rl-muted);
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}

.exon-rl__features--5 .exon-rl__feature-text {
  font-size: 0.78rem;
  line-height: 1.45;
  max-width: 180px;
}

/* ── WHY LIST ── */
.exon-rl__why {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.exon-rl__why-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 18px 4px;
  border-top: 1px solid var(--rl-line-2);
}

.exon-rl__why-item:first-child {
  border-top: none;
  padding-top: 4px;
}

.exon-rl__why-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--rl-ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}

.exon-rl__why-text {
  font-size: 0.88rem;
  color: var(--rl-muted);
  line-height: 1.5;
}

/* ── CTA STRIP ── */
.exon-rl__cta {
  grid-column: 1 / -1;
  margin-top: 4px;
  background: var(--rl-card);
  border: 1px solid var(--rl-line);
  border-radius: var(--rl-radius);
  box-shadow: var(--rl-shadow);
  padding: 26px 36px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
}

.exon-rl__cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--rl-orange);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px var(--rl-orange-glow);
  flex-shrink: 0;
}

.exon-rl__cta-icon svg {
  width: 26px;
  height: 26px;
}

.exon-rl__cta-text h3 {
  font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  font-weight: 800;
  color: var(--rl-ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.exon-rl__cta-text p {
  font-size: 0.92rem;
  color: var(--rl-muted);
  line-height: 1.4;
  margin: 0;
}

.exon-rl__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--rl-orange) 0%, var(--rl-orange-light) 100%);
  color: #fff;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 12px;
  padding: 18px 28px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 12px 28px var(--rl-orange-glow);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.exon-rl__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px var(--rl-orange-glow);
  text-decoration: none;
}

.exon-rl__btn:active {
  transform: translateY(0);
}

.exon-rl__btn svg {
  width: 20px;
  height: 20px;
}

.exon-rl__specialists {
  display: flex;
  align-items: center;
  gap: 16px;
}

.exon-rl__avatars {
  display: flex;
}

.exon-rl__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  object-fit: cover;
  background: #d8d3cc;
  flex-shrink: 0;
}

.exon-rl__avatar+.exon-rl__avatar {
  margin-left: -14px;
}

.exon-rl__specialists-text {
  font-size: 0.85rem;
  color: var(--rl-muted);
  line-height: 1.3;
  max-width: 160px;
}

/* ── RESPONSIVE (exon-rl) ── */

/* ≤1080px — tablet: colapsa para coluna única */
@media (max-width: 1080px) {

  .exon-rl__container,
  .exon-rl__grid,
  .exon-rl__intro-row {
    grid-template-columns: 1fr;
  }

  .exon-rl__card--receive,
  .exon-rl__card--why,
  .exon-rl__card--for {
    grid-column: 1;
  }

  .exon-rl__card--why {
    grid-row: auto;
  }

  .exon-rl__features--5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .exon-rl__cta {
    grid-template-columns: auto 1fr;
    row-gap: 16px;
  }

  .exon-rl__btn {
    grid-column: 1 / -1;
  }

  .exon-rl__specialists {
    grid-column: 1 / -1;
  }

  .exon-rl__eyebrow {
    font-size: 1rem;
    letter-spacing: 0.16em;
  }
}

/* ≤768px — tablet portrait / landscape phone */
@media (max-width: 768px) {
  .exon-rl {
    padding: 44px 0 64px;
  }

  .exon-rl__features--5 {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 5º item (ímpar na última linha) centraliza */
  .exon-rl__features--5 .exon-rl__feature:last-child:nth-child(2n+1) {
    grid-column: 1 / -1;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .exon-rl__hero {
    height: 280px;
  }

  .exon-rl__eyebrow {
    font-size: 0.92rem;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
  }

  .exon-rl__intro-text {
    font-size: 1rem;
  }
}

/* ≤640px — mobile */
@media (max-width: 640px) {
  .exon-rl {
    padding: 36px 0 52px;
  }

  .exon-rl__hero {
    display: none;
  }

  /* features--3: coluna única — ícones e texto com espaço */
  .exon-rl__features--3 {
    grid-template-columns: 1fr;
  }

  .exon-rl__features--3 .exon-rl__feature {
    padding: 18px 14px;
  }

  /* features--5: mantém 2 cols — ok até ~360px */
  .exon-rl__features--5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .exon-rl__features--5 .exon-rl__feature {
    padding: 16px 8px;
  }

  .exon-rl__card {
    padding: 28px 24px;
  }

  .exon-rl__card-logo {
    height: 22px;
    margin-top: 16px;
  }

  .exon-rl__title {
    font-size: clamp(1.25rem, 4vw, 1.55rem);
  }

  .exon-rl__hero {
    height: 220px;
    border-radius: 0 0 0 52px;
  }

  .exon-rl__cnai {
    right: 10px;
    bottom: 10px;
    padding: 10px 14px;
    gap: 10px;
  }

  .exon-rl__cnai-seal {
    width: 40px;
    height: 40px;
  }

  .exon-rl__cnai-title {
    font-size: 1rem;
  }

  .exon-rl__cnai-label {
    font-size: 0.62rem;
  }

  .exon-rl__why-item {
    gap: 14px;
    padding: 14px 4px;
  }

  .exon-rl__cta {
    padding: 20px;
    gap: 14px;
  }

  .exon-rl__cta-text h3 {
    font-size: 1.1rem;
  }

  .exon-rl__btn {
    padding: 14px 20px;
    font-size: 0.82rem;
    gap: 10px;
  }

  .exon-rl__eyebrow {
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
  }

  .exon-rl__feature-title {
    font-size: 0.92rem;
  }

  .exon-rl__feature-text {
    font-size: 0.82rem;
  }
}

/* ≤400px — phones pequenos */
@media (max-width: 400px) {
  .exon-rl {
    padding: 28px 0 44px;
  }

  .exon-rl__features--5 .exon-rl__feature:last-child:nth-child(2n+1) {
    max-width: 220px;
  }

  .exon-rl__card {
    padding: 24px 18px;
  }

  .exon-rl__card-logo {
    height: 20px;
    margin-top: 12px;
  }

  .exon-rl__title {
    font-size: 1.2rem;
  }

  .exon-rl__hero {
    height: 180px;
    border-radius: 0 0 0 36px;
  }

  .exon-rl__cnai {
    padding: 8px 10px;
    gap: 8px;
  }

  .exon-rl__cnai-seal {
    width: 32px;
    height: 32px;
  }

  .exon-rl__cnai-title {
    font-size: 0.86rem;
  }

  .exon-rl__cnai-sub {
    display: none;
  }

  .exon-rl__why-item {
    gap: 10px;
    padding: 12px 2px;
  }

  .exon-rl__icon--sm {
    width: 36px;
    height: 36px;
  }

  .exon-rl__icon--sm svg {
    width: 18px;
    height: 18px;
  }

  .exon-rl__why-title {
    font-size: 0.9rem;
  }

  .exon-rl__why-text {
    font-size: 0.82rem;
  }

  .exon-rl__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  .exon-rl__feature-title {
    font-size: 0.85rem;
  }

  .exon-rl__feature-text {
    font-size: 0.76rem;
  }

  .exon-rl__cta {
    padding: 16px;
    gap: 10px;
  }

  .exon-rl__cta-icon {
    width: 44px;
    height: 44px;
  }

  .exon-rl__cta-icon svg {
    width: 20px;
    height: 20px;
  }

  .exon-rl__cta-text h3 {
    font-size: 0.95rem;
  }

  .exon-rl__cta-text p {
    font-size: 0.82rem;
  }

  .exon-rl__btn {
    padding: 12px 16px;
    font-size: 0.78rem;
    gap: 8px;
  }

  .exon-rl__specialists {
    gap: 8px;
  }

  .exon-rl__avatar {
    width: 36px;
    height: 36px;
  }

  .exon-rl__specialists-text {
    font-size: 0.74rem;
    max-width: 120px;
  }
}