/* =============================================
   AGENTES.CSS — Futurizai
   Estilos exclusivos da página /agentes
   ============================================= */

/* ─── NAVBAR BACK BUTTON ─── */
.navbar__back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-text);
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
  white-space: nowrap;
}

.navbar__back:hover {
  color: var(--text-primary);
}

.navbar__back--mobile {
  display: none;
  position: absolute;
  left: var(--space-8);
}

.navbar__link--active {
  color: var(--accent) !important;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 12px 0;
  margin-top: 52px;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumb__link {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  transition: color 0.2s;
}

.breadcrumb__link:hover {
  color: var(--text-primary);
}

.breadcrumb__sep {
  font-size: 13px;
  color: var(--border-light);
}

.breadcrumb__current {
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 300;
  color: var(--text-primary);
}

/* ─── HERO AGENTES ─── */
.agentes-hero {
  padding-top: var(--space-20);
  padding-bottom: var(--space-24);
}

.agentes-hero__content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px 0 0 0;
}

.agentes-hero__headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.8vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: var(--space-8);
}

.agentes-hero__sub {
  font-family: var(--font-text);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto var(--space-10);
}

/* ─── PROOF BAR ─── */
.proof-bar {
  background: var(--surface-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.proof-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.proof-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ─── DEMO GRID (phone + copy layout) ─── */
.ag-demo-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-12);
  align-items: center;
  margin-top: var(--space-10);
}

/* ─── PHONE MOCKUP ─── */
.ag-phone {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
}

.ag-phone-top {
  background: rgba(255, 255, 255, 0.03);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.ag-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #6ee840);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: #000;
  font-size: 17px;
  flex-shrink: 0;
}

.ag-phone-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
}

.ag-phone-status {
  font-size: 12px;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

.ag-phone-status::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: block;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* messages area — override height inside phone */
.ag-phone .demo-chat__messages {
  height: 340px;
  padding: 18px;
}

/* ─── CHAT INPUT WRAP (phone style) ─── */
.ag-chat-input-wrap {
  padding: 12px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  gap: 10px;
  background: rgba(255, 255, 255, 0.01);
}

.ag-chat-input {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: var(--font-text);
  font-size: var(--text-sm);
  resize: none;
  min-height: 40px;
  max-height: 90px;
  line-height: 1.4;
  outline: none;
  transition: border-color var(--dur-fast);
}

.ag-chat-input::placeholder {
  color: var(--text-muted);
}

.ag-chat-input:focus {
  border-color: rgba(156, 243, 92, 0.35);
}

.ag-chat-send {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  border: none;
  color: #000;
  transition: opacity var(--dur-fast), transform var(--dur-fast);
}

.ag-chat-send:hover:not(:disabled) {
  transform: scale(1.08);
}

.ag-chat-send:disabled {
  opacity: 0.35;
  cursor: default;
}

/* ─── COPY SIDE ─── */
.ag-demo-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 600;
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.ag-demo-copy p {
  color: var(--text-secondary);
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
  font-weight: 300;
  line-height: 1.6;
}

.ag-demo-stats {
  display: flex;
  gap: 14px;
  margin-top: var(--space-6);
  flex-wrap: wrap;
}

.ag-dstat {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  flex: 1;
  min-width: 90px;
  transition: border-color var(--dur-fast);
}

.ag-dstat:hover {
  border-color: var(--border-light);
}

.ag-dstat__n {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--accent);
}

.ag-dstat__l {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
  letter-spacing: 0.02em;
}

/* ─── DEMO CHAT ─── */
.demo-chat {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.demo-chat__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border-bottom: 1px solid var(--border);
}

.demo-chat__status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.demo-chat__status-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.demo-chat__messages {
  height: 380px;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.demo-chat__messages::-webkit-scrollbar {
  width: 4px;
}

.demo-chat__messages::-webkit-scrollbar-track {
  background: transparent;
}

.demo-chat__messages::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

/* Message bubbles */
.demo-msg {
  max-width: 80%;
  animation: msgIn 0.3s ease-out;
}

@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.demo-msg--bot {
  align-self: flex-start;
}

.demo-msg--user {
  align-self: flex-end;
}

.demo-msg__bubble {
  padding: 12px 16px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-primary);
  word-wrap: break-word;
}

.demo-msg--bot .demo-msg__bubble {
  background: var(--surface-2);
  border-radius: 12px 12px 12px 4px;
}

.demo-msg--user .demo-msg__bubble {
  background: var(--accent-dim);
  border: 1px solid rgba(156, 243, 92, 0.15);
  border-radius: 12px 12px 4px 12px;
}

/* Typing indicator */
.demo-typing {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  align-self: flex-start;
  background: var(--surface-2);
  border-radius: 12px 12px 12px 4px;
}

.demo-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-muted);
  animation: typing-bounce 1.4s ease-in-out infinite;
}

.demo-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.demo-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-bounce {

  0%,
  60%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-4px);
  }
}

/* WhatsApp button inside chat */
.demo-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  padding: 8px 14px;
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  transition: opacity 0.2s;
}

.demo-wa-btn:hover {
  opacity: 0.85;
}

/* Input area */
.demo-chat__input-area {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid var(--border);
}

.demo-chat__input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-text);
  font-size: 15px;
  resize: none;
  outline: none;
  line-height: 1.4;
  max-height: 80px;
}

.demo-chat__input::placeholder {
  color: var(--text-muted);
}

.demo-chat__send {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  padding: 4px;
  opacity: 0.6;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.demo-chat__send:not(:disabled):hover {
  opacity: 1;
}

.demo-chat__send:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

/* Quick replies */
.demo-chat__quick {
  display: flex;
  gap: 8px;
  padding: 0 16px 16px;
  flex-wrap: wrap;
}

.demo-chat__qr {
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: var(--font-text);
  font-size: 13px;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.demo-chat__qr:hover {
  border-color: rgba(156, 243, 92, 0.3);
  color: var(--text-primary);
}

/* ─── METRIC CARDS ─── */
.demo-metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.metric-card svg {
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: var(--space-3);
}

.metric-card__value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.metric-card__label {
  font-family: var(--font-text);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
}

/* ─── USE CASES GRID ─── */
.usecases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.usecase-card {
  background: var(--surface-1);
  padding: 32px 24px;
}

.usecase-card__icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: var(--space-6);
}

.usecase-card__title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.usecase-card__desc {
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ─── COMPARE GRID ─── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

.compare-before,
.compare-after {
  border-radius: var(--radius-lg);
  padding: 32px;
}

.compare-before {
  border: 1px solid rgba(226, 75, 74, 0.35);
  background: rgba(226, 75, 74, 0.03);
}

.compare-after {
  border: 1px solid rgba(156, 243, 92, 0.2);
  background: rgba(156, 243, 92, 0.02);
}

.compare-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-6);
}

.compare-tag--before {
  color: #E24B4A;
  border: 1px solid rgba(226, 75, 74, 0.35);
}

.compare-tag--after {
  color: var(--accent);
  border: 1px solid rgba(156, 243, 92, 0.3);
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 15px;
  line-height: 1.5;
}

.compare-before .compare-list li {
  color: var(--text-secondary);
}

.compare-after .compare-list li {
  color: var(--text-primary);
}

.compare-icon {
  flex-shrink: 0;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.compare-icon--no {
  color: #E24B4A;
}

.compare-icon--yes {
  color: var(--accent);
}

/* ─── SINGLE TESTIMONIAL ─── */
.single-testimonial {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}

/* ─── CTA EXTRAS ─── */
.cta-urgency {
  display: inline-block;
  font-family: var(--font-text);
  font-size: 13px;
  color: var(--accent);
  border: 1px solid rgba(156, 243, 92, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-6);
}

.cta-sub {
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto var(--space-8);
  line-height: 1.55;
}

.cta-guarantee {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: var(--space-3);
}

/* ─── PLANS ─── */
.ag-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: var(--space-12);
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ag-plan {
  background: var(--surface-1);
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: background var(--dur-base);
}

.ag-plan:hover {
  background: var(--surface-2);
}

.ag-plan--featured {
  background: var(--surface-2);
  box-shadow: inset 0 0 0 1px rgba(156, 243, 92, 0.25);
}

.ag-plan__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: #000;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-4);
  align-self: flex-start;
}

.ag-plan__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
  letter-spacing: var(--tracking-tight);
}

.ag-plan__verb {
  font-size: var(--text-sm);
  color: var(--accent);
  font-weight: 400;
  margin-bottom: var(--space-5);
}

.ag-plan__price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.ag-plan__cur {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}

.ag-plan__amt {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.ag-plan__amt--custom {
  font-size: 26px;
}

.ag-plan__per {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.ag-plan__setup {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.ag-plan__setup b {
  color: var(--text-secondary);
}

.ag-plan__credit {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--border);
}

.ag-plan ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--space-6);
  flex: 1;
}

.ag-plan li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.5;
}

.ag-plan__ck {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
  font-size: 11px;
}

.ag-plan__btn {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-text);
  font-weight: 600;
  font-size: var(--text-sm);
  cursor: pointer;
  transition: transform var(--dur-fast), box-shadow var(--dur-fast), border-color var(--dur-fast), color var(--dur-fast);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--text-primary);
  margin-top: auto;
}

.ag-plan__btn:hover {
  border-color: rgba(156, 243, 92, 0.4);
  color: var(--accent);
}

.ag-plan--featured .ag-plan__btn {
  background: var(--accent);
  color: #000;
  border: none;
}

.ag-plan--featured .ag-plan__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(156, 243, 92, 0.2);
  color: #000;
}

.ag-plans-note {
  text-align: center;
  margin-top: var(--space-6);
  font-size: 12px;
  color: var(--text-muted);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .ag-demo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ag-phone {
    max-width: 100%;
  }

  .ag-demo-stats {
    flex-direction: row;
  }

  .ag-dstat {
    flex: 1;
  }

  .ag-plans {
    grid-template-columns: 1fr;
    background: transparent;
    border: none;
    gap: 16px;
    border-radius: 0;
  }

  .ag-plan {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
  }

  .ag-plan--featured {
    box-shadow: inset 0 0 0 1px rgba(156, 243, 92, 0.25);
  }
}

@media (max-width: 767px) {
  .navbar__back {
    display: none;
  }

  .navbar__back--mobile {
    display: flex;
  }

  .breadcrumb {
    display: none;
  }

  .agentes-hero {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  .agentes-hero__sub {
    font-size: 17px;
  }

  .proof-bar__inner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .proof-bar__item {
    white-space: normal;
    line-height: 1.4;
  }

  .demo-chat__messages {
    height: 320px;
  }

  .demo-metrics {
    flex-direction: column;
  }

  .usecases-grid {
    grid-template-columns: 1fr;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .single-testimonial {
    padding: 28px 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

/* ─── CALCULADORA DE CUSTO ─── */
.agentes-calc-section {
  background: var(--surface-1);
}

.agentes-calc {
  background: var(--black);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px;
  margin-top: var(--space-10);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ── Inputs side ── */
.agentes-calc__inputs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.agentes-calc__field {
  margin-bottom: var(--space-8);
}

.agentes-calc__field:last-child {
  margin-bottom: 0;
}

.agentes-calc__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: 14px;
  font-weight: 400;
  font-family: var(--font-text);
  gap: 8px;
}

.agentes-calc__label b {
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Range input custom styling */
.agentes-calc__range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}

.agentes-calc__range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(156, 243, 92, 0.15), 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.15s;
}

.agentes-calc__range::-webkit-slider-thumb:hover {
  transform: scale(1.12);
}

.agentes-calc__range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: none;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(156, 243, 92, 0.15);
}

/* ── Result side ── */
.agentes-calc__result {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.agentes-calc__result-label {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: var(--tracking-label);
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.agentes-calc__big {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 64px);
  font-weight: 700;
  color: var(--danger);
  line-height: 1;
  transition: color 0.3s;
  margin-bottom: 14px;
}

.agentes-calc__sub {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  max-width: 34ch;
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 20px;
}

.agentes-calc__flip {
  width: 100%;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  background: var(--accent-dim);
  border: 1px solid rgba(156, 243, 92, 0.15);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 24px;
}

.agentes-calc__flip b {
  color: var(--accent);
  font-weight: 600;
}

.agentes-calc__cta {
  width: 100%;
  justify-content: center;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .agentes-calc {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 32px 24px;
  }

  .agentes-calc__result {
    border-top: 1px solid var(--border);
    padding-top: 36px;
  }
}

@media (max-width: 767px) {
  .agentes-calc {
    padding: 24px 16px;
    margin-top: var(--space-8);
    border-radius: var(--radius-lg);
  }

  .agentes-calc__big {
    font-size: clamp(36px, 10vw, 52px);
  }
}