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

:root {
  --orange: #F97316;
  --orange-light: #FB923C;
  --orange-dark: #EA580C;
  --navy: #0F1D35;
  --navy-mid: #1E3256;
  --navy-light: #2D4A7A;
  --white: #FFFFFF;
  --off-white: #F8F6F2;
  --gray: #64748B;
  --gray-light: #E2E8F0;
  --text: #1A2B45;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--off-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(15,29,53,0.96);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 70px;
  border-bottom: 1px solid rgba(249,115,22,0.2);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
}

/* SVG Logo inline */
.logo-mark {
  width: 42px; height: 42px;
}

.logo-text {
  display: flex; flex-direction: column; line-height: 1;
}

.logo-arb {
  font-family: 'Sora', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--white); letter-spacing: -0.5px;
}

.logo-garantias {
  font-family: 'Sora', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--orange);
}

.logo-tagline {
  font-size: 9px; color: rgba(255,255,255,0.5);
  font-weight: 400; letter-spacing: 0.3px;
  margin-top: 1px;
}

.nav-links {
  display: flex; gap: 32px; list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none; font-size: 14px;
  font-weight: 500; transition: color 0.2s;
}

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

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 8px 20px; border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(to right, rgba(10,18,30,0.82) 45%, rgba(10,18,30,0.45) 100%),
    url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&q=80&auto=format&fit=crop') center/cover no-repeat;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid-lines { display: none; }

.hero-content {
  position: relative; z-index: 2;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(249,115,22,0.18);
  border: 1px solid rgba(249,115,22,0.35);
  color: var(--orange-light);
  font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.5px; text-transform: uppercase;
  animation: fadeUp 0.6s ease both;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  animation: fadeUp 0.6s 0.1s ease both;
}

h1 span {
  color: var(--orange);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  max-width: 460px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 36px;
  animation: fadeUp 0.6s 0.3s ease both;
}

.pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  font-size: 13px; font-weight: 500;
  padding: 7px 14px; border-radius: 100px;
}

.pill svg { color: var(--orange); }

.hero-cta-group {
  display: flex; gap: 14px; align-items: center;
  animation: fadeUp 0.6s 0.4s ease both;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 24px rgba(249,115,22,0.4);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(249,115,22,0.5);
}

.btn-ghost {
  color: rgba(255,255,255,0.75);
  font-size: 14px; font-weight: 500;
  text-decoration: none;
  display: flex; align-items: center; gap: 6px;
  transition: color 0.2s;
}

.btn-ghost:hover { color: var(--white); }

/* ── HERO FORM (right side) ── */
.hero-right {
  position: relative; z-index: 2;
  display: flex; justify-content: flex-end; align-items: center;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-form-card {
  background: rgba(248,246,242,0.97);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 32px 28px 24px;
  width: 100%; max-width: 400px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}

.hero-form-promo {
  background: var(--orange);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 10px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-form-card input,
.hero-form-card select {
  background: var(--white);
  border: 1.5px solid #DDD;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--text);
  width: 100%;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.hero-form-card input:focus,
.hero-form-card select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}

/* Moneda toggle */
.moneda-toggle {
  display: flex;
  border: 1.5px solid #DDD;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.moneda-btn {
  flex: 1; padding: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 13px; font-weight: 700;
  border: none; cursor: pointer;
  background: var(--white);
  color: #999;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}

.moneda-btn.active {
  background: var(--orange);
  color: var(--white);
}

.moneda-label {
  font-size: 11px; font-weight: 600;
  color: #888; text-transform: uppercase;
  letter-spacing: 0.5px; margin-bottom: 5px;
  display: block;
}

.hero-form-card .btn-submit-hero {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none; cursor: pointer;
  padding: 13px;
  border-radius: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 15px; font-weight: 800;
  margin-top: 4px;
  letter-spacing: 0.3px;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}

.hero-form-card .btn-submit-hero:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(249,115,22,0.45);
}

.hero-form-privacy {
  text-align: center; margin-top: 10px;
  font-size: 11px; color: #aaa;
}

/* Hero form success */
.hero-form-success {
  display: none; text-align: center; padding: 20px 0;
}
.hero-form-success.show { display: block; }

/* old stat boxes – unused now */
.hero-card, .stat-row, .stat-box, .stat-num, .stat-label { display: none; }

.coverage-list {
  display: flex; flex-direction: column; gap: 10px;
}

.coverage-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 13px;
}

.coverage-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* ─── SEGMENTS ─── */
.segments {
  background: var(--off-white);
  padding: 100px 80px;
}

.section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}

h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800; color: var(--navy);
  letter-spacing: -1px; line-height: 1.1;
}

.section-intro {
  font-size: 17px; color: var(--gray);
  max-width: 560px; line-height: 1.65;
  margin-top: 12px;
}

.segments-header {
  margin-bottom: 56px;
}

.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.segment-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid var(--gray-light);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.segment-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.segment-card:hover {
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(249,115,22,0.1);
}

.segment-card:hover::before { transform: scaleX(1); }

.seg-icon {
  width: 52px; height: 52px;
  background: rgba(249,115,22,0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
}

.seg-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
}

.seg-desc {
  font-size: 14px; color: var(--gray);
  line-height: 1.65; margin-bottom: 20px;
}

.seg-benefits {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}

.seg-benefits li {
  font-size: 13px; color: var(--text);
  display: flex; align-items: flex-start; gap: 8px;
}

.seg-benefits li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700; flex-shrink: 0;
}

.seg-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-weight: 600; font-size: 14px;
  text-decoration: none; margin-top: 24px;
  transition: gap 0.2s;
}

.seg-link:hover { gap: 10px; }

/* ─── HOW IT WORKS ─── */
.how {
  background: var(--navy);
  padding: 100px 80px;
  position: relative; overflow: hidden;
}

.how::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(249,115,22,0.06) 0%, transparent 70%);
}

.how h2 { color: var(--white); }
.how .section-intro { color: rgba(255,255,255,0.55); }

.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative; z-index: 1;
}

.how-step {
  padding: 32px;
  position: relative;
}

.how-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 52px; right: 0;
  width: 40px; height: 1px;
  background: rgba(249,115,22,0.3);
}

.step-num {
  font-family: 'Sora', sans-serif;
  font-size: 13px; font-weight: 700;
  color: var(--orange);
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.25);
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}

.step-icon { font-size: 28px; margin-bottom: 14px; }

.step-title {
  font-family: 'Sora', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--white); margin-bottom: 8px;
}

.step-desc {
  font-size: 13px; color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ─── COVERAGE ─── */
.coverage {
  background: var(--off-white);
  padding: 100px 80px;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 56px;
}

.coverage-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cov-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px; padding: 24px;
  transition: all 0.25s;
}

.cov-card:hover {
  border-color: rgba(249,115,22,0.3);
  box-shadow: 0 8px 24px rgba(249,115,22,0.08);
}

.cov-icon { font-size: 28px; margin-bottom: 12px; }

.cov-title {
  font-family: 'Sora', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}

.cov-text { font-size: 12px; color: var(--gray); line-height: 1.5; }

.coverage-right h2 { margin-bottom: 20px; }

.coverage-right p {
  font-size: 16px; color: var(--gray);
  line-height: 1.7; margin-bottom: 32px;
}

.trust-badges {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trust-badge {
  background: var(--navy);
  border-radius: 12px; padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}

.trust-badge-icon { font-size: 20px; }

.trust-badge-text {
  font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.4;
}

.trust-badge-text strong {
  display: block; color: var(--white);
  font-family: 'Sora', sans-serif;
  font-size: 13px; margin-bottom: 2px;
}

/* ─── FORM SECTION ─── */
.form-section {
  background: var(--navy);
  padding: 100px 80px;
  position: relative; overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(249,115,22,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 50%, rgba(45,74,122,0.5) 0%, transparent 60%);
}

.form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative; z-index: 1;
}

.form-left h2 { color: var(--white); margin-bottom: 16px; }

.form-left p {
  font-size: 16px; color: rgba(255,255,255,0.55);
  line-height: 1.7; margin-bottom: 36px;
}

.form-guarantee {
  display: flex; flex-direction: column; gap: 14px;
}

.fg-item {
  display: flex; align-items: center; gap: 12px;
  color: rgba(255,255,255,0.65); font-size: 14px;
}

.fg-icon {
  width: 32px; height: 32px;
  background: rgba(249,115,22,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  border-radius: 24px; padding: 40px;
}

.form-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}

.form-subtitle {
  font-size: 14px; color: var(--gray);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 16px;
}

label {
  display: block;
  font-size: 12px; font-weight: 600;
  color: var(--navy); letter-spacing: 0.3px;
  margin-bottom: 6px; text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--text);
  background: var(--off-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
  background: var(--white);
}

textarea { resize: none; height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn-submit {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  border: none; cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-family: 'Sora', sans-serif;
  font-size: 15px; font-weight: 700;
  margin-top: 20px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(249,115,22,0.3);
}

.btn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.4);
}

.form-privacy {
  text-align: center; margin-top: 12px;
  font-size: 11px; color: var(--gray);
}

/* Success state */
.success-msg {
  display: none;
  text-align: center; padding: 32px;
}

.success-msg.show { display: block; }
.contact-form.submitted .form-content { display: none; }
.contact-form.submitted .success-msg { display: block; }

.success-icon { font-size: 48px; margin-bottom: 16px; }
.success-title {
  font-family: 'Sora', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.success-text { font-size: 14px; color: var(--gray); }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid var(--gray-light);
}

.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
  font-family: 'Sora', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--navy); text-align: left;
  transition: color 0.2s;
  gap: 16px;
}

.faq-q:hover { color: var(--orange); }

.faq-icon {
  font-size: 22px; font-weight: 300;
  color: var(--orange); flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-q.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 0 20px;
  font-size: 15px; color: var(--gray);
  line-height: 1.7;
}

.faq-a.open { display: block; }

/* ─── FOOTER ─── */
footer {
  background: #080F1C;
  padding: 60px 80px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand p {
  font-size: 13px; color: rgba(255,255,255,0.4);
  line-height: 1.7; margin-top: 16px; max-width: 280px;
}

.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 14px; transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--orange); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
}

.footer-bottom p {
  font-size: 12px; color: rgba(255,255,255,0.25);
}

.footer-bottom a {
  color: rgba(255,255,255,0.25); text-decoration: none;
  font-size: 12px; transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--orange); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 200;
  background: #25D366;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 20px 60px;
    background-position: center;
  }
  .hero-right {
    justify-content: center;
    margin-top: 32px;
  }
  .hero-form-card { max-width: 100%; }
  .segments { padding: 70px 24px; }
  .segments-grid { grid-template-columns: 1fr; }
  .how { padding: 70px 24px; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-step::after { display: none; }
  .coverage { padding: 70px 24px; }
  .coverage-grid { grid-template-columns: 1fr; }
  .form-section { padding: 70px 24px; }
  .form-inner { grid-template-columns: 1fr; gap: 40px; }
  footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}


  /* ════════════════════════════════════════════
   [CSS COMPONENTE — COPIAR DESDE AQUÍ]
   ════════════════════════════════════════════ */

.arb-rv-section {
  width: 100%;
  max-width: 100%;
  padding: 80px 40px;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  position: relative;
  overflow: hidden;
  /* fondo del sitio — ajustar si es distinto */
  background: #f4f6f9;
}

/* burbujas de color detrás para que el glass tenga algo que refractar */
.arb-rv-section::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  top: -160px; right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.arb-rv-section::after {
  content: '';
  position: absolute;
  width: 440px; height: 440px;
  bottom: -140px; left: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,130,230,0.09) 0%, transparent 65%);
  pointer-events: none;
}

/* burbuja extra central */
.arb-rv-blob {
  position: absolute;
  width: 360px; height: 360px;
  top: 50%; left: 55%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.07) 0%, transparent 65%);
  pointer-events: none;
}

.arb-rv-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Encabezado ── */
.arb-rv-header {
  text-align: center;
  margin-bottom: 36px;
}

.arb-rv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.22);
  border-radius: 100px;
  padding: 6px 18px 6px 12px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.arb-rv-eyebrow-text {
  font-size: 11.5px;
  font-weight: 500;
  color: #c2550c;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.arb-rv-title {
  font-size: clamp(24px, 3.5vw, 34px);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
  margin-bottom: 10px;
}

.arb-rv-title span { color: #f97316; }

.arb-rv-subtitle {
  font-size: 15px;
  color: #999;
  font-weight: 300;
}

/* ── Rating global ── */
.arb-rv-rating-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.arb-rv-rating-bar {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  /* glass */
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 100px;
  padding: 10px 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07), inset 0 1px 0 rgba(255,255,255,0.9);
}

.arb-rv-rating-number {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.arb-rv-rating-right {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.arb-rv-rating-stars { display: flex; gap: 2px; }
.arb-rv-rating-stars svg { width: 14px; height: 14px; }

.arb-rv-rating-count {
  font-size: 11px;
  color: #bbb;
  font-weight: 300;
}

.arb-rv-divider-v {
  width: 1px;
  height: 32px;
  background: rgba(0,0,0,0.08);
}

.arb-rv-rating-label {
  font-size: 12.5px;
  color: #aaa;
  font-weight: 300;
  max-width: 110px;
  line-height: 1.4;
}

/* ── Carrusel ── */
.arb-rv-carousel-outer { position: relative; }
.arb-rv-overflow { overflow: hidden; }

.arb-rv-track {
  display: flex;
  gap: 20px;
  transition: transform 0.52s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  align-items: stretch;
}

/* ── CARD con glassmorphism ── */
.arb-rv-card {
  flex: 0 0 calc(50% - 10px);
  min-width: 0;

  /* ── el efecto vidrio ── */
  background: rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(20px) saturate(200%) brightness(1.05);
  -webkit-backdrop-filter: blur(20px) saturate(200%) brightness(1.05);

  /* borde tipo cristal */
  border: 1px solid rgba(255, 255, 255, 0.80);
  border-top: 1px solid rgba(255, 255, 255, 0.95);
  border-left: 1px solid rgba(255, 255, 255, 0.90);

  border-radius: 20px;
  padding: 28px 28px 26px;

  /* sombra suave para profundidad */
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 8px 32px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 1px 0 0 rgba(255,255,255,0.6);

  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
  position: relative;
  overflow: hidden;
}

/* reflejo diagonal interno */
.arb-rv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(
    160deg,
    rgba(255,255,255,0.40) 0%,
    rgba(255,255,255,0.0) 60%
  );
  border-radius: 20px 20px 0 0;
  pointer-events: none;
}

/* línea naranja superior al hover */
.arb-rv-card::after {
  content: '';
  position: absolute;
  top: 0; left: 28px; right: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #f97316, transparent);
  opacity: 0;
  transition: opacity 0.28s ease;
  border-radius: 0 0 3px 3px;
}

.arb-rv-card:hover {
  background: rgba(255,255,255,0.68);
  border-color: rgba(249,115,22,0.25);
  transform: translateY(-6px);
  box-shadow:
    0 4px 8px rgba(0,0,0,0.05),
    0 20px 48px rgba(249,115,22,0.10),
    0 20px 48px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,1),
    inset 1px 0 0 rgba(255,255,255,0.8);
}

.arb-rv-card:hover::after { opacity: 1; }

/* ── Cabecera card ── */
.arb-rv-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.arb-rv-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
  font-family: 'Outfit', sans-serif;
  /* glass en el avatar también */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.70);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.arb-rv-avatar.av1 { background: rgba(249,115,22,0.15); color: #c2550c; }
.arb-rv-avatar.av2 { background: rgba(239,68,68,0.12);  color: #b91c1c; }
.arb-rv-avatar.av3 { background: rgba(249,115,22,0.12); color: #c2550c; }
.arb-rv-avatar.av4 { background: rgba(234,179,8,0.15);  color: #a16207; }
.arb-rv-avatar.av5 { background: rgba(168,85,247,0.12); color: #7e22ce; }
.arb-rv-avatar.av6 { background: rgba(20,184,166,0.12); color: #0f766e; }

.arb-rv-user-info { flex: 1; min-width: 0; }

.arb-rv-user-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.arb-rv-user-meta {
  font-size: 12px;
  color: #bbb;
  margin: 0;
  font-weight: 300;
}

.arb-rv-glogo { width: 17px; height: 17px; flex-shrink: 0; }

/* ── Estrellas ── */
.arb-rv-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.arb-rv-stars svg { width: 14px; height: 14px; }

/* ── Texto ── */
.arb-rv-text {
  font-size: 14px;
  color: #555;
  line-height: 1.78;
  margin: 0;
  font-weight: 300;
  position: relative;
  z-index: 1;
  padding-left: 18px;
}

.arb-rv-text::before {
  content: '"';
  position: absolute;
  left: 0; top: -6px;
  font-size: 32px;
  color: #f97316;
  opacity: 0.40;
  line-height: 1;
  font-weight: 700;
  font-family: Georgia, serif;
}

/* ── Controles ── */
.arb-rv-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.arb-rv-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  padding: 0;
}

.arb-rv-btn:hover {
  background: rgba(249,115,22,0.10);
  border-color: rgba(249,115,22,0.35);
  transform: scale(1.07);
  box-shadow: 0 4px 16px rgba(249,115,22,0.15);
}

.arb-rv-btn svg {
  width: 16px; height: 16px;
  stroke: #666;
  stroke-width: 2; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.2s;
}

.arb-rv-btn:hover svg { stroke: #f97316; }

.arb-rv-dots { display: flex; gap: 8px; align-items: center; }

.arb-rv-dot {
  height: 7px; width: 7px;
  border-radius: 4px;
  background: rgba(0,0,0,0.14);
  cursor: pointer;
  transition: background 0.25s, width 0.30s cubic-bezier(0.4,0,0.2,1);
  border: none; padding: 0;
}

.arb-rv-dot.active { background: #f97316; width: 24px; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .arb-rv-section { padding: 60px 16px; }
  .arb-rv-card { flex: 0 0 100%; padding: 22px 20px; }
  .arb-rv-rating-bar { flex-wrap: wrap; justify-content: center; border-radius: 16px; padding: 12px 18px; }
}

/* ════════════════════════════════════════════
   [FIN CSS COMPONENTE]
   ════════════════════════════════════════════ */