/* Ortiz & Hernandez Legal Group — Negro & dorado · temática jurídica */

:root {
  --black: #050505;
  --black-mid: #0c0c0c;
  --black-light: #161616;
  --black-card: #111111;
  --gold: #c5a028;
  --gold-light: #e5c158;
  --gold-dark: #8a7018;
  --gold-glow: rgba(197, 160, 40, 0.22);
  --parchment: #ece6da;
  --white: #ffffff;
  --text: #f2ede6;
  --text-muted: rgba(242, 237, 230, 0.62);
  --border: rgba(197, 160, 40, 0.18);
  --border-gold: rgba(197, 160, 40, 0.42);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 8px 36px rgba(197, 160, 40, 0.12);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --header-h: 76px;
  /* compatibilidad */
  --navy: var(--black);
  --navy-mid: var(--black-mid);
  --navy-light: var(--black-light);
  --cream: var(--black-mid);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.35s, box-shadow 0.35s;
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border-gold);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(220px, 55vw);
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: opacity 0.2s;
}

.logo:hover .logo__img {
  opacity: 0.92;
}

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

.nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav a:hover { color: var(--gold-light); }

.nav__cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black) !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600 !important;
  box-shadow: var(--shadow-gold);
}

.nav__cta:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black) !important;
}

.nav__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25d366 !important;
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600 !important;
}

.nav__whatsapp:hover {
  background: #1fb855 !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 80px;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 15%, var(--gold-glow), transparent),
    radial-gradient(ellipse 40% 60% at 5% 90%, rgba(197, 160, 40, 0.08), transparent),
    linear-gradient(165deg, var(--black) 0%, var(--black-mid) 45%, #0a0a0a 100%);
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 8 L48 28 L68 28 L52 40 L58 60 L40 48 L22 60 L28 40 L12 28 L32 28 Z' fill='%23c5a028'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197, 160, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 160, 40, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 15%, transparent 72%);
}

.hero__deco {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  pointer-events: none;
}

.hero__scales {
  font-size: clamp(8rem, 18vw, 14rem);
  color: rgba(197, 160, 40, 0.12);
  filter: drop-shadow(0 0 40px rgba(197, 160, 40, 0.15));
  line-height: 1;
}

.hero__deco::before,
.hero__deco::after {
  content: "";
  position: absolute;
  top: 10%;
  width: 3px;
  height: 80%;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.35;
}

.hero__deco::before { left: -24px; }
.hero__deco::after { right: -24px; }

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding: 8px 18px;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  background: rgba(197, 160, 40, 0.08);
}

.hero__eyebrow::before {
  content: "⚖ ";
  opacity: 0.9;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 600;
  line-height: 1.1;
  max-width: 14ch;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: normal;
  color: var(--gold-light);
  position: relative;
}

.hero__title em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.6;
}

.hero__desc {
  font-size: 1.1rem;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 520px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold-light);
}

.stat__label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: var(--shadow-gold);
  border: 1px solid var(--gold-light);
}

.btn--primary:hover {
  box-shadow: 0 12px 40px rgba(197, 160, 40, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  gap: 10px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn--whatsapp:hover {
  background: #1fb855;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
}

.btn--light-wa {
  background: #25d366;
  color: var(--white);
  border: 2px solid #25d366;
}

.btn--light-wa:hover {
  background: #1fb855;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn--light {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold);
}

.btn--light:hover {
  background: var(--gold-glow);
}

.btn--sm { padding: 10px 22px; font-size: 0.875rem; }
.btn--full { width: 100%; }

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section--legal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 40%);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section--alt {
  background: var(--black-mid);
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-gold);
}

.section-tag::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  margin-right: 10px;
  transform: rotate(45deg);
  vertical-align: middle;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.about__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--gold-light);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about__text strong {
  color: var(--gold-light);
}

.about__list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}

.about__list li {
  padding: 12px 16px;
  background: var(--black-card);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.about__list li::before {
  content: "◆ ";
  color: var(--gold);
  font-size: 0.65rem;
}

.about__card-inner {
  background: linear-gradient(145deg, var(--black-light), var(--black-card));
  color: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}

.about__card-inner::before {
  content: "⚖";
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 2.5rem;
  opacity: 0.15;
  color: var(--gold);
}

.about__card-inner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
}

.about__card-inner h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 12px;
  position: relative;
}

.about__card-inner p {
  opacity: 0.85;
  margin-bottom: 24px;
  position: relative;
}

/* Migratorio */
.migratorio {
  background: transparent;
}

.migratorio-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}

.tab {
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--border-gold);
  background: var(--black-card);
  color: var(--text-muted);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
}

.tab:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: var(--black-light);
}

.tab.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-color: var(--gold-light);
  color: var(--black);
}

.tab-panel {
  animation: fadeIn 0.4s ease;
}

.tab-panel[hidden] { display: none; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  text-align: center;
}

.panel-desc {
  text-align: center;
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 auto 28px;
}

.panel-desc strong {
  color: var(--gold-light);
}

.service-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.service-grid li {
  padding: 14px 18px;
  background: var(--black-card);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.service-grid li:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-gold);
}

.service-grid li::before {
  content: "→";
  color: var(--gold);
  margin-right: 8px;
  font-weight: 700;
}

.world-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 40px;
  background: linear-gradient(135deg, var(--black-card), var(--black-light));
  border-radius: var(--radius);
  border: 1px solid var(--border-gold);
}

.world-banner span {
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
}

.destinos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.destino-card {
  padding: 32px;
  background: var(--black-card);
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.destino-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--border-gold);
}

.destino-card__flag {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 12px;
}

.destino-card h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.destino-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Areas accordion */
.areas {
  background: transparent;
}

.areas-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.area-block {
  background: var(--black-card);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.area-block summary {
  padding: 22px 28px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-light);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s, color 0.2s;
}

.area-block summary::-webkit-details-marker { display: none; }

.area-block summary::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 400;
  transition: transform 0.3s;
}

.area-block[open] summary::after {
  content: "−";
}

.area-block[open] summary {
  background: linear-gradient(90deg, var(--black-light), var(--black-card));
  color: var(--gold-light);
  border-bottom: 1px solid var(--border-gold);
}

.area-block[open] summary::after { color: var(--gold); }

.area-block ul {
  padding: 8px 28px 24px;
  list-style: none;
}

.area-block li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.area-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.area-block li:last-child { border-bottom: none; }

/* CTA band */
.cta-band {
  position: relative;
  padding: 72px 0;
  background: linear-gradient(135deg, var(--black), var(--black-light));
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}

.cta-band::before {
  content: "⚖";
  position: absolute;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  font-size: 2rem;
  color: rgba(197, 160, 40, 0.18);
}

.cta-band__inner {
  text-align: center;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-band__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: 12px;
  color: var(--gold-light);
}

.cta-band__inner p {
  opacity: 0.8;
  margin-bottom: 28px;
}

/* Contact */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact__info h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.contact__info > p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.contact__hint {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.contact-form {
  background: var(--black-card);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-gold);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--black);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(242, 237, 230, 0.35);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.flash-messages { margin-bottom: 16px; }

.flash {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
}

.flash--error {
  background: rgba(185, 28, 28, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(248, 113, 113, 0.4);
}

.flash--success {
  background: rgba(197, 160, 40, 0.12);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
}

.flash-whatsapp {
  margin-top: 8px;
  text-align: center;
}

/* Footer */
.footer {
  background: var(--black);
  color: rgba(242, 237, 230, 0.5);
  padding: 28px 0;
  font-size: 0.85rem;
  border-top: 2px solid var(--gold-dark);
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px 14px 16px;
  background: #25d366;
  color: white;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  z-index: 90;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float__text { white-space: nowrap; }

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55);
  animation: none;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 8px 36px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s, opacity 0.35s;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    background: var(--black);
    border-bottom: 1px solid var(--border-gold);
  }

  .nav a { font-size: 1rem; }

  .hero__deco {
    right: 50%;
    transform: translate(50%, -40%);
    top: 72%;
    opacity: 0.5;
  }

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

  .section { padding: 72px 0; }

  .whatsapp-float {
    padding: 14px;
    border-radius: 50%;
  }

  .whatsapp-float__text { display: none; }

  .nav__whatsapp { display: none; }

  .logo__img {
    height: 44px;
    max-width: 160px;
  }
}

/* Páginas de servicio (SEO) */
.page-servicio {
  padding-top: var(--header-h);
}

.page-hero {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--gold-light);
}

.breadcrumb a:hover { text-decoration: underline; }

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  color: var(--gold-light);
  line-height: 1.15;
  margin: 12px 0 20px;
  max-width: 820px;
}

.page-hero__intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.75;
  margin-bottom: 28px;
}

.page-hero__intro strong { color: var(--text); }

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-content {
  max-width: 780px;
}

.content-block {
  margin-bottom: 40px;
}

.content-block h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.content-block p {
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.75;
}

.content-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content-list li {
  padding: 12px 16px 12px 36px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  position: relative;
  line-height: 1.55;
}

.content-list li::before {
  content: "§";
  position: absolute;
  left: 14px;
  color: var(--gold);
  font-family: var(--font-display);
}

.faq-answer {
  padding: 0 20px 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

.servicio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.servicio-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.servicio-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.servicio-card__tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 8px;
}

.servicio-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 10px;
  line-height: 1.3;
}

.servicio-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
  line-height: 1.55;
}

.servicio-card__link {
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-light);
}
