/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABZAS Cobranzas â€” Design System CSS (Luxury Cognitivo)
   Paleta: Naval #0C1C2E Â· Oro #B3A369 Â· Gris #708090 Â· Blanco #FFFFFF
   TipografÃ­a: Cormorant Garamond (headings) Â· Inter (body)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€ 0. CSS Custom Properties â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  /* Colors */
  --naval: #0c1c2e;
  --oro: #b3a369;
  --gris: #708090;
  --blanco: #ffffff;

  /* Derived */
  --naval-rgb: 12, 28, 46;
  --oro-rgb: 179, 163, 105;
  --gris-rgb: 112, 128, 144;

  /* Typography */
  --font-heading: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Sizing */
  --h1: 54px;
  --h2: 38px;
  --h3: 26px;
  --body: 18px;
  --small: 13px;

  /* Layout */
  --container: 1200px;
  --radius: 18px;
  --radius-btn: 14px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-card: 0 2px 16px rgba(var(--naval-rgb), 0.06);
  --shadow-card-hover: 0 4px 24px rgba(var(--naval-rgb), 0.1);

  /* Borders */
  --border-subtle: 1px solid rgba(var(--gris-rgb), 0.18);
  --border-light: 1px solid rgba(var(--gris-rgb), 0.12);

  /* Transitions */
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* â”€â”€â”€ 1. Base / Reset â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.65;
  color: var(--naval);
  background: var(--blanco);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* â”€â”€â”€ 2. Typography â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1,
h2,
h3,
h4,
h5,
h6,
.elementor-heading-title {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.18;
  color: var(--naval);
  letter-spacing: -0.01em;
}

h1,
.abzas-h1 {
  font-size: var(--h1);
}
h2,
.abzas-h2 {
  font-size: var(--h2);
}
h3,
.abzas-h3 {
  font-size: var(--h3);
}

p,
.abzas-body {
  font-family: var(--font-body);
  font-size: var(--body);
  color: var(--gris);
  line-height: 1.65;
}

.abzas-small,
.abzas-microcopy {
  font-size: var(--small);
  color: var(--gris);
  line-height: 1.5;
}

/* â”€â”€â”€ 3. Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.abzas-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}

/* Primary: fondo naval, texto blanco */
.abzas-btn-primary {
  background: var(--naval);
  color: var(--blanco);
  border-color: var(--naval);
}
.abzas-btn-primary:hover {
  background: #142d47;
  border-color: #142d47;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(var(--naval-rgb), 0.25);
}

/* Secondary: outline naval */
.abzas-btn-secondary {
  background: transparent;
  color: var(--naval);
  border-color: rgba(var(--naval-rgb), 0.25);
}
.abzas-btn-secondary:hover {
  background: rgba(var(--naval-rgb), 0.04);
  border-color: var(--naval);
}

/* CTA en fondo naval: blanco sÃ³lido */
.abzas-btn-white {
  background: var(--blanco);
  color: var(--naval);
  border-color: var(--blanco);
}
.abzas-btn-white:hover {
  background: #f5f5f5;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

/* Link estilo WhatsApp */
.abzas-link-wa {
  color: var(--oro);
  font-size: var(--small);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}
.abzas-link-wa:hover {
  color: #9a8c55;
  text-decoration: underline;
}

/* Botones grupo */
.abzas-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* â”€â”€â”€ 4. Chips / Tags â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.abzas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.abzas-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid rgba(var(--gris-rgb), 0.2);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--small);
  font-weight: 500;
  color: var(--naval);
  background: transparent;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}

.abzas-chip:hover {
  background: rgba(var(--naval-rgb), 0.03);
  border-color: rgba(var(--gris-rgb), 0.35);
}

/* Chip activo (para dashboard) */
.abzas-chip--active {
  background: var(--naval);
  color: var(--blanco);
  border-color: var(--naval);
}

/* â”€â”€â”€ 5. Cards Premium â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.abzas-card {
  background: var(--blanco);
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  position: relative;
}

.abzas-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

/* Card con lÃ­nea oro top */
.abzas-card--oro-top {
  border-top: 2px solid var(--oro);
}

/* Card grande (dashboard, honorarios) */
.abzas-card--lg {
  padding: 32px;
}

/* Card tÃ­tulo */
.abzas-card__title {
  font-family: var(--font-heading);
  font-size: var(--h3);
  font-weight: 600;
  color: var(--naval);
  margin-bottom: 12px;
}

/* Card descripciÃ³n */
.abzas-card__desc {
  font-size: 16px;
  color: var(--gris);
  line-height: 1.6;
}

/* Grid de cards: 3 columnas */
.abzas-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* â”€â”€â”€ 6. Lista con checks oro â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.abzas-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.abzas-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: var(--naval);
  line-height: 1.55;
}

.abzas-check-list li::before {
  content: "âœ“";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--oro);
  font-weight: 700;
  font-size: 15px;
}

/* Lista en fondo naval (checks blancos con oro) */
.abzas-section--naval .abzas-check-list li {
  color: rgba(255, 255, 255, 0.92);
}
.abzas-section--naval .abzas-check-list li::before {
  color: var(--oro);
}

/* â”€â”€â”€ 7. Secciones / Layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.abzas-section {
  padding: 88px 0;
}

.abzas-section--sm {
  padding: 72px 0;
}

.abzas-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* SecciÃ³n naval (CTA final, etc.) */
.abzas-section--naval {
  background: var(--naval);
  color: var(--blanco);
}

.abzas-section--naval h2,
.abzas-section--naval h3,
.abzas-section--naval .elementor-heading-title {
  color: var(--blanco) !important;
}

.abzas-section--naval p,
.abzas-section--naval .abzas-body {
  color: rgba(255, 255, 255, 0.85);
}

/* Hero */
.abzas-hero {
  padding-top: 96px;
  padding-bottom: 72px;
}

.abzas-hero-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 32px;
  align-items: start;
}

.abzas-hero-grid--55-45 {
  grid-template-columns: 55% 45%;
}

/* Centrado para CTA naval */
.abzas-center {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Separador sutil */
.abzas-separator {
  border: none;
  height: 1px;
  background: rgba(var(--gris-rgb), 0.15);
  margin: 0;
}

/* LÃ­nea oro fina (detalle lujo) */
.abzas-line-oro {
  height: 1px;
  background: var(--oro);
  opacity: 0.6;
}

/* â”€â”€â”€ 8. Timeline â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Timeline horizontal (desktop) */
.abzas-timeline-h {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 0;
  margin: 32px 0 16px;
}

.abzas-timeline-h::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 2px;
  background: rgba(var(--gris-rgb), 0.15);
}

.abzas-timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.abzas-timeline-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blanco);
  border: 2px solid rgba(var(--gris-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--naval);
  margin-bottom: 12px;
  position: relative;
}

/* Punto oro central */
.abzas-timeline-num::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--oro);
  border-radius: 50%;
  top: -4px;
  right: -4px;
}

.abzas-timeline-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--naval);
  max-width: 120px;
}

/* Timeline vertical (para landing y mÃ³vil) */
.abzas-timeline-v {
  position: relative;
  padding-left: 48px;
}

.abzas-timeline-v::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(var(--gris-rgb), 0.15);
}

.abzas-timeline-v-step {
  position: relative;
  padding-bottom: 32px;
}

.abzas-timeline-v-step:last-child {
  padding-bottom: 0;
}

.abzas-timeline-v-num {
  position: absolute;
  left: -48px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blanco);
  border: 2px solid rgba(var(--gris-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--naval);
}

.abzas-timeline-v-num::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--oro);
  border-radius: 50%;
  top: -4px;
  right: -4px;
}

.abzas-timeline-v-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--naval);
  margin-bottom: 4px;
}

.abzas-timeline-v-desc {
  font-size: 15px;
  color: var(--gris);
}

/* Paso destacado (ejecuciÃ³n forzosa) */
.abzas-timeline-v-step--highlight .abzas-timeline-v-num {
  background: var(--naval);
  color: var(--blanco);
  border-color: var(--naval);
  width: 48px;
  height: 48px;
  left: -52px;
  font-size: 20px;
}

.abzas-timeline-v-step--highlight .abzas-timeline-v-title {
  font-size: 22px;
}

/* â”€â”€â”€ 9. Dashboard / Tabla Mock â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.abzas-dashboard {
  background: var(--blanco);
  border: var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.abzas-dashboard__header {
  padding: 20px 24px 16px;
  border-bottom: var(--border-light);
}

.abzas-dashboard__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--naval);
  margin: 0 0 12px;
}

.abzas-dashboard__chips {
  display: flex;
  gap: 8px;
}

.abzas-dashboard__body {
  padding: 0;
}

.abzas-dashboard__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  border-bottom: var(--border-light);
  font-size: 15px;
}

.abzas-dashboard__row:last-child {
  border-bottom: none;
}

.abzas-dashboard__label {
  color: var(--gris);
  font-weight: 400;
}

.abzas-dashboard__value {
  color: var(--naval);
  font-weight: 600;
  text-align: right;
}

/* â”€â”€â”€ 10. Tabla Premium (reportes) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.abzas-table-wrap {
  border: var(--border-subtle);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.abzas-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 14px;
}

.abzas-table thead {
  background: rgba(var(--naval-rgb), 0.05);
}

.abzas-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--naval);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid rgba(var(--oro-rgb), 0.3);
}

.abzas-table tbody td {
  padding: 14px 16px;
  border-bottom: var(--border-light);
  color: var(--naval);
}

.abzas-table tbody tr:last-child td {
  border-bottom: none;
}

.abzas-table tbody tr:hover {
  background: rgba(var(--naval-rgb), 0.02);
}

/* Status badge en tabla */
.abzas-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}

.abzas-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--oro);
}

.abzas-status--active::before {
  background: #2ecc71;
}
.abzas-status--pending::before {
  background: var(--oro);
}
.abzas-status--risk::before {
  background: #e74c3c;
}

/* â”€â”€â”€ 11. FAQ Accordion (CSS puro) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* --- 11a. FAQ +/â€“ (landing, original) --- */
.abzas-faq {
  max-width: 800px;
  margin: 0 auto;
}

.abzas-faq-item {
  border-bottom: var(--border-light);
}

.abzas-faq-item:first-child {
  border-top: var(--border-light);
}

.abzas-faq-toggle {
  display: none;
}

.abzas-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--naval);
  transition: color var(--transition);
  user-select: none;
}

.abzas-faq-question:hover {
  color: var(--oro);
}

/* Ãcono +/â€“ */
.abzas-faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-left: 16px;
}

.abzas-faq-icon::before,
.abzas-faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gris);
  transition: all var(--transition);
}

.abzas-faq-icon::before {
  /* horizontal line */
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.abzas-faq-icon::after {
  /* vertical line (becomes rotation on open) */
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Answer */
.abzas-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.abzas-faq-answer-inner {
  padding: 0 0 20px;
  font-size: 16px;
  color: var(--gris);
  line-height: 1.65;
}

/* Open state */
.abzas-faq-toggle:checked ~ .abzas-faq-question {
  color: var(--naval);
}

.abzas-faq-toggle:checked ~ .abzas-faq-question .abzas-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.abzas-faq-toggle:checked ~ .abzas-faq-answer {
  max-height: 500px;
}

/* --- 11b. Apple Chevron Accordion (Nosotros / Recup. Judicial / Contacto) --- */
.abzas-apple-faq {
  max-width: 900px;
  margin: 0 auto;
}

.abzas-apple-faq-item {
  background: var(--blanco);
  border: 1px solid rgba(var(--gris-rgb), 0.2);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.abzas-apple-faq-item:last-child {
  margin-bottom: 0;
}

.abzas-apple-faq-item:hover {
  border-color: rgba(var(--gris-rgb), 0.32);
  box-shadow: 0 10px 30px rgba(var(--naval-rgb), 0.06);
}

/* Toggle hidden */
.abzas-apple-faq-toggle {
  display: none;
}

/* Question / Title */
.abzas-apple-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 600;
  color: var(--naval);
  transition: color 220ms ease;
  user-select: none;
}

/* Chevron icon */
.abzas-apple-chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-left: 16px;
  position: relative;
  transition: transform 220ms ease;
}

.abzas-apple-chevron::before,
.abzas-apple-chevron::after {
  content: "";
  position: absolute;
  background: rgba(var(--naval-rgb), 0.7);
  border-radius: 1px;
  transition: background 220ms ease;
}

/* Left arm of chevron Ë… */
.abzas-apple-chevron::before {
  width: 9px;
  height: 1.5px;
  top: 50%;
  left: 0;
  transform: rotate(45deg);
  transform-origin: right center;
}

/* Right arm of chevron Ë… */
.abzas-apple-chevron::after {
  width: 9px;
  height: 1.5px;
  top: 50%;
  right: 0;
  transform: rotate(-45deg);
  transform-origin: left center;
}

/* Answer */
.abzas-apple-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.abzas-apple-faq-answer-inner {
  padding: 0 22px 20px;
  font-size: 16px;
  color: var(--gris);
  line-height: 1.65;
}

/* Open state */
.abzas-apple-faq-toggle:checked
  ~ .abzas-apple-faq-question
  .abzas-apple-chevron {
  transform: rotate(180deg);
}

.abzas-apple-faq-toggle:checked
  ~ .abzas-apple-faq-question
  .abzas-apple-chevron::before,
.abzas-apple-faq-toggle:checked
  ~ .abzas-apple-faq-question
  .abzas-apple-chevron::after {
  background: var(--naval);
}

.abzas-apple-faq-toggle:checked ~ .abzas-apple-faq-answer {
  max-height: 400px;
}

/* Active item: subtle oro accent line */
.abzas-apple-faq-item:has(.abzas-apple-faq-toggle:checked) {
  border-color: rgba(var(--gris-rgb), 0.34);
  box-shadow: 0 14px 40px rgba(var(--naval-rgb), 0.08);
  border-top: 2px solid rgba(var(--oro-rgb), 0.35);
}

/* Focus (accessibility â€” keyboard only) */
.abzas-apple-faq-toggle:focus-visible ~ .abzas-apple-faq-question {
  outline: 2px solid var(--oro);
  outline-offset: 2px;
  border-radius: 14px;
}

/* --- 11c. Elementor Toggle Widget Overrides (Apple style) --- */
.elementor-widget-toggle .elementor-tab-title {
  background: #ffffff !important;
  border: 1px solid rgba(112, 128, 144, 0.22) !important;
  border-radius: 16px !important;
  padding: 18px 22px !important;
  margin-bottom: 14px !important;
  transition:
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.elementor-widget-toggle .elementor-tab-title:hover {
  border-color: rgba(112, 128, 144, 0.32) !important;
  box-shadow: 0 10px 30px rgba(12, 28, 46, 0.06);
}

.elementor-widget-toggle .elementor-tab-content {
  border: 1px solid rgba(112, 128, 144, 0.22) !important;
  border-top: 0 !important;
  border-radius: 0 0 16px 16px !important;
  padding: 0 22px 18px 22px !important;
  margin-top: -14px;
  background: #ffffff !important;
}

.elementor-widget-toggle .elementor-tab-title.elementor-active {
  border-color: rgba(112, 128, 144, 0.34) !important;
  box-shadow: 0 14px 40px rgba(12, 28, 46, 0.08);
}

.elementor-widget-toggle .elementor-toggle-icon {
  font-size: 16px !important;
  color: rgba(12, 28, 46, 0.7) !important;
  transition:
    transform 220ms ease,
    color 220ms ease;
}

.elementor-widget-toggle
  .elementor-tab-title.elementor-active
  .elementor-toggle-icon {
  transform: rotate(180deg);
  color: #0c1c2e !important;
}

/* â”€â”€â”€ 11d. Governance Grid (Nosotros page) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.abzas-governance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.abzas-governance-item {
  background: var(--blanco);
  border: var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}

.abzas-governance-item:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.abzas-governance-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: rgba(var(--naval-rgb), 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--naval);
}

.abzas-governance-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--naval);
  margin-bottom: 6px;
}

.abzas-governance-desc {
  font-size: 14px;
  color: var(--gris);
  line-height: 1.5;
}

/* Grid de cards: 4 columnas */
.abzas-cards-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Contacto: form left, info right (60/40) */
.abzas-contact-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 40px;
  align-items: start;
}

/* Info card (contacto der.) */
.abzas-contact-info {
  padding: 28px;
}

.abzas-contact-info-item {
  margin-bottom: 20px;
}

.abzas-contact-info-item:last-child {
  margin-bottom: 0;
}

.abzas-contact-info-label {
  font-size: var(--small);
  font-weight: 600;
  color: var(--naval);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.abzas-contact-info-value {
  font-size: 16px;
  color: var(--gris);
  line-height: 1.55;
}

.abzas-contact-info-value a {
  color: var(--naval);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.abzas-contact-info-value a:hover {
  color: var(--oro);
}

/* â”€â”€â”€ 12. Header Minimal (Landing Canvas) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.abzas-header-minimal {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: var(--blanco);
  border-bottom: 1px solid rgba(var(--gris-rgb), 0.15);
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.abzas-header-minimal__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.abzas-header-minimal__logo img {
  height: 38px;
  width: auto;
}

.abzas-header-minimal__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: auto;
}

body.elementor-template-canvas > p:has(+ .abzas-header-minimal),
body.elementor-template-canvas > p:has(+ p + .abzas-header-minimal),
.abzas-header-minimal + p:empty {
  display: none !important;
  margin: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  line-height: 0 !important;
}

/* â”€â”€â”€ 13. Formulario WPForms Override â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.abzas-form-card {
  background: var(--blanco);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.abzas-form-card .abzas-form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--naval);
  margin-bottom: 20px;
  text-align: center;
}

/* WPForms styling overrides */
.abzas-form-card .wpforms-container .wpforms-form .wpforms-field-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--naval);
}

.abzas-form-card .wpforms-container .wpforms-form input[type="text"],
.abzas-form-card .wpforms-container .wpforms-form input[type="email"],
.abzas-form-card .wpforms-container .wpforms-form input[type="tel"],
.abzas-form-card .wpforms-container .wpforms-form textarea,
.abzas-form-card .wpforms-container .wpforms-form select {
  border: var(--border-subtle);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--naval);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.abzas-form-card .wpforms-container .wpforms-form input:focus,
.abzas-form-card .wpforms-container .wpforms-form textarea:focus,
.abzas-form-card .wpforms-container .wpforms-form select:focus {
  border-color: var(--oro);
  box-shadow: 0 0 0 3px rgba(var(--oro-rgb), 0.12);
  outline: none;
}

.abzas-form-card
  .wpforms-container
  .wpforms-form
  .wpforms-submit-container
  button {
  background: var(--naval) !important;
  color: var(--blanco) !important;
  border: none !important;
  border-radius: var(--radius-btn) !important;
  padding: 14px 32px !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  min-height: 48px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
  letter-spacing: 0.01em;
}

.abzas-form-card
  .wpforms-container
  .wpforms-form
  .wpforms-submit-container
  button:hover {
  background: #142d47 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(var(--naval-rgb), 0.25);
}

/* â”€â”€â”€ 14. Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.abzas-footer {
  background: var(--naval);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 0 32px;
  position: relative;
}

.abzas-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}

.abzas-footer__col {
  flex: 1;
  min-width: 200px;
}

.abzas-footer__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--blanco);
  margin-bottom: 12px;
}

.abzas-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 15px;
  transition: color var(--transition);
}

.abzas-footer a:hover {
  color: var(--oro);
}

.abzas-footer__copy {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: var(--small);
  color: rgba(255, 255, 255, 0.5);
  width: 100%;
}

/* Footer minimal (landing) */
.abzas-footer--minimal {
  padding: 32px 0 24px;
  text-align: center;
}

.abzas-footer--minimal p {
  font-size: var(--small);
  color: rgba(255, 255, 255, 0.55);
  margin: 4px 0;
}

.abzas-footer--minimal a {
  color: rgba(255, 255, 255, 0.65);
}

/* â”€â”€â”€ 15. Honorarios Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.abzas-honorarios {
  max-width: 800px;
  margin: 0 auto;
}

.abzas-honorarios .abzas-card {
  padding: 40px;
}

.abzas-honorarios .abzas-card__desc {
  margin-bottom: 24px;
}

/* â”€â”€â”€ 16. Section Titles â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.abzas-section-title {
  text-align: center;
  margin-bottom: 48px;
}

.abzas-section-title h2 {
  margin-bottom: 12px;
}

.abzas-section-title p {
  max-width: 600px;
  margin: 0 auto;
}

/* â”€â”€â”€ 17. Two Column Layouts â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.abzas-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.abzas-two-col--40-60 {
  grid-template-columns: 40% 60%;
}

/* â”€â”€â”€ 18. Bullet list (no checks) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.abzas-bullet-list {
  list-style: none;
  padding: 0;
}

.abzas-bullet-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--gris);
  line-height: 1.55;
}

.abzas-bullet-list li::before {
  content: "â€”";
  position: absolute;
  left: 0;
  color: var(--oro);
  font-weight: 600;
}

/* â”€â”€â”€ 19. Thank You Page â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.abzas-gracias {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}

.abzas-gracias__inner {
  max-width: 560px;
}

.abzas-gracias__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(var(--oro-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: var(--oro);
}

.abzas-gracias h1 {
  font-size: var(--h2);
  margin-bottom: 16px;
}

.abzas-gracias p {
  margin-bottom: 32px;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€â”€ Tablet (768â€“1023) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1023px) {
  :root {
    --h1: 42px;
    --h2: 32px;
    --h3: 24px;
  }

  .abzas-container {
    padding: 0 24px;
  }

  .abzas-section {
    padding: 72px 0;
  }

  .abzas-hero {
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .abzas-hero-grid,
  .abzas-hero-grid--55-45 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .abzas-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .abzas-cards-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .abzas-governance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .abzas-two-col,
  .abzas-two-col--40-60 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .abzas-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .abzas-header-minimal {
    padding: 0 24px;
  }
}

/* â”€â”€â”€ Mobile (â‰¤767) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 767px) {
  :root {
    --h1: 36px;
    --h2: 28px;
    --h3: 22px;
    --body: 16px;
  }

  .abzas-container {
    padding: 0 24px;
  }

  .abzas-section {
    padding: 64px 0;
  }

  .abzas-hero {
    padding-top: 64px;
    padding-bottom: 48px;
  }

  .abzas-cards-grid {
    grid-template-columns: 1fr;
  }

  .abzas-cards-grid--4 {
    grid-template-columns: 1fr;
  }

  .abzas-governance-grid {
    grid-template-columns: 1fr;
  }

  .abzas-apple-chevron {
    width: 14px;
    height: 14px;
  }

  .elementor-widget-toggle .elementor-toggle-icon {
    font-size: 14px !important;
  }

  /* Timeline horizontal â†’ vertical en mobile */
  .abzas-timeline-h {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 48px;
    gap: 0;
  }

  .abzas-timeline-h::before {
    top: 0;
    bottom: 0;
    left: 19px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .abzas-timeline-step {
    flex-direction: row;
    text-align: left;
    margin-bottom: 24px;
    gap: 16px;
  }

  .abzas-timeline-step:last-child {
    margin-bottom: 0;
  }

  .abzas-timeline-num {
    flex-shrink: 0;
    margin-bottom: 0;
    position: relative;
    left: -48px;
    margin-right: -32px;
  }

  .abzas-timeline-label {
    max-width: none;
  }

  /* Buttons full width */
  .abzas-btn-group {
    flex-direction: column;
  }

  .abzas-btn-group .abzas-btn {
    width: 100%;
  }

  /* Dashboard overflow */
  .abzas-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .abzas-table {
    min-width: 600px;
  }

  /* Header minimal mobile */
  .abzas-header-minimal {
    height: 64px;
    padding: 0 16px;
  }

  .abzas-header-minimal__logo img {
    height: 32px;
  }

  .abzas-header-minimal__actions .abzas-btn {
    padding: 10px 16px;
    font-size: 14px;
    min-height: 40px;
  }

  /* Form card */
  .abzas-form-card {
    padding: 20px;
  }

  /* Footer */
  .abzas-footer__inner {
    flex-direction: column;
    padding: 0 24px;
  }
}

/* â”€â”€â”€ Print (ocultar interactivo) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media print {
  .abzas-faq-toggle:checked ~ .abzas-faq-answer {
    max-height: none;
  }
}

/* â”€â”€â”€ 20. Luxury White Polish (2026-03-21) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --radius-xl: 32px;
  --surface-white: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(249, 250, 252, 0.96) 100%
  );
  --surface-soft: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(244, 247, 250, 0.92) 100%
  );
  --shadow-premium: 0 24px 72px rgba(var(--naval-rgb), 0.08);
  --shadow-panel: 0 30px 90px rgba(var(--naval-rgb), 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(
      circle at top right,
      rgba(var(--oro-rgb), 0.14) 0%,
      rgba(var(--oro-rgb), 0) 26%
    ),
    radial-gradient(
      circle at left top,
      rgba(var(--naval-rgb), 0.06) 0%,
      rgba(var(--naval-rgb), 0) 20%
    ),
    linear-gradient(180deg, #ffffff 0%, #fbfcfd 58%, #ffffff 100%);
  text-rendering: optimizeLegibility;
}

body.ast-theme-transparent-header #masthead .ast-header-html p {
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: rgba(var(--gris-rgb), 0.95);
}

body.ast-theme-transparent-header #masthead .ast-header-button-1 .ast-custom-button-link {
  border-radius: 14px !important;
  border: 1px solid rgba(var(--oro-rgb), 0.48) !important;
  background: linear-gradient(135deg, #132944 0%, #0c1c2e 100%) !important;
  box-shadow:
    0 18px 32px rgba(var(--naval-rgb), 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.ast-theme-transparent-header #masthead .ast-header-button-1 .ast-custom-button-link:hover {
  background: linear-gradient(135deg, #17324f 0%, #10263e 100%) !important;
}

body.ast-theme-transparent-header #masthead .ast-builder-menu .main-header-menu > .menu-item > .menu-link {
  font-size: 14px;
  letter-spacing: 0.015em;
}

.entry-content > p:empty,
.entry-content > p:has(+ .abzas-section),
.entry-content > p:has(+ .abzas-separator),
.entry-content > .abzas-separator + p,
.entry-content > .abzas-section + p {
  display: none !important;
  margin: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  line-height: 0 !important;
}

.abzas-section {
  position: relative;
}

.abzas-section,
.abzas-section--sm {
  padding-left: 0;
  padding-right: 0;
}

.abzas-section--sm {
  padding-top: 84px;
  padding-bottom: 84px;
}

.abzas-separator {
  width: min(calc(100% - 80px), var(--container));
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    rgba(var(--naval-rgb), 0) 0%,
    rgba(var(--naval-rgb), 0.08) 18%,
    rgba(var(--oro-rgb), 0.22) 50%,
    rgba(var(--naval-rgb), 0.08) 82%,
    rgba(var(--naval-rgb), 0) 100%
  );
}

.abzas-h1,
.abzas-section-title h2,
.abzas-card__title,
.abzas-dashboard__title,
.abzas-footer__title,
.site-footer h2,
.site-footer h4 {
  text-wrap: balance;
}

.abzas-h1 {
  font-size: clamp(58px, 5.4vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.042em;
  max-width: 11ch;
}

.abzas-hero {
  padding-bottom: 80px;
}

.abzas-hero .abzas-container {
  position: relative;
  padding: 52px 56px 48px;
  border-radius: var(--radius-xl);
  background: var(--surface-white);
  border: 1px solid rgba(var(--naval-rgb), 0.08);
  box-shadow: var(--shadow-panel);
  overflow: hidden;
}

.abzas-hero .abzas-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at top right,
      rgba(var(--oro-rgb), 0.16) 0%,
      rgba(var(--oro-rgb), 0) 30%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(var(--naval-rgb), 0.07) 0%,
      rgba(var(--naval-rgb), 0) 26%
    );
  pointer-events: none;
}

.abzas-hero .abzas-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(var(--oro-rgb), 0) 0%,
    rgba(var(--oro-rgb), 0.56) 50%,
    rgba(var(--oro-rgb), 0) 100%
  );
}

.abzas-hero-grid {
  position: relative;
  z-index: 1;
  gap: 52px;
  align-items: center;
}

.abzas-hero-grid > div:first-child {
  max-width: 640px;
}

.abzas-hero-grid > div:last-child {
  position: relative;
}

.abzas-hero-grid > div:last-child::before {
  content: "";
  position: absolute;
  inset: 28px 22px -20px;
  border-radius: 30px;
  background: radial-gradient(
    circle,
    rgba(var(--oro-rgb), 0.16) 0%,
    rgba(var(--oro-rgb), 0) 72%
  );
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}

.abzas-hero .abzas-body {
  max-width: 34ch;
  font-size: clamp(19px, 1.45vw, 22px);
  line-height: 1.56;
  color: rgba(var(--gris-rgb), 0.95);
}

.abzas-microcopy {
  font-size: 14px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: rgba(var(--gris-rgb), 0.94);
}

.abzas-btn {
  min-height: 56px;
  padding: 15px 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(var(--naval-rgb), 0.08);
}

.abzas-btn-primary {
  background: linear-gradient(135deg, #132944 0%, #0c1c2e 100%);
  border-color: rgba(var(--oro-rgb), 0.42);
  box-shadow:
    0 20px 36px rgba(var(--naval-rgb), 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.abzas-btn-primary:hover {
  background: linear-gradient(135deg, #17324f 0%, #10263e 100%);
  box-shadow:
    0 26px 44px rgba(var(--naval-rgb), 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.abzas-btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(var(--naval-rgb), 0.18);
  box-shadow:
    0 10px 26px rgba(var(--naval-rgb), 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.abzas-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(var(--oro-rgb), 0.44);
}

.abzas-btn-white {
  box-shadow:
    0 18px 44px rgba(6, 12, 20, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.abzas-chips {
  gap: 10px;
}

.abzas-chip {
  padding: 8px 16px;
  border-color: rgba(var(--naval-rgb), 0.10);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.abzas-chip:hover {
  border-color: rgba(var(--oro-rgb), 0.38);
  background: rgba(255, 255, 255, 0.96);
  transform: translateY(-1px);
}

.abzas-card,
.abzas-dashboard,
.abzas-table-wrap,
.abzas-form-card,
.abzas-governance-item,
.abzas-apple-faq-item {
  background: var(--surface-soft);
  border: 1px solid rgba(var(--naval-rgb), 0.08);
  border-radius: 26px;
  box-shadow:
    var(--shadow-premium),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.abzas-card,
.abzas-dashboard,
.abzas-form-card,
.abzas-governance-item,
.abzas-table-wrap {
  overflow: hidden;
}

.abzas-card--oro-top,
.abzas-form-card,
.abzas-dashboard,
.abzas-table-wrap {
  position: relative;
}

.abzas-card--oro-top::before,
.abzas-form-card::before,
.abzas-dashboard::before,
.abzas-table-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(var(--oro-rgb), 0) 0%,
    rgba(var(--oro-rgb), 0.85) 50%,
    rgba(var(--oro-rgb), 0) 100%
  );
}

.abzas-card {
  padding: 32px;
}

.abzas-card:hover,
.abzas-governance-item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 30px 70px rgba(var(--naval-rgb), 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.abzas-card__title {
  font-size: clamp(29px, 2.5vw, 36px);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.abzas-card__desc,
.abzas-governance-desc,
.abzas-contact-info-value {
  color: rgba(var(--gris-rgb), 0.95);
}

.abzas-check-list li {
  margin-bottom: 14px;
  padding-left: 30px;
}

.abzas-check-list li::before {
  top: 4px;
}

.abzas-section-title {
  margin-bottom: 56px;
}

.abzas-section-title h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 16px;
  font-size: clamp(38px, 4vw, 50px);
  letter-spacing: -0.03em;
}

.abzas-section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 88px;
  height: 2px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    rgba(var(--oro-rgb), 0) 0%,
    rgba(var(--oro-rgb), 0.88) 50%,
    rgba(var(--oro-rgb), 0) 100%
  );
}

.abzas-section-title p {
  max-width: 680px;
  font-size: 17px;
  line-height: 1.7;
  text-wrap: balance;
}

.abzas-dashboard__header {
  padding: 24px 28px 18px;
  background: linear-gradient(
    180deg,
    rgba(var(--naval-rgb), 0.05) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.abzas-dashboard__row {
  padding: 16px 24px;
}

.abzas-dashboard__row:nth-child(odd) {
  background: rgba(var(--naval-rgb), 0.018);
}

.abzas-table thead {
  background: linear-gradient(
    90deg,
    rgba(var(--naval-rgb), 0.06) 0%,
    rgba(var(--oro-rgb), 0.09) 100%
  );
}

.abzas-table tbody tr:hover {
  background: rgba(var(--oro-rgb), 0.05);
}

.abzas-governance-grid {
  gap: 24px;
}

.abzas-governance-item {
  padding: 28px 24px;
}

.abzas-governance-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    rgba(var(--naval-rgb), 0.06) 0%,
    rgba(var(--oro-rgb), 0.10) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.abzas-apple-faq-item {
  border-radius: 22px;
}

.abzas-apple-faq-question {
  padding: 22px 26px;
}

.abzas-apple-faq-answer-inner {
  padding: 0 26px 24px;
}

.abzas-form-card {
  padding: 34px;
}

.abzas-form-card .abzas-form-title {
  font-size: 28px;
  letter-spacing: -0.02em;
}

.abzas-form-card .wpforms-container .wpforms-form input[type="text"],
.abzas-form-card .wpforms-container .wpforms-form input[type="email"],
.abzas-form-card .wpforms-container .wpforms-form input[type="tel"],
.abzas-form-card .wpforms-container .wpforms-form textarea,
.abzas-form-card .wpforms-container .wpforms-form select {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(var(--naval-rgb), 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.abzas-form-card .wpforms-container .wpforms-form textarea {
  min-height: 168px;
}

@media (min-width: 1024px) {
  .abzas-contact-grid > div:last-child {
    position: sticky;
    top: 146px;
  }
}

.abzas-section--naval {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #11253a 0%, #0c1c2e 42%, #08111d 100%);
}

.abzas-section--naval::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 14% 20%,
      rgba(var(--oro-rgb), 0.14) 0%,
      rgba(var(--oro-rgb), 0) 22%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 255, 255, 0.10) 0%,
      rgba(255, 255, 255, 0) 20%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size:
    auto,
    auto,
    38px 38px,
    38px 38px;
  opacity: 0.55;
  pointer-events: none;
}

.abzas-section--naval .abzas-center {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 38px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.abzas-section--naval h2 {
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

footer.site-footer,
.abzas-footer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0b1725 0%, #08111c 56%, #060c14 100%);
}

footer.site-footer::before,
.abzas-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(var(--oro-rgb), 0.10) 0%,
      rgba(var(--oro-rgb), 0) 18%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.024) 1px,
      transparent 1px
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.022) 1px,
      transparent 1px
    );
  background-size:
    auto,
    42px 42px,
    42px 42px;
  opacity: 0.32;
  pointer-events: none;
}

footer.site-footer .site-primary-footer-wrap,
footer.site-footer .site-below-footer-wrap,
.abzas-footer__inner {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

footer.site-footer .site-primary-footer-wrap {
  padding: 56px 0 26px;
  border-top: 1px solid rgba(var(--oro-rgb), 0.16) !important;
}

footer.site-footer .site-footer-primary-section-3 {
  display: none !important;
}

footer.site-footer .site-primary-footer-inner-wrap.ast-builder-grid-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.15fr) minmax(220px, 0.85fr) !important;
  gap: 48px !important;
  align-items: start !important;
}

footer.site-footer .site-footer-primary-section-1,
footer.site-footer .site-footer-primary-section-2,
footer.site-footer .site-footer-primary-section-4 {
  width: auto !important;
}

footer.site-footer .ast-footer-html-1 .ast-builder-html-element > p:first-child {
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.02;
  color: var(--blanco);
  margin-bottom: 18px;
  max-width: 12ch;
}

footer.site-footer .ast-builder-social-element {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

footer.site-footer h2,
footer.site-footer h4,
.abzas-footer__title {
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 18px;
}

footer.site-footer p,
footer.site-footer a,
.abzas-footer p,
.abzas-footer a {
  font-size: 16px;
  line-height: 1.8;
}

footer.site-footer .site-below-footer-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  padding: 20px 0 28px;
}

@media (max-width: 1023px) {
  .abzas-section--sm {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .abzas-hero .abzas-container {
    padding: 40px 36px;
  }

  .abzas-h1 {
    max-width: 12ch;
  }

  footer.site-footer .site-primary-footer-inner-wrap.ast-builder-grid-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 32px !important;
  }
}

@media (max-width: 767px) {
  .abzas-separator {
    width: calc(100% - 48px);
  }

  .abzas-hero {
    padding-bottom: 56px;
  }

  .abzas-hero .abzas-container {
    padding: 30px 24px 28px;
    border-radius: 26px;
  }

  .abzas-h1 {
    font-size: clamp(40px, 13vw, 52px);
    max-width: none;
  }

  .abzas-hero .abzas-body {
    font-size: 18px;
  }

  .abzas-card,
  .abzas-form-card {
    padding: 24px;
  }

  .abzas-section-title {
    margin-bottom: 40px;
  }

  .abzas-section-title h2 {
    padding-bottom: 16px;
    margin-bottom: 14px;
  }

  .abzas-apple-faq-question {
    padding: 18px 20px;
    font-size: 16px;
  }

  .abzas-apple-faq-answer-inner {
    padding: 0 20px 20px;
    font-size: 15px;
  }

  .abzas-section--naval .abzas-center {
    padding: 26px 22px;
    border-radius: 24px;
  }

  footer.site-footer .site-primary-footer-inner-wrap.ast-builder-grid-row,
  .abzas-footer__inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}
