/* ============================================================
   VILDEK — presupuesto.css
   Estilos específicos para la página de presupuesto
============================================================ */

/* ——— Hero: segundo CTA como outline blanco (igual que contacto) ——— */
.page-hero__actions .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
}

.page-hero__actions .btn--outline:hover {
  border-color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
}

/* ——— Trust strip — alineado con contact-trust-strip ——— */
.pres-trust {
  background: var(--accent);
  padding: 20px 0;
}

.pres-trust__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 48px;
}

.pres-trust__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
}

.pres-trust__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(255,255,255,.65);
}

/* ——— Main body ——— */
.pres-body {
  padding: 72px 0 88px;
  background: var(--bg);
}

.pres-body__inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

/* ——— Form column ——— */
.pres-form-col__header {
  margin-bottom: 28px;
}

.pres-form-col__header h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 10px;
}

.pres-form-col__header p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ——— Tally embed container ——— */
.pres-tally-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px 32px;
  min-height: 0;
  overflow: visible;
}

.pres-tally-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
}

/* ——— Sidebar ——— */
.pres-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

/* WhatsApp card */
.pres-sidebar-wa {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.pres-sidebar-wa__icon {
  width: 48px; height: 48px;
  background: #e9f7ee;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a7a3a;
  margin-bottom: 14px;
}

.pres-sidebar-wa h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: 6px;
}

.pres-sidebar-wa p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.pres-sidebar-wa__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Alternatives card */
.pres-sidebar-alts {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}

.pres-sidebar-alts h4 {
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.pres-alt-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
  text-decoration: none;
  color: var(--text);
}

.pres-alt-link:last-child { border-bottom: none; }

.pres-alt-link:hover { color: var(--accent); }

.pres-alt-link__icon {
  width: 34px; height: 34px;
  min-width: 34px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: background var(--transition);
}

.pres-alt-link:hover .pres-alt-link__icon {
  background: rgba(29,53,87,.12);
}

.pres-alt-link__icon svg { width: 15px; height: 15px; }

.pres-alt-link__body { display: flex; flex-direction: column; }

.pres-alt-link__label {
  font-size: .7rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pres-alt-link__value {
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.pres-alt-link:hover .pres-alt-link__value {
  color: var(--accent);
}

/* Note card */
.pres-sidebar-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: var(--accent-light);
  border: 1px solid rgba(29,53,87,.1);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.pres-sidebar-note svg {
  width: 16px; height: 16px;
  min-width: 16px;
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.pres-sidebar-note p {
  font-size: .8125rem;
  color: var(--accent);
  line-height: 1.55;
  font-weight: 500;
}

/* ——— Responsive ——— */
@media (max-width: 960px) {
  .pres-body__inner {
    grid-template-columns: 1fr;
  }

  .pres-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .pres-sidebar-note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .pres-body {
    padding: 48px 0 64px;
  }

  .pres-tally-wrap {
    padding: 20px 16px;
  }

  .pres-sidebar {
    grid-template-columns: 1fr;
  }

  .pres-trust__item {
    white-space: normal;
    font-size: .8125rem;
  }

  .pres-trust__grid {
    gap: 12px 24px;
  }
}
