/*------------------------------------*\
    CUSTOM OVERRIDES - Law Firm LG
    Editar solo este archivo, NO style.css
\*------------------------------------*/

/*
 * PALETA OFICIAL (ajuste preciso v2 — 2026-06-01)
 * --------------------------------------------------
 * Primario       #BD8483  Rosa Viejo Medio     → iconos, acentos, bordes
 * Acento (hover) #E3979E  Oro Rosa Brillante   → hover de botones
 * Borgoña        #6B2D2F  Vino Tinto Inst.     → footer, divisores, títulos dest.
 * Berenjena      #3B222A  Sombra Corporativa   → navbar, bg-dark
 * Fondo base     #F0F1F4  Gris Ultra Claro     → body background
 * Fondo sec.     #F9EFF0  Rosa Alabastro       → secciones alternas, bg-gray
 * Texto          #2A1E20  Marrón Carbón        → párrafos y texto principal
 * -------------------------------------------------- */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* ---- Fuentes globales ---- */
body,
p,
li,
td,
input,
textarea,
select {
  font-family: 'Roboto', 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6,
.heading--title,
.pricing--heading h4,
.navbar-nav > li > a,
.btn,
.step-num,
.stat-number {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
}

/* ---- Fondo base del sitio ---- */
html {
  font-size: 16px;
}

body {
  background-color: #F0F1F4;
  font-size: 16px;
  line-height: 1.75;
  color: #2A1E20;
}

/* ---- Tipografía global ---- */
p {
  font-size: 16px;
  line-height: 1.8;
  color: #2A1E20;
  margin-bottom: 20px;
}

/* Párrafos en secciones oscuras */
.bg-dark p,
.bg-overlay p {
  color: #cccccc;
}

/* Subtítulo de sección */
.heading--desc {
  font-size: 17px;
  line-height: 1.8;
  color: #4a3030;
}

/* Nav links */
.navbar-nav > li > a {
  font-size: 13px;
  letter-spacing: 0.4px;
  font-weight: 600;
}

/* Listas y contenido de cards */
.pricing-panel .pricing--body,
.blog-entry p,
.feature--content p,
.entry--more p,
.entry--more {
  font-size: 15px;
  line-height: 1.75;
  color: #3B222A;
}

/* Footer */
.footer-widget .footer--widget-content p,
.footer-widget .footer--widget-content li,
.footer-widget .footer--widget-content a {
  font-size: 14px;
  line-height: 1.8;
  color: #d4b4b4;
}

/* Steps */
.step--title {
  font-size: 17px;
  line-height: 1.7;
  color: #3B222A;
}

/* Breadcrumbs */
.breadcrumb > li,
.breadcrumb > li a {
  font-size: 14px;
}

/* Call-to-action subtitle */
.call-us--subtitle {
  font-size: 20px;
}

/* ---- Colores de sección ---- */

/* Fondo alterno — Arena / Champán Beige */
.bg-gray {
  background-color: #F9EFF0 !important;
}

/* Fondo oscuro — Berenjena Corporativa */
.bg-dark {
  background-color: #c08aa0 !important;
}

/* Footer — Borgoña institucional */
#footer.footer,
.footer {
  background-color: #6B2D2F !important;
}

/* Footer copyright strip más oscuro */
.footer--copyright {
  background-color: #5a2323 !important;
}

/* Compactar footer */
.footer-widget {
  padding-top: 60px !important;
  padding-bottom: 50px !important;
}
.footer-widget .footer--widget-title h5 {
  margin-bottom: 18px !important;
}
.footer-widget .footer--widget-content p {
  margin-bottom: 10px !important;
}
.footer-widget .footer--widget-content li {
  margin-bottom: 5px !important;
}
.footer-widget .footer--widget-about .social {
  margin-top: 14px;
}
.footer-widget .footer--widget-content img.mb-20 {
  margin-bottom: 12px !important;
}

/* ---- Navbar al hacer scroll (.affix lo agrega Bootstrap via functions.js) ----
 *
 * AJUSTA AQUÍ:
 *   background-color → fondo del navbar al hacer scroll
 *   color            → color de los enlaces del menú al hacer scroll
 *   background-color (::before) → color del subrayado activo/hover
 * ------------------------------------------------------------------ */

/* Fondo del navbar */
.header-fixed .affix {
  background-color: #3B222A !important;
  -webkit-box-shadow: 0 2px 8px rgba(59, 34, 42, 0.35);
  box-shadow: 0 2px 8px rgba(59, 34, 42, 0.35);
}

/* Color de los enlaces del menú */
.header-fixed .navbar.affix .navbar-nav > li > a {
  color: #F0F1F4 !important;
}

/* Subrayado del enlace activo y hover */
.header-fixed .navbar.affix .navbar-nav > li > a:hover::before,
.header-fixed .navbar.affix .navbar-nav > li.active > a:before {
  background-color: #BD8483 !important;
}

/* ---- Botones ---- */
.btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  height: 56px;
  line-height: 56px;
  padding: 0 36px;
  width: auto;
  min-width: 180px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Primario — Oro Rosa Elegante */
.btn--primary {
  background-color: #BD8483;
  color: #ffffff;
  border: 2px solid #BD8483;
  box-shadow: 0 4px 16px rgba(189, 132, 131, 0.45);
}
.btn--primary:active,
.btn--primary:focus,
.btn--primary:hover {
  background-color: #E3979E;
  border-color: #E3979E;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(227, 151, 158, 0.5);
  transform: translateY(-2px);
}

/* Secundario — Berenjena / Vino */
.btn--secondary {
  background-color: #3B222A;
  color: #ffffff;
  border: 2px solid #3B222A;
  box-shadow: 0 4px 16px rgba(59, 34, 42, 0.35);
}
.btn--secondary:active,
.btn--secondary:focus,
.btn--secondary:hover {
  background-color: #BD8483;
  border-color: #BD8483;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(189, 132, 131, 0.45);
  transform: translateY(-2px);
}

/* Bordado sobre fondo claro */
.btn--bordered {
  background-color: transparent;
  border: 2px solid #BD8483;
  color: #BD8483;
  box-shadow: none;
}
.btn--bordered:active,
.btn--bordered:focus,
.btn--bordered:hover {
  background-color: #BD8483;
  border-color: #BD8483;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(189, 132, 131, 0.45);
  transform: translateY(-2px);
}

/* Bordado sobre fondo oscuro */
.bg-dark .btn--bordered,
.bg-overlay .btn--bordered,
.slider .btn--bordered {
  border-color: #ffffff;
  color: #ffffff;
}
.bg-dark .btn--bordered:hover,
.bg-overlay .btn--bordered:hover,
.slider .btn--bordered:hover {
  background-color: #ffffff;
  color: #3B222A;
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* Botón blanco */
.btn--white {
  background-color: #ffffff;
  color: #3B222A;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.btn--white:active,
.btn--white:focus,
.btn--white:hover {
  background-color: #BD8483;
  border-color: #BD8483;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(189, 132, 131, 0.45);
  transform: translateY(-2px);
}

/* ---- Responsive ---- */
@media only screen and (max-width: 767px) {
  html { font-size: 15px; }
  body, p { font-size: 15px; }
  h2, .h2 { font-size: 28px; }
  h3, .h3 { font-size: 22px; }
  h4, .h4 { font-size: 18px; }
  .btn {
    font-size: 13px;
    padding: 0 24px;
    min-width: 160px;
    height: 50px;
    line-height: 50px;
  }
}

/* ---- Página de Suscripciones ---- */
.suscripcion-badge {
  display: inline-block;
  background-color: #BD8483;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.pricing-panel.pricing-featured {
  border: 2px solid #BD8483;
  box-shadow: 0 8px 30px rgba(189, 132, 131, 0.25);
  transform: translateY(-8px);
}

.pricing-panel.pricing-featured:hover {
  transform: translateY(-14px);
}

.pricing-panel .pricing--heading h4 {
  font-size: 20px;
  margin-bottom: 16px;
}

.pricing-panel .pricing--heading p {
  font-size: 58px;
}

.pricing-panel .pricing--body ul li {
  font-size: 15px;
  line-height: 2;
  color: #3B222A;
  border-bottom: 1px solid #ede5df;
  padding: 6px 0;
}

.pricing-panel .pricing--body ul li i {
  color: #BD8483;
  margin-right: 8px;
}

.pricing-panel .pricing--body ul li i.fa-times {
  color: #cccccc;
}

/* ---- Banner de Consentimiento de Cookies ---- */
#lflg-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99998;
  background: #3B222A;
  box-shadow: 0 -4px 24px rgba(59, 34, 42, 0.45);
  animation: lflgCookieIn 0.5s ease forwards;
}
@keyframes lflgCookieIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.lflg-cookie-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 24px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  gap: 24px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.lflg-cookie-text {
  -webkit-flex: 1;
  flex: 1;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #e0cccc;
  line-height: 1.6;
  min-width: 220px;
}
.lflg-cookie-text strong { color: #fff; }
.lflg-cookie-text a { color: #BD8483; text-decoration: underline; }
.lflg-cookie-text a:hover { color: #E3979E; }
.lflg-cookie-actions {
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.lflg-btn-accept {
  background: #BD8483;
  color: #fff;
  border: none;
  padding: 11px 26px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.lflg-btn-accept:hover { background: #E3979E; }
.lflg-btn-decline {
  background: transparent;
  color: #d4b4b4;
  border: 1px solid rgba(189, 132, 131, 0.4);
  padding: 11px 22px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.lflg-btn-decline:hover { border-color: #BD8483; color: #fff; }

@media (max-width: 767px) {
  .lflg-cookie-inner { flex-direction: column; align-items: flex-start; gap: 14px; padding: 16px 18px; }
  .lflg-cookie-actions { width: 100%; }
  .lflg-btn-accept, .lflg-btn-decline { flex: 1; text-align: center; padding: 12px 16px; }
}

/* ---- Wizard de Suscripción ---- */
#wiz-bar {
  border-bottom: 1px solid #ede5e0;
  padding: 0;
}
.wiz-steps {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 22px 0;
  gap: 0;
}
.wiz-step {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  align-items: center;
}
.wiz-num {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e0d4d4;
  color: #999;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid #e0d4d4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.wiz-step.active .wiz-num {
  background: #BD8483;
  color: #fff;
  border-color: #BD8483;
}
.wiz-step.done .wiz-num {
  background: #6B2D2F;
  color: #fff;
  border-color: #6B2D2F;
}
.wiz-label {
  font-size: 11px;
  color: #bbb;
  margin-top: 5px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  white-space: nowrap;
}
.wiz-step.active .wiz-label,
.wiz-step.done .wiz-label { color: #3B222A; }

.wiz-connector {
  height: 2px;
  width: 60px;
  background: #e0d4d4;
  margin: 0 8px 22px;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.wiz-connector.done { background: #6B2D2F; }

/* Inscripción note */
.inscripcion-note {
  font-size: 14px;
  color: #BD8483;
  margin-top: 8px;
  margin-bottom: 0;
}

/* Back link */
.wiz-back-link {
  display: inline-block;
  color: #BD8483;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.wiz-back-link:hover { color: #6B2D2F; }
.wiz-back-link i { margin-right: 6px; }

/* Plan header (step 2 & 3 sidebar) */
.step2-plan-header {
  background: #3B222A;
  color: #fff;
  border-radius: 8px 8px 0 0;
  padding: 16px 22px;
}
.step2-plan-header h4 {
  color: #fff;
  margin: 0 0 4px;
  font-size: 17px;
}
.step2-plan-body {
  border: 1px solid #e5d8d8;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 22px;
  background: #fff;
}

/* Coupon toggle */
.cupon-toggle-btn {
  background: none;
  border: none;
  color: #BD8483;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.cupon-toggle-btn i { margin-right: 5px; }

/* Payment schedule */
.p2-schedule-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 10px;
}
.pay-row {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #f5eded;
  font-size: 14px;
}
.pay-row:last-child { border-bottom: none; }
.pay-row .pr-num {
  color: #BD8483;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  min-width: 60px;
  text-transform: uppercase;
}
.pay-row .pr-desc { color: #666; -webkit-flex: 1; flex: 1; padding: 0 10px; }
.pay-row .pr-monto {
  font-weight: 700;
  color: #3B222A;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  min-width: 80px;
  text-align: right;
}
.pay-row .pr-monto.gratis { color: #27ae60; }

/* Registration form */
.reg-label {
  font-size: 12px;
  font-weight: 700;
  color: #3B222A;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}
.reg-control {
  display: block;
  width: 100%;
  height: 48px;
  border-radius: 6px;
  border: 1.5px solid #ddd;
  padding: 0 14px;
  font-size: 15px;
  color: #2A1E20;
  background: #fff;
  -webkit-transition: border-color 0.2s, box-shadow 0.2s;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Roboto', sans-serif;
}
.reg-control:focus {
  border-color: #BD8483;
  outline: none;
  -webkit-box-shadow: 0 0 0 3px rgba(189,132,131,0.15);
  box-shadow: 0 0 0 3px rgba(189,132,131,0.15);
}
select.reg-control { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M0 0l6 7 6-7z' fill='%23BD8483'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }

/* Order summary sidebar */
.sidebar-box {
  background: #fff;
  border: 1px solid #e5d8d8;
  border-radius: 8px;
  padding: 24px;
  position: sticky;
  top: 100px;
}
.sidebar-plan-hdr {
  background: #3B222A;
  color: #fff;
  border-radius: 6px;
  padding: 13px 16px;
  margin-bottom: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.sidebar-row {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px solid #f0e8e8;
  font-size: 14px;
}
.sidebar-row:last-child { border-bottom: none; }
.sidebar-row .sr-lbl { color: #777; }
.sidebar-row .sr-val { font-weight: 700; color: #3B222A; font-family: 'Montserrat', sans-serif; }
.sidebar-row .sr-val.gratis { color: #27ae60; }
.sidebar-row .sr-val.descuento { color: #e74c3c; }
.sidebar-total {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 2px solid #BD8483;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.sidebar-total .st-lbl {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #3B222A;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sidebar-total .st-val {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #BD8483;
}

/* Success panel */
.wiz-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #27ae60;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.wiz-success-icon i { color: #fff; font-size: 38px; }

@media (max-width: 991px) {
  .wiz-connector { width: 40px; }
  .sidebar-box { position: static; margin-top: 30px; }
}
@media (max-width: 767px) {
  .wiz-connector { width: 24px; }
  .wiz-label { font-size: 10px; }
  .step2-plan-body { padding: 16px; }
}
